diff --git a/docx-core/examples/custom_property.rs b/docx-core/examples/custom_property.rs new file mode 100644 index 0000000..cd7b11e --- /dev/null +++ b/docx-core/examples/custom_property.rs @@ -0,0 +1,12 @@ +use docx_rs::*; + +pub fn main() -> Result<(), DocxError> { + let path = std::path::Path::new("./output/custom_property.docx"); + let file = std::fs::File::create(&path).unwrap(); + Docx::new() + .add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello"))) + .custom_property("hello", "world") + .build() + .pack(file)?; + Ok(()) +} diff --git a/docx-core/examples/reader.rs b/docx-core/examples/reader.rs index 84a7299..457ceaf 100644 --- a/docx-core/examples/reader.rs +++ b/docx-core/examples/reader.rs @@ -4,7 +4,7 @@ use std::fs::File; use std::io::{Read, Write}; pub fn main() { - let mut file = File::open("./fixtures/div/div.docx").unwrap(); + let mut file = File::open("./fixtures/custom/custom.docx").unwrap(); let mut buf = vec![]; file.read_to_end(&mut buf).unwrap(); diff --git a/docx-core/src/documents/content_types.rs b/docx-core/src/documents/content_types.rs index 9190772..ad629a2 100644 --- a/docx-core/src/documents/content_types.rs +++ b/docx-core/src/documents/content_types.rs @@ -77,6 +77,10 @@ impl ContentTypes { "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml" .to_owned(), ); + self.types.insert( + "/docProps/custom.xml".to_owned(), + "application/vnd.openxmlformats-officedocument.custom-properties+xml".to_owned(), + ); self } } diff --git a/docx-core/src/documents/doc_props/custom.rs b/docx-core/src/documents/doc_props/custom.rs new file mode 100644 index 0000000..5815de6 --- /dev/null +++ b/docx-core/src/documents/doc_props/custom.rs @@ -0,0 +1,46 @@ +use serde::Serialize; + +use crate::documents::BuildXML; +use crate::xml_builder::*; + +#[derive(Debug, Clone, PartialEq, Serialize, Default)] +#[serde(rename_all = "camelCase")] +pub struct CustomProps { + pub properties: std::collections::HashMap, +} + +impl CustomProps { + pub(crate) fn new() -> Self { + Self::default() + } + + pub fn add_custom_property(mut self, name: impl Into, item: impl Into) -> Self { + self.properties.insert(name.into(), item.into()); + self + } +} + +impl BuildXML for CustomProps { + fn build(&self) -> Vec { + let b = XMLBuilder::new(); + let mut base = b.declaration(Some(true)).open_custom_properties( + "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties", + "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes", + ); + + for (i, (key, item)) in self.properties.iter().enumerate() { + base = base + .open_property( + "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}", + // I can not found spec about this id. + // It is invalid if pid started by 1.... + &format!("{}", i + 2), + key, + ) + .lpwstr(item) + .close() + } + + base.close().build() + } +} diff --git a/docx-core/src/documents/doc_props/mod.rs b/docx-core/src/documents/doc_props/mod.rs index ff4738a..db39512 100644 --- a/docx-core/src/documents/doc_props/mod.rs +++ b/docx-core/src/documents/doc_props/mod.rs @@ -1,8 +1,10 @@ mod app; mod core; +mod custom; pub use self::app::*; pub use self::core::*; +pub use self::custom::*; use crate::documents::BuildXML; @@ -13,13 +15,15 @@ use serde::Serialize; pub struct DocProps { pub app: AppProps, pub core: CoreProps, + pub custom: CustomProps, } impl DocProps { pub(crate) fn new(core_config: CorePropsConfig) -> DocProps { let app = AppProps::new(); let core = CoreProps::new(core_config); - DocProps { app, core } + let custom = CustomProps::new(); + DocProps { app, core, custom } } pub fn created_at(mut self, date: &str) -> Self { @@ -32,10 +36,16 @@ impl DocProps { self } + pub fn custom_property(mut self, name: impl Into, item: impl Into) -> Self { + self.custom = self.custom.add_custom_property(name.into(), item.into()); + self + } + pub(crate) fn build(&self) -> XMLDocProps { XMLDocProps { app: self.app.build(), core: self.core.build(), + custom: self.custom.build(), } } } @@ -44,4 +54,5 @@ impl DocProps { pub struct XMLDocProps { pub app: Vec, pub core: Vec, + pub custom: Vec, } diff --git a/docx-core/src/documents/mod.rs b/docx-core/src/documents/mod.rs index 4a11881..f38a946 100644 --- a/docx-core/src/documents/mod.rs +++ b/docx-core/src/documents/mod.rs @@ -83,14 +83,14 @@ impl Default for Docx { Docx { content_type, rels, + document_rels, doc_props, styles, document, comments, - document_rels, + numberings, settings, font_table, - numberings, media, header, comments_extended, @@ -215,6 +215,11 @@ impl Docx { self } + pub fn custom_property(mut self, name: impl Into, item: impl Into) -> Self { + self.doc_props = self.doc_props.custom_property(name, item); + self + } + pub fn doc_id(mut self, id: &str) -> Self { self.settings = self.settings.doc_id(id); self diff --git a/docx-core/src/documents/rels.rs b/docx-core/src/documents/rels.rs index 0c39cf4..f938408 100644 --- a/docx-core/src/documents/rels.rs +++ b/docx-core/src/documents/rels.rs @@ -30,6 +30,12 @@ impl Rels { "rId3".to_owned(), "word/document.xml".to_owned(), )); + self.rels.push(( + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" + .to_owned(), + "rId4".to_owned(), + "docProps/custom.xml".to_owned(), + )); self } @@ -86,6 +92,7 @@ mod tests { + "# ); } diff --git a/docx-core/src/reader/custom_properties.rs b/docx-core/src/reader/custom_properties.rs new file mode 100644 index 0000000..a22d3cd --- /dev/null +++ b/docx-core/src/reader/custom_properties.rs @@ -0,0 +1,56 @@ +use std::io::Read; +use std::str::FromStr; + +use xml::reader::{EventReader, XmlEvent}; + +use super::*; + +impl FromXML for CustomProps { + fn from_xml(reader: R) -> Result { + let mut r = EventReader::new(reader); + // TODO: Fow now, support only string. + let mut props = CustomProps::new(); + loop { + let e = r.next(); + match e { + Ok(XmlEvent::StartElement { + name, attributes, .. + }) => { + if let Ok(XMLElement::Property) = XMLElement::from_str(&name.local_name) { + if let Some(key) = read_name(&attributes) { + loop { + let e = r.next(); + match e { + Ok(XmlEvent::StartElement { name, .. }) => { + // TODO: Fow now, support only string. + if let Ok(VtXMLElement::Lpwstr) = + VtXMLElement::from_str(&name.local_name) + { + let e = r.next(); + if let Ok(XmlEvent::Characters(c)) = e { + props = props.add_custom_property(&key, c) + } + } + } + Ok(XmlEvent::EndElement { name, .. }) => { + if let Ok(XMLElement::Property) = + XMLElement::from_str(&name.local_name) + { + break; + } + } + _ => {} + } + } + } + } + } + Ok(XmlEvent::EndDocument { .. }) => { + return Ok(props); + } + Err(_) => return Err(ReaderError::XMLReadError), + _ => {} + } + } + } +} diff --git a/docx-core/src/reader/mod.rs b/docx-core/src/reader/mod.rs index a8fce31..8b37c77 100644 --- a/docx-core/src/reader/mod.rs +++ b/docx-core/src/reader/mod.rs @@ -7,6 +7,7 @@ mod comment; mod comment_extended; mod comments; mod comments_extended; +mod custom_properties; mod delete; mod div; mod doc_defaults; @@ -63,6 +64,8 @@ pub use xml_element::*; // 2006 const DOC_RELATIONSHIP_TYPE: &str = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"; +const CUSTOM_PROPERTIES_TYPE: &str = + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"; const STYLE_RELATIONSHIP_TYPE: &str = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"; const NUMBERING_RELATIONSHIP_TYPE: &str = @@ -78,6 +81,7 @@ const COMMENTS_EXTENDED_TYPE: &str = "http://schemas.microsoft.com/office/2011/relationships/commentsExtended"; pub fn read_docx(buf: &[u8]) -> Result { + let mut docx = Docx::new(); let cur = Cursor::new(buf); let mut archive = zip::ZipArchive::new(cur)?; // First, the content type for relationship parts and the Main Document part @@ -105,6 +109,15 @@ pub fn read_docx(buf: &[u8]) -> Result { "word/document.xml".to_owned() }; + if let Some(custom_props) = rels.find_target(CUSTOM_PROPERTIES_TYPE) { + let data = read_zip(&mut archive, &custom_props.2); + if let Ok(data) = data { + if let Ok(custom) = CustomProps::from_xml(&data[..]) { + docx.doc_props.custom = custom; + } + } + } + let rels = read_document_rels(&mut archive, &document_path)?; // Read commentsExtended @@ -177,7 +190,7 @@ pub fn read_docx(buf: &[u8]) -> Result { let data = read_zip(&mut archive, &document_path)?; Document::from_xml(&data[..])? }; - let mut docx = Docx::new().document(document); + docx = docx.document(document); // store comments to paragraphs. if !comments.inner().is_empty() { diff --git a/docx-core/src/reader/xml_element.rs b/docx-core/src/reader/xml_element.rs index ecaa4f2..6fc0078 100644 --- a/docx-core/src/reader/xml_element.rs +++ b/docx-core/src/reader/xml_element.rs @@ -61,6 +61,7 @@ pub enum XMLElement { CommentRangeStart, CommentRangeEnd, CommentExtended, + Property, CommentsExtended, VAlign, Shading, @@ -193,6 +194,11 @@ pub enum VXMLElement { Unsupported, } +pub enum VtXMLElement { + Lpwstr, + Unsupported, +} + impl FromStr for XMLElement { type Err = (); fn from_str(s: &str) -> Result { @@ -236,6 +242,7 @@ impl FromStr for XMLElement { "commentEx" => Ok(XMLElement::CommentExtended), "commentsEx" => Ok(XMLElement::CommentsExtended), "shd" => Ok(XMLElement::Shading), + "property" => Ok(XMLElement::Property), "tbl" => Ok(XMLElement::Table), "tblPr" => Ok(XMLElement::TableProperty), "tr" => Ok(XMLElement::TableRow), @@ -404,6 +411,16 @@ impl FromStr for VXMLElement { } } +impl FromStr for VtXMLElement { + type Err = (); + fn from_str(s: &str) -> Result { + match s { + "lpwstr" => Ok(VtXMLElement::Lpwstr), + _ => Ok(VtXMLElement::Unsupported), + } + } +} + pub trait ElementReader { fn read(r: &mut EventReader, attrs: &[OwnedAttribute]) -> Result where diff --git a/docx-core/src/reader/xml_reader.rs b/docx-core/src/reader/xml_reader.rs new file mode 100644 index 0000000..8459312 --- /dev/null +++ b/docx-core/src/reader/xml_reader.rs @@ -0,0 +1,214 @@ +use serde::{Deserialize, Serialize}; +use std::collections::BTreeMap; +use std::io::Read; +use xml::attribute::OwnedAttribute; +use xml::reader::{EventReader, XmlEvent}; + +use crate::documents::BuildXML; +use crate::reader::{FromXML, ReaderError}; +use crate::xml_builder::*; + +use super::*; + +pub fn read_content_type(attrs: &[OwnedAttribute]) -> Option { + for a in attrs { + let local_name = &a.name.local_name; + if local_name == "contentType" { + return Some(a.value.to_owned()); + } + } + None +} + +pub fn read_xml(xml: &str) -> Result { + let mut parser = EventReader::new(xml.as_bytes()); + // let rels = Rels::from_xml(&data[..])? + for e in parser { + let mut rels = Rels::new(); + match e { + Ok(XmlEvent::StartElement { + attributes, name, .. + }) => { + if let (Some("pkg"), "part") = (name.prefix.as_deref(), name.local_name.as_ref()) { + if let Some(content_type) = read_content_type(&attributes) { + match content_type.as_ref() { + RELATIONSHIPS_CONTENT_TYPE => { + if let Ok(r) = Rels::read(&mut parser, &attributes) { + rels = r; + } + } + _ => {} + } + } + // let e = XMLElement::from_str(&name.local_name).unwrap(); + // match e { + // XMLElement::Tab => {} + // } + } + } + Ok(XmlEvent::EndElement { .. }) => {} + Err(_) => {} + _ => {} + } + } + todo!(); + + // Ok(s); + // todo!(); + // // First, the content type for relationship parts and the Main Document part + // // (the only required part) must be defined (physically located at /[Content_Types].xml in the package) + // // let _content_types = { + // // let data = read_zip(&mut archive, "[Content_Types].xml")?; + // // ContentTypes::from_xml(&data[..])? + // // }; + // + // // Next, the single required relationship (the package-level relationship to the Main Document part) + // // must be defined (physically located at /_rels/.rels in the package) + // let rels = { + // let data = read_zip(&mut archive, "_rels/.rels")?; + // Rels::from_xml(&data[..])? + // }; + // // Finally, the minimum content for the Main Document part must be defined + // // (physically located at /document.xml in the package): + // let main_rel = rels + // .find_target(DOC_RELATIONSHIP_TYPE) + // .ok_or(ReaderError::DocumentNotFoundError); + // + // let document_path = if let Ok(rel) = main_rel { + // rel.2.clone() + // } else { + // "word/document.xml".to_owned() + // }; + // + // let rels = read_document_rels(&mut archive, &document_path)?; + // + // // Read commentsExtended + // let comments_extended_path = rels.find_target_path(COMMENTS_EXTENDED_TYPE); + // let comments_extended = if let Some(comments_extended_path) = comments_extended_path { + // let data = read_zip( + // &mut archive, + // comments_extended_path + // .to_str() + // .expect("should have comments extended."), + // ); + // if let Ok(data) = data { + // CommentsExtended::from_xml(&data[..])? + // } else { + // CommentsExtended::default() + // } + // } else { + // CommentsExtended::default() + // }; + // + // // Read comments + // let comments_path = rels.find_target_path(COMMENTS_TYPE); + // let comments = if let Some(comments_path) = comments_path { + // let data = read_zip( + // &mut archive, + // comments_path.to_str().expect("should have comments."), + // ); + // if let Ok(data) = data { + // let mut comments = Comments::from_xml(&data[..])?.into_inner(); + // for i in 0..comments.len() { + // let c = &comments[i]; + // let extended = comments_extended.children.iter().find(|ex| { + // for child in &c.children { + // if let CommentChild::Paragraph(p) = child { + // if ex.paragraph_id == p.id { + // return true; + // } + // } + // } + // false + // }); + // if let Some(CommentExtended { + // parent_paragraph_id: Some(parent_paragraph_id), + // .. + // }) = extended + // { + // if let Some(parent_comment) = comments.iter().find(|c| { + // for child in &c.children { + // if let CommentChild::Paragraph(p) = child { + // if &p.id == parent_paragraph_id { + // return true; + // } + // } + // } + // false + // }) { + // comments[i].parent_comment_id = Some(parent_comment.id); + // } + // } + // } + // Comments { comments } + // } else { + // Comments::default() + // } + // } else { + // Comments::default() + // }; + + /* + let document = { + let data = read_zip(&mut archive, &document_path)?; + Document::from_xml(&data[..])? + }; + let mut docx = Docx::new().document(document); + + // store comments to paragraphs. + if !comments.inner().is_empty() { + docx.store_comments(comments.inner()); + docx = docx.comments(comments); + docx = docx.comments_extended(comments_extended); + } + + // Read document relationships + // Read styles + let style_path = rels.find_target_path(STYLE_RELATIONSHIP_TYPE); + if let Some(style_path) = style_path { + let data = read_zip( + &mut archive, + style_path.to_str().expect("should have styles"), + )?; + let styles = Styles::from_xml(&data[..])?; + docx = docx.styles(styles); + } + + // Read numberings + let num_path = rels.find_target_path(NUMBERING_RELATIONSHIP_TYPE); + if let Some(num_path) = num_path { + let data = read_zip( + &mut archive, + num_path.to_str().expect("should have numberings"), + )?; + let nums = Numberings::from_xml(&data[..])?; + docx = docx.numberings(nums); + } + + // Read settings + let settings_path = rels.find_target_path(SETTINGS_TYPE); + if let Some(settings_path) = settings_path { + let data = read_zip( + &mut archive, + settings_path.to_str().expect("should have settings"), + )?; + let settings = Settings::from_xml(&data[..])?; + docx = docx.settings(settings); + } + + // Read web settings + let web_settings_path = rels.find_target_path(WEB_SETTINGS_TYPE); + dbg!(&web_settings_path); + if let Some(web_settings_path) = web_settings_path { + let data = read_zip( + &mut archive, + web_settings_path + .to_str() + .expect("should have web settings"), + )?; + let web_settings = WebSettings::from_xml(&data[..])?; + docx = docx.web_settings(web_settings); + } + */ + // Ok(docx) +} diff --git a/docx-core/src/xml_builder/custom_properties.rs b/docx-core/src/xml_builder/custom_properties.rs new file mode 100644 index 0000000..7b8a76d --- /dev/null +++ b/docx-core/src/xml_builder/custom_properties.rs @@ -0,0 +1,8 @@ +use super::XMLBuilder; +use super::XmlEvent; + +impl XMLBuilder { + open!(open_custom_properties, "Properties", "xmlns", "xmlns:vt"); + open!(open_property, "property", "fmtid", "pid", "name"); + closed_with_child!(lpwstr, "vt:lpwstr"); +} diff --git a/docx-core/src/xml_builder/mod.rs b/docx-core/src/xml_builder/mod.rs index e04fc48..c3ae6cb 100644 --- a/docx-core/src/xml_builder/mod.rs +++ b/docx-core/src/xml_builder/mod.rs @@ -4,6 +4,7 @@ mod macros; mod comments; mod comments_extended; mod core_properties; +mod custom_properties; mod declaration; mod document; mod drawing; @@ -15,6 +16,7 @@ mod pic; mod properties; mod relationship; mod settings; + mod styles; use crate::BuildXML; diff --git a/docx-core/src/zipper/mod.rs b/docx-core/src/zipper/mod.rs index 6e45cc1..ea4e6d6 100644 --- a/docx-core/src/zipper/mod.rs +++ b/docx-core/src/zipper/mod.rs @@ -27,6 +27,8 @@ where zip.write_all(&xml.doc_props.app)?; zip.start_file("docProps/core.xml", options)?; zip.write_all(&xml.doc_props.core)?; + zip.start_file("docProps/custom.xml", options)?; + zip.write_all(&xml.doc_props.custom)?; zip.start_file("word/_rels/document.xml.rels", options)?; zip.write_all(&xml.document_rels)?; zip.start_file("word/document.xml", options)?; diff --git a/docx-core/tests/snapshots/lib__reader__read_bom.snap b/docx-core/tests/snapshots/lib__reader__read_bom.snap index cf1ba69..5fcf31c 100644 --- a/docx-core/tests/snapshots/lib__reader__read_bom.snap +++ b/docx-core/tests/snapshots/lib__reader__read_bom.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_bookmark.snap b/docx-core/tests/snapshots/lib__reader__read_bookmark.snap index e53811f..c3da5d4 100644 --- a/docx-core/tests/snapshots/lib__reader__read_bookmark.snap +++ b/docx-core/tests/snapshots/lib__reader__read_bookmark.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_comment.snap b/docx-core/tests/snapshots/lib__reader__read_comment.snap index 5dfad7a..4ee2068 100644 --- a/docx-core/tests/snapshots/lib__reader__read_comment.snap +++ b/docx-core/tests/snapshots/lib__reader__read_comment.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_decoration.snap b/docx-core/tests/snapshots/lib__reader__read_decoration.snap index 6de2d13..c5ce7b5 100644 --- a/docx-core/tests/snapshots/lib__reader__read_decoration.snap +++ b/docx-core/tests/snapshots/lib__reader__read_decoration.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap b/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap index cf6414b..31c1db1 100644 --- a/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap +++ b/docx-core/tests/snapshots/lib__reader__read_extended_comments.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_from_doc.snap b/docx-core/tests/snapshots/lib__reader__read_from_doc.snap index d8ccc1b..e98d74a 100644 --- a/docx-core/tests/snapshots/lib__reader__read_from_doc.snap +++ b/docx-core/tests/snapshots/lib__reader__read_from_doc.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_hello.snap b/docx-core/tests/snapshots/lib__reader__read_hello.snap index 28b3bec..6763357 100644 --- a/docx-core/tests/snapshots/lib__reader__read_hello.snap +++ b/docx-core/tests/snapshots/lib__reader__read_hello.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap b/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap index 6d4bb0e..c690c46 100644 --- a/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap +++ b/docx-core/tests/snapshots/lib__reader__read_highlight_and_underline.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_history.snap b/docx-core/tests/snapshots/lib__reader__read_history.snap index 1a7cd7e..3827312 100644 --- a/docx-core/tests/snapshots/lib__reader__read_history.snap +++ b/docx-core/tests/snapshots/lib__reader__read_history.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap b/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap index 9250d01..5cab98f 100644 --- a/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap +++ b/docx-core/tests/snapshots/lib__reader__read_indent_word_online.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_insert_table.snap b/docx-core/tests/snapshots/lib__reader__read_insert_table.snap index c245f16..f62c129 100644 --- a/docx-core/tests/snapshots/lib__reader__read_insert_table.snap +++ b/docx-core/tests/snapshots/lib__reader__read_insert_table.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap b/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap index cdc88d9..15de946 100644 --- a/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap +++ b/docx-core/tests/snapshots/lib__reader__read_lvl_override.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_numbering.snap b/docx-core/tests/snapshots/lib__reader__read_numbering.snap index 253e554..592367e 100644 --- a/docx-core/tests/snapshots/lib__reader__read_numbering.snap +++ b/docx-core/tests/snapshots/lib__reader__read_numbering.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"space\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"space\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap b/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap index 0ea57c9..b5c419f 100644 --- a/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap +++ b/docx-core/tests/snapshots/lib__reader__read_tab_and_break.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_table_docx.snap b/docx-core/tests/snapshots/lib__reader__read_table_docx.snap index fc1c649..b0b315e 100644 --- a/docx-core/tests/snapshots/lib__reader__read_table_docx.snap +++ b/docx-core/tests/snapshots/lib__reader__read_table_docx.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap b/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap index 95e2101..4c67b03 100644 --- a/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap +++ b/docx-core/tests/snapshots/lib__reader__read_table_merged_libre_office.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 54,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 54,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_textbox.snap b/docx-core/tests/snapshots/lib__reader__read_textbox.snap index 86f1e07..7bc8c74 100644 --- a/docx-core/tests/snapshots/lib__reader__read_textbox.snap +++ b/docx-core/tests/snapshots/lib__reader__read_textbox.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_bom.snap b/docx-core/tests/snapshots/reader__read_bom.snap index cf1ba69..5fcf31c 100644 --- a/docx-core/tests/snapshots/reader__read_bom.snap +++ b/docx-core/tests/snapshots/reader__read_bom.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5BADD4ED\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"_GoBack\"\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"58f67304-63b1-4505-b4ba-0c1a55a3ad31\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_bookmark.snap b/docx-core/tests/snapshots/reader__read_bookmark.snap index e53811f..c3da5d4 100644 --- a/docx-core/tests/snapshots/reader__read_bookmark.snap +++ b/docx-core/tests/snapshots/reader__read_bookmark.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 0,\n \"name\": \"ABCD-1234\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Bookmarked\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 0\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_comment.snap b/docx-core/tests/snapshots/reader__read_comment.snap index 5dfad7a..4ee2068 100644 --- a/docx-core/tests/snapshots/reader__read_comment.snap +++ b/docx-core/tests/snapshots/reader__read_comment.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 0,\n \"comment\": {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"is \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"her\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"e\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \". Comment Example \"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 0,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:41Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment3\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 1,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T18:22:23Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Comment Added\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"不明な作成者\",\n \"date\": \"2019-12-04T16:58:11Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": 0,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello world!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_decoration.snap b/docx-core/tests/snapshots/reader__read_decoration.snap index 6de2d13..c5ce7b5 100644 --- a/docx-core/tests/snapshots/reader__read_decoration.snap +++ b/docx-core/tests/snapshots/reader__read_decoration.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"CE181E\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_extended_comments.snap b/docx-core/tests/snapshots/reader__read_extended_comments.snap index cf6414b..31c1db1 100644 --- a/docx-core/tests/snapshots/reader__read_extended_comments.snap +++ b/docx-core/tests/snapshots/reader__read_extended_comments.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": true,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 1,\n \"name\": \"LWG=563188eb-11ef-484b-9fe4-088029361a5d\"\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000062\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello w\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 1,\n \"comment\": {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 2,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"commentRangeStart\",\n \"data\": {\n \"id\": 2,\n \"comment\": {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n }\n },\n {\n \"type\": \"bookmarkStart\",\n \"data\": {\n \"id\": 3,\n \"name\": \"LRC=a187fb71-b95b-46d9-a379-121fe85b1fdc\"\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 3\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": 0,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000067\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": [\n {\n \"id\": 1,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:25.705Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000064\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yey\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n },\n {\n \"id\": 2,\n \"author\": \"あどみん てすと\",\n \"date\": \"2020-12-15T15:54:32.752Z\",\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000066\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"yo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": 1\n }\n ]\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": \"50d61cff-8055-4197-917b-3993d0243c46\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": [\n {\n \"paragraphId\": \"00000064\",\n \"done\": false,\n \"parentParagraphId\": null\n },\n {\n \"paragraphId\": \"00000066\",\n \"done\": false,\n \"parentParagraphId\": \"00000064\"\n }\n ]\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_from_doc.snap b/docx-core/tests/snapshots/reader__read_from_doc.snap index d8ccc1b..e98d74a 100644 --- a/docx-core/tests/snapshots/reader__read_from_doc.snap +++ b/docx-core/tests/snapshots/reader__read_from_doc.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z0\",\n \"name\": \"WW8Num1z0\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z1\",\n \"name\": \"WW8Num1z1\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z2\",\n \"name\": \"WW8Num1z2\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z3\",\n \"name\": \"WW8Num1z3\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z4\",\n \"name\": \"WW8Num1z4\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z5\",\n \"name\": \"WW8Num1z5\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z6\",\n \"name\": \"WW8Num1z6\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z7\",\n \"name\": \"WW8Num1z7\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"WW8Num1z8\",\n \"name\": \"WW8Num1z8\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"段落フォント\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Heading\",\n \"name\": \"Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TextBody\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"List\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TextBody\"\n },\n {\n \"styleId\": \"Caption\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Index\",\n \"name\": \"Index\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"リスト段落\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableContents\",\n \"name\": \"Table Contents\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"TableHeading\",\n \"name\": \"Table Heading\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"TableContents\"\n },\n {\n \"styleId\": \"WW8Num1\",\n \"name\": \"WW8Num1\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 2624,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1312,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1313,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 1323,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 1312,\n 1312,\n 1312,\n 1312,\n 1313,\n 1323\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 7884,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 727,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000001a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style15\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 425,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 425\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 992,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1418,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 567\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1984,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 708\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2551,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 850\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1134\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3827,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1276\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4394,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1418\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.%2.%3.%4.%5.%6.%7.%8.%9\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5102,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 1700\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"start\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_hello.snap b/docx-core/tests/snapshots/reader__read_hello.snap index 28b3bec..6763357 100644 --- a/docx-core/tests/snapshots/reader__read_hello.snap +++ b/docx-core/tests/snapshots/reader__read_hello.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap b/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap index 6d4bb0e..c690c46 100644 --- a/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap +++ b/docx-core/tests/snapshots/reader__read_highlight_and_underline.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": \"yellow\",\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"マーカー\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" \"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"下線\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_history.snap b/docx-core/tests/snapshots/reader__read_history.snap index 1a7cd7e..3827312 100644 --- a/docx-core/tests/snapshots/reader__read_history.snap +++ b/docx-core/tests/snapshots/reader__read_history.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"a\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"rld\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\"\n }\n },\n {\n \"type\": \"delete\",\n \"data\": {\n \"author\": \"不明な作成者\",\n \"date\": \"2019-11-15T14:19:04Z\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"deleteText\",\n \"data\": {\n \"text\": \"Hello \",\n \"preserveSpace\": true\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_indent_word_online.snap b/docx-core/tests/snapshots/reader__read_indent_word_online.snap index 9250d01..5cab98f 100644 --- a/docx-core/tests/snapshots/reader__read_indent_word_online.snap +++ b/docx-core/tests/snapshots/reader__read_indent_word_online.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"DefaultParagraphFont\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"TableNormal\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"NoList\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"5231A740\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"6DA0584E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"015A501D\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 22,\n \"szCs\": 22,\n \"color\": \"222222\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"640CFBC2\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"4C665373\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1560,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 720\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 720,\n \"footer\": 720,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"08a45a55-dfcc-4396-aedc-f7a5bfb7db65\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_insert_table.snap b/docx-core/tests/snapshots/reader__read_insert_table.snap index c245f16..f62c129 100644 --- a/docx-core/tests/snapshots/reader__read_insert_table.snap +++ b/docx-core/tests/snapshots/reader__read_insert_table.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \" World\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T18:36:03Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hi\"\n }\n }\n ]\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"insert\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"000000\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 4819,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": null,\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 4819,\n 4819\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_lvl_override.snap b/docx-core/tests/snapshots/reader__read_lvl_override.snap index cdc88d9..15de946 100644 --- a/docx-core/tests/snapshots/reader__read_lvl_override.snap +++ b/docx-core/tests/snapshots/reader__read_lvl_override.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a3\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"a\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"67BF3DED\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"42242901\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"W\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"1B25007E\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 420,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"firstLine\",\n \"val\": 147\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%2)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 840,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1260,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1680,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%5)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2100,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2940,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"aiueoFullWidth\",\n \"text\": \"(%8)\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3360,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3780,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 420\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 1,\n \"levelOverrides\": [\n {\n \"level\": 0,\n \"overrideStart\": null,\n \"overrideLevel\": {\n \"level\": 0,\n \"start\": 10,\n \"format\": \"decimal\",\n \"text\": \"override %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n }\n ]\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"10BE20B6-DCA9-7441-B548-606D7D9EDD92\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_numbering.snap b/docx-core/tests/snapshots/reader__read_numbering.snap index 253e554..592367e 100644 --- a/docx-core/tests/snapshots/reader__read_numbering.snap +++ b/docx-core/tests/snapshots/reader__read_numbering.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"space\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"番号付け記号\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style16\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": true\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": true\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 1,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"Section %1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1037,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 918\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimal\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 2,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%1\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%2\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%3\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%4\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%5\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%6\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%7\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%8\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"decimalEnclosedCircle\",\n \"text\": \"%9\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 3,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%1.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"space\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%2.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1080,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%3.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%4.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1800,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%5.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%6.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2520,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%7.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%8.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3240,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"lowerRoman\",\n \"text\": \"%9.\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n },\n {\n \"id\": 4,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"none\",\n \"text\": \"\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 0\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"nothing\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 1,\n \"levelOverrides\": []\n },\n {\n \"id\": 2,\n \"abstractNumId\": 2,\n \"levelOverrides\": []\n },\n {\n \"id\": 3,\n \"abstractNumId\": 3,\n \"levelOverrides\": []\n },\n {\n \"id\": 4,\n \"abstractNumId\": 4,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_tab_and_break.snap b/docx-core/tests/snapshots/reader__read_tab_and_break.snap index 0ea57c9..b5c419f 100644 --- a/docx-core/tests/snapshots/reader__read_tab_and_break.snap +++ b/docx-core/tests/snapshots/reader__read_tab_and_break.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Start\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Break\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Tabaaa\"\n }\n },\n {\n \"type\": \"tab\"\n },\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"aaaaa\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_table_docx.snap b/docx-core/tests/snapshots/reader__read_table_docx.snap index fc1c649..b0b315e 100644 --- a/docx-core/tests/snapshots/reader__read_table_docx.snap +++ b/docx-core/tests/snapshots/reader__read_table_docx.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading1\",\n \"name\": \"Heading 1\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 32,\n \"szCs\": 32,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading2\",\n \"name\": \"Heading 2\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 26,\n \"szCs\": 26,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading3\",\n \"name\": \"Heading 3\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading4\",\n \"name\": \"Heading 4\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading5\",\n \"name\": \"Heading 5\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"2E74B5\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Heading6\",\n \"name\": \"Heading 6\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"1F4D78\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"ListParagraph\",\n \"name\": \"List Paragraph\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Hyperlink\",\n \"name\": \"Hyperlink\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": \"0563C1\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": \"single\",\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteReference\",\n \"name\": \"footnote reference\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": \"superscript\",\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n },\n {\n \"styleId\": \"FootnoteText\",\n \"name\": \"footnote text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"FootnoteTextChar\",\n \"name\": \"Footnote Text Char\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": 20,\n \"szCs\": 20,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"DefaultParagraphFont\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 2985,\n 3000,\n 3000\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 8985,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 4,\n \"color\": \"auto\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 60,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1440,\n \"left\": 1440,\n \"bottom\": 1440,\n \"right\": 1440,\n \"header\": 708,\n \"footer\": 708,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [\n {\n \"id\": 0,\n \"styleLink\": null,\n \"numStyleLink\": null,\n \"levels\": [\n {\n \"level\": 0,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 720,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 1,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 1440,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 2,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2160,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 3,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 2880,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 4,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 3600,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 5,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 4320,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 6,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"●\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5040,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 7,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"○\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 5760,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n },\n {\n \"level\": 8,\n \"start\": 1,\n \"format\": \"bullet\",\n \"text\": \"■\",\n \"jc\": \"left\",\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": {\n \"start\": 6480,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": {\n \"type\": \"hanging\",\n \"val\": 360\n },\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"suffix\": \"tab\",\n \"pstyle\": null,\n \"levelRestart\": null\n }\n ]\n }\n ],\n \"numberings\": [\n {\n \"id\": 1,\n \"abstractNumId\": 0,\n \"levelOverrides\": []\n }\n ]\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap b/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap index 95e2101..4c67b03 100644 --- a/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap +++ b/docx-core/tests/snapshots/reader__read_table_merged_libre_office.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 54,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": \"auto\",\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"Style14\",\n \"name\": \"見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 28,\n \"szCs\": 28,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style15\",\n \"name\": \"Body Text\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style16\",\n \"name\": \"List\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style15\"\n },\n {\n \"styleId\": \"Style17\",\n \"name\": \"Caption\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 24,\n \"szCs\": 24,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": true,\n \"italicCs\": true,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style18\",\n \"name\": \"索引\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style19\",\n \"name\": \"表の内容\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Normal\"\n },\n {\n \"styleId\": \"Style20\",\n \"name\": \"表の見出し\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": true,\n \"boldCs\": true,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"center\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": \"Style19\"\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 6425,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": 2,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"restart\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n },\n {\n \"cells\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3212,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": null,\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null,\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n },\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Style19\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"property\": {\n \"width\": {\n \"width\": 3213,\n \"widthType\": \"DXA\"\n },\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n },\n \"tr2bl\": null,\n \"tl2br\": null\n },\n \"gridSpan\": null,\n \"verticalMerge\": \"continue\",\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": {\n \"shdType\": \"clear\",\n \"color\": \"auto\",\n \"fill\": \"auto\"\n }\n },\n \"hasNumbering\": false\n }\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"gridAfter\": null,\n \"widthAfter\": null,\n \"gridBefore\": null,\n \"widthBefore\": null,\n \"rowHeight\": null,\n \"heightRule\": \"atLeast\"\n }\n }\n ],\n \"grid\": [\n 3212,\n 3213,\n 3213\n ],\n \"hasNumbering\": false,\n \"property\": {\n \"width\": {\n \"width\": 9638,\n \"widthType\": \"DXA\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": null,\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 54,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": {\n \"width\": 0,\n \"widthType\": \"DXA\"\n },\n \"style\": null,\n \"layout\": null\n }\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": \"Normal\",\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11906,\n \"h\": 16838,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1134,\n \"left\": 1134,\n \"bottom\": 1134,\n \"right\": 1134,\n \"header\": 0,\n \"footer\": 0,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 709,\n \"zoom\": 100,\n \"docId\": null,\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-core/tests/snapshots/reader__read_textbox.snap b/docx-core/tests/snapshots/reader__read_textbox.snap index 86f1e07..7bc8c74 100644 --- a/docx-core/tests/snapshots/reader__read_textbox.snap +++ b/docx-core/tests/snapshots/reader__read_textbox.snap @@ -2,4 +2,4 @@ source: docx-core/tests/reader.rs expression: "&json" --- -"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" +"{\n \"contentType\": {\n \"types\": {\n \"/_rels/.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/docProps/app.xml\": \"application/vnd.openxmlformats-officedocument.extended-properties+xml\",\n \"/docProps/core.xml\": \"application/vnd.openxmlformats-package.core-properties+xml\",\n \"/docProps/custom.xml\": \"application/vnd.openxmlformats-officedocument.custom-properties+xml\",\n \"/word/_rels/document.xml.rels\": \"application/vnd.openxmlformats-package.relationships+xml\",\n \"/word/comments.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n \"/word/commentsExtended.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n \"/word/document.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\",\n \"/word/fontTable.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml\",\n \"/word/header1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml\",\n \"/word/numbering.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\",\n \"/word/settings.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\",\n \"/word/styles.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\"\n }\n },\n \"rels\": {\n \"rels\": [\n [\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"rId1\",\n \"docProps/core.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"rId2\",\n \"docProps/app.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"rId3\",\n \"word/document.xml\"\n ],\n [\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"rId4\",\n \"docProps/custom.xml\"\n ]\n ]\n },\n \"documentRels\": {\n \"hasComments\": false,\n \"hasNumberings\": false,\n \"imageIds\": []\n },\n \"docProps\": {\n \"app\": {},\n \"core\": {\n \"config\": {\n \"created\": null,\n \"creator\": null,\n \"description\": null,\n \"language\": null,\n \"lastModifiedBy\": null,\n \"modified\": null,\n \"revision\": null,\n \"subject\": null,\n \"title\": null\n }\n },\n \"custom\": {\n \"properties\": {}\n }\n },\n \"styles\": {\n \"docDefaults\": {\n \"runPropertyDefault\": {\n \"runProperty\": {\n \"sz\": 21,\n \"szCs\": 21,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": \"both\",\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a0\",\n \"name\": \"Default Paragraph Font\",\n \"styleType\": \"character\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a1\",\n \"name\": \"Normal Table\",\n \"styleType\": \"table\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": null,\n \"left\": null,\n \"bottom\": null,\n \"right\": null,\n \"insideH\": null,\n \"insideV\": null\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n },\n {\n \"styleId\": \"a2\",\n \"name\": \"No List\",\n \"styleType\": \"numbering\",\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"paragraphProperty\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"Auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"DXA\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"DXA\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\n \"width\": null,\n \"borders\": null,\n \"gridSpan\": null,\n \"verticalMerge\": null,\n \"verticalAlign\": null,\n \"textDirection\": null,\n \"shading\": null\n },\n \"basedOn\": null\n }\n ]\n },\n \"document\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"position_type\": {\n \"Inline\": {\n \"dist_t\": 0,\n \"dist_b\": 0,\n \"dist_l\": 0,\n \"dist_r\": 0\n }\n },\n \"position_h\": {\n \"Offset\": 0\n },\n \"position_v\": {\n \"Offset\": 0\n },\n \"data\": null,\n \"children\": [\n {\n \"type\": \"anchor\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"dataType\": \"wpShape\",\n \"children\": [\n {\n \"type\": \"shape\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"textbox\",\n \"data\": {\n \"children\": [\n {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"H\"\n }\n }\n ]\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"has_numbering\": false\n }\n ],\n \"hasNumbering\": false\n }\n }\n ]\n }\n }\n ]\n }\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"sz\": null,\n \"szCs\": null,\n \"color\": null,\n \"highlight\": null,\n \"vertAlign\": null,\n \"underline\": null,\n \"bold\": null,\n \"boldCs\": null,\n \"italic\": null,\n \"italicCs\": null,\n \"vanish\": null,\n \"spacing\": null,\n \"fonts\": null,\n \"textBorder\": null,\n \"del\": null,\n \"ins\": null\n },\n \"style\": null,\n \"numberingProperty\": null,\n \"alignment\": null,\n \"indent\": null,\n \"lineHeight\": null,\n \"keepNext\": false,\n \"keepLines\": false,\n \"pageBreakBefore\": false,\n \"windowControl\": false,\n \"divId\": null\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"sectionProperty\": {\n \"pageSize\": {\n \"w\": 11900,\n \"h\": 16840,\n \"orient\": null\n },\n \"pageMargin\": {\n \"top\": 1985,\n \"left\": 1701,\n \"bottom\": 1701,\n \"right\": 1701,\n \"header\": 851,\n \"footer\": 992,\n \"gutter\": 0\n },\n \"columns\": 425,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"sectionType\": null\n },\n \"hasNumbering\": false\n },\n \"comments\": {\n \"comments\": []\n },\n \"numberings\": {\n \"abstractNums\": [],\n \"numberings\": []\n },\n \"settings\": {\n \"defaultTabStop\": 840,\n \"zoom\": 100,\n \"docId\": \"C11ED300-8EA6-3D41-8D67-5E5DE3410CF8\",\n \"docVars\": []\n },\n \"fontTable\": {},\n \"media\": [],\n \"header\": {\n \"children\": []\n },\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n }\n}" diff --git a/docx-wasm/js/doc-props.ts b/docx-wasm/js/doc-props.ts index 07c9a86..e1a61de 100644 --- a/docx-wasm/js/doc-props.ts +++ b/docx-wasm/js/doc-props.ts @@ -1,6 +1,7 @@ export class DocProps { _createdAt: string | null = null; _updatedAt: string | null = null; + _customProperties: { [name: string]: string } = {}; createdAt(date: string) { this._createdAt = date; @@ -11,4 +12,9 @@ export class DocProps { this._updatedAt = date; return this; } + + customProperty(name: string, item: string) { + this._customProperties[name] = item; + return this; + } } diff --git a/docx-wasm/js/index.ts b/docx-wasm/js/index.ts index d277675..7b51b9e 100644 --- a/docx-wasm/js/index.ts +++ b/docx-wasm/js/index.ts @@ -131,6 +131,11 @@ export class Docx { return this; } + customProperty(name: string, item: string) { + this.docProps.customProperty(name, item); + return this; + } + updatedAt(date: string) { this.docProps.updatedAt(date); return this; @@ -845,6 +850,14 @@ export class Docx { docx = docx.updated_at(this.docProps._updatedAt); } + Object.entries(this.docProps._customProperties).forEach(([key, item]) => { + docx = docx.custom_property(key, item); + }); + + if (this.docProps._updatedAt) { + docx = docx.updated_at(this.docProps._updatedAt); + } + return docx; } diff --git a/docx-wasm/js/json/index.ts b/docx-wasm/js/json/index.ts index 829f666..741f03b 100644 --- a/docx-wasm/js/json/index.ts +++ b/docx-wasm/js/json/index.ts @@ -29,6 +29,9 @@ export type DocxJSON = { title: string | null; }; }; + custom: { + [key: string]: string; + }; }; styles: StylesJSON; document: DocumentJSON; diff --git a/docx-wasm/src/doc.rs b/docx-wasm/src/doc.rs index 2661cb4..d1e2c56 100644 --- a/docx-wasm/src/doc.rs +++ b/docx-wasm/src/doc.rs @@ -53,6 +53,11 @@ impl Docx { self } + pub fn custom_property(mut self, name: &str, item: &str) -> Self { + self.0.doc_props = self.0.doc_props.custom_property(name, item); + self + } + pub fn doc_id(mut self, id: &str) -> Docx { self.0 = self.0.doc_id(id); self diff --git a/docx-wasm/test/__snapshots__/index.test.js.snap b/docx-wasm/test/__snapshots__/index.test.js.snap index d29c222..31bf0b0 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`reader should read div docx 1`] = ` +exports[`reader should read custom docx 1`] = ` Object { "comments": Object { "comments": Array [], @@ -13,6 +13,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -39,6 +40,369 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object { + "hello": "world", + }, + }, + }, + "document": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "Hello", + }, + "type": "text", + }, + ], + "runProperty": Object { + "bold": null, + "boldCs": null, + "color": null, + "del": null, + "fonts": null, + "highlight": null, + "ins": null, + "italic": null, + "italicCs": null, + "spacing": null, + "sz": null, + "szCs": null, + "textBorder": null, + "underline": null, + "vanish": null, + "vertAlign": null, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "00000001", + "property": Object { + "alignment": null, + "divId": null, + "indent": null, + "keepLines": false, + "keepNext": false, + "lineHeight": null, + "numberingProperty": null, + "pageBreakBefore": false, + "runProperty": Object { + "bold": null, + "boldCs": null, + "color": null, + "del": null, + "fonts": null, + "highlight": null, + "ins": null, + "italic": null, + "italicCs": null, + "spacing": null, + "sz": null, + "szCs": null, + "textBorder": null, + "underline": null, + "vanish": null, + "vertAlign": null, + }, + "style": null, + "windowControl": false, + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "sectionProperty": Object { + "columns": 425, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "headerReference": Object { + "headerType": "default", + "id": "rId4", + }, + "pageMargin": Object { + "bottom": 1701, + "footer": 992, + "gutter": 0, + "header": 851, + "left": 1701, + "right": 1701, + "top": 1985, + }, + "pageSize": Object { + "h": 16838, + "orient": null, + "w": 11906, + }, + "sectionType": null, + }, + }, + "documentRels": Object { + "hasComments": false, + "hasNumberings": false, + "imageIds": Array [], + }, + "fontTable": Object {}, + "header": Object { + "children": Array [], + }, + "media": Array [], + "numberings": Object { + "abstractNums": Array [], + "numberings": Array [], + }, + "rels": Object { + "rels": Array [ + Array [ + "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties", + "rId1", + "docProps/core.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties", + "rId2", + "docProps/app.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument", + "rId3", + "word/document.xml", + ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], + ], + }, + "settings": Object { + "defaultTabStop": 840, + "docId": null, + "docVars": Array [], + "zoom": 100, + }, + "styles": Object { + "docDefaults": Object { + "runPropertyDefault": Object { + "runProperty": Object { + "bold": null, + "boldCs": null, + "color": null, + "del": null, + "fonts": null, + "highlight": null, + "ins": null, + "italic": null, + "italicCs": null, + "spacing": null, + "sz": null, + "szCs": null, + "textBorder": null, + "underline": null, + "vanish": null, + "vertAlign": null, + }, + }, + }, + "styles": Array [ + Object { + "basedOn": "Normal", + "name": "Normal", + "paragraphProperty": Object { + "alignment": null, + "divId": null, + "indent": null, + "keepLines": false, + "keepNext": false, + "lineHeight": null, + "numberingProperty": null, + "pageBreakBefore": false, + "runProperty": Object { + "bold": null, + "boldCs": null, + "color": null, + "del": null, + "fonts": null, + "highlight": null, + "ins": null, + "italic": null, + "italicCs": null, + "spacing": null, + "sz": null, + "szCs": null, + "textBorder": null, + "underline": null, + "vanish": null, + "vertAlign": null, + }, + "style": null, + "windowControl": false, + }, + "runProperty": Object { + "bold": null, + "boldCs": null, + "color": null, + "del": null, + "fonts": null, + "highlight": null, + "ins": null, + "italic": null, + "italicCs": null, + "spacing": null, + "sz": null, + "szCs": null, + "textBorder": null, + "underline": null, + "vanish": null, + "vertAlign": null, + }, + "styleId": "Normal", + "styleType": "paragraph", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": Object { + "borderType": "single", + "color": "000000", + "position": "bottom", + "size": 2, + "space": 0, + }, + "insideH": Object { + "borderType": "single", + "color": "000000", + "position": "insideH", + "size": 2, + "space": 0, + }, + "insideV": Object { + "borderType": "single", + "color": "000000", + "position": "insideV", + "size": 2, + "space": 0, + }, + "left": Object { + "borderType": "single", + "color": "000000", + "position": "left", + "size": 2, + "space": 0, + }, + "right": Object { + "borderType": "single", + "color": "000000", + "position": "right", + "size": 2, + "space": 0, + }, + "top": Object { + "borderType": "single", + "color": "000000", + "position": "top", + "size": 2, + "space": 0, + }, + }, + "indent": null, + "justification": "left", + "layout": null, + "margins": Object { + "bottom": Object { + "val": 0, + "widthType": "DXA", + }, + "left": Object { + "val": 55, + "widthType": "DXA", + }, + "right": Object { + "val": 55, + "widthType": "DXA", + }, + "top": Object { + "val": 0, + "widthType": "DXA", + }, + }, + "style": null, + "width": Object { + "width": 0, + "widthType": "Auto", + }, + }, + }, + ], + }, + "webSettings": Object { + "divs": Array [], + }, +} +`; + +exports[`reader should read div docx 1`] = ` +Object { + "comments": Object { + "comments": Array [], + }, + "commentsExtended": Object { + "children": Array [], + }, + "contentType": Object { + "types": Object { + "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", + "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", + "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", + "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", + "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", + "/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml", + "/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml", + "/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml", + "/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml", + "/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml", + "/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml", + }, + }, + "docProps": Object { + "app": Object {}, + "core": Object { + "config": Object { + "created": null, + "creator": null, + "description": null, + "language": null, + "lastModifiedBy": null, + "modified": null, + "revision": null, + "subject": null, + "title": null, + }, + }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -459,6 +823,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -1316,6 +1685,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -1342,6 +1712,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -1896,6 +2269,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -2084,6 +2462,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -2110,6 +2489,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -4370,6 +4752,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -4927,6 +5314,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -4953,6 +5341,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -7337,6 +7728,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -8645,6 +9041,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -8671,6 +9068,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -11076,6 +11476,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -12587,6 +12992,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -12613,6 +13019,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -13464,6 +13873,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -14174,6 +14588,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -14200,6 +14615,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -14718,6 +15136,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -15410,6 +15833,7 @@ Object { "/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml", "/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml", "/docProps/core.xml": "application/vnd.openxmlformats-package.core-properties+xml", + "/docProps/custom.xml": "application/vnd.openxmlformats-officedocument.custom-properties+xml", "/word/_rels/document.xml.rels": "application/vnd.openxmlformats-package.relationships+xml", "/word/comments.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", "/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", @@ -15436,6 +15860,9 @@ Object { "title": null, }, }, + "custom": Object { + "properties": Object {}, + }, }, "document": Object { "children": Array [ @@ -15755,6 +16182,11 @@ Object { "rId3", "word/document.xml", ], + Array [ + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties", + "rId4", + "docProps/custom.xml", + ], ], }, "settings": Object { @@ -16329,6 +16761,40 @@ exports[`writer should write cell shading 3`] = ` " `; +exports[`writer should write custom props 1`] = ` +" + + + {\\"world\\": 0} + +" +`; + +exports[`writer should write custom props 2`] = ` +" + + + + + + +" +`; + +exports[`writer should write custom props 3`] = ` +" + + Hello!! +" +`; + +exports[`writer should write custom props 4`] = ` +" + + +" +`; + exports[`writer should write default font 1`] = ` " diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index 58a5754..25b2150 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -22,6 +22,13 @@ describe("reader", () => { expect(json).toMatchSnapshot(); }); + test("should read custom docx", () => { + const buffer = readFileSync("../fixtures/custom/custom.docx"); + const json = w.readDocx(buffer); + writeFileSync("../output/custom.json", JSON.stringify(json, null, 2)); + expect(json).toMatchSnapshot(); + }); + test("should read table style docx", () => { const buffer = readFileSync("../fixtures/table_style/table_style.docx"); const json = w.readDocx(buffer); @@ -272,4 +279,19 @@ describe("writer", () => { } } }); + + test("should write custom props", () => { + const p = new w.Paragraph().addRun(new w.Run().addText("Hello!!")); + const buffer = new w.Docx() + .addParagraph(p) + .customProperty('hello', '{"world": 0}') + .build(); + writeFileSync("../output/custom.docx", buffer); + const z = new Zip(Buffer.from(buffer)); + for (const e of z.getEntries()) { + if (e.entryName.match(/document.xml|numbering.xml|custom.xml/)) { + expect(z.readAsText(e)).toMatchSnapshot(); + } + } + }); }); diff --git a/fixtures/custom/custom.docx b/fixtures/custom/custom.docx new file mode 100644 index 0000000..ea62f8e Binary files /dev/null and b/fixtures/custom/custom.docx differ