diff --git a/.gitignore b/.gitignore index 13a29c6..b29a494 100644 --- a/.gitignore +++ b/.gitignore @@ -17,5 +17,6 @@ reg.json docx-core/tests/output/*.docx docx-wasm/*.tgz docx-core/bindings -docx-core/tests/output/*.json -test.json \ No newline at end of file +test.json +image.json +docx-core/tests/output/*.json \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index a424c79..06654b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,6 +35,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + [[package]] name = "bitflags" version = "1.2.1" @@ -176,6 +182,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" name = "docx-rs" version = "0.3.4" dependencies = [ + "base64", "image", "insta", "pretty_assertions", diff --git a/docx-core/Cargo.toml b/docx-core/Cargo.toml index 866e522..d2af7b6 100644 --- a/docx-core/Cargo.toml +++ b/docx-core/Cargo.toml @@ -26,6 +26,7 @@ thiserror = "1.0" zip = { version = "0.5.6", default-features = false, features = ["deflate"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" +base64 = "0.13.0" image = "0.23.14" ts-rs = "6.1" diff --git a/docx-core/examples/image_floating.rs b/docx-core/examples/image_floating.rs index 9078af4..93b064e 100644 --- a/docx-core/examples/image_floating.rs +++ b/docx-core/examples/image_floating.rs @@ -4,17 +4,17 @@ use std::io::Read; use docx_rs::*; pub fn main() -> Result<(), DocxError> { - let path = std::path::Path::new("./output/image.docx"); + let path = std::path::Path::new("./output/examples/image_floating.docx"); let file = File::create(&path).unwrap(); let mut img = File::open("./images/cat_min.jpg").unwrap(); let mut buf = Vec::new(); let _ = img.read_to_end(&mut buf).unwrap(); let pic = Pic::new(buf) - .size(320, 240) + .size(320 * 9525, 240 * 9525) .floating() - .offset_x(300) - .offset_y(400); + .offset_x(300 * 9525) + .offset_y(400 * 9525); Docx::new() .add_paragraph(Paragraph::new().add_run(Run::new().add_image(pic))) .build() diff --git a/docx-core/examples/image_inline.rs b/docx-core/examples/image_inline.rs index 9ec5aeb..9ee2f57 100644 --- a/docx-core/examples/image_inline.rs +++ b/docx-core/examples/image_inline.rs @@ -4,13 +4,13 @@ use std::io::Read; use docx_rs::*; pub fn main() -> Result<(), DocxError> { - let path = std::path::Path::new("./output/image.docx"); + let path = std::path::Path::new("./output/examples/image_inline.docx"); let file = File::create(&path).unwrap(); let mut img = File::open("./images/cat_min.jpg").unwrap(); let mut buf = Vec::new(); let _ = img.read_to_end(&mut buf).unwrap(); - let pic = Pic::new(buf).size(320, 240); + let pic = Pic::new(buf).size(320 * 9525, 240 * 9525); Docx::new() .add_paragraph(Paragraph::new().add_run(Run::new().add_text("🐱").add_image(pic))) .build() diff --git a/docx-core/examples/image_reader.rs b/docx-core/examples/image_reader.rs new file mode 100644 index 0000000..c5320ec --- /dev/null +++ b/docx-core/examples/image_reader.rs @@ -0,0 +1,15 @@ +use docx_rs::*; + +use std::fs::File; +use std::io::{Read, Write}; + +pub fn main() { + let mut file = File::open("./image.docx").unwrap(); + let mut buf = vec![]; + file.read_to_end(&mut buf).unwrap(); + + let mut file = File::create("./image.json").unwrap(); + let res = read_docx(&buf).unwrap().json(); + file.write_all(res.as_bytes()).unwrap(); + file.flush().unwrap(); +} diff --git a/docx-core/src/documents/document.rs b/docx-core/src/documents/document.rs index 1dc4b7d..67bd7a5 100644 --- a/docx-core/src/documents/document.rs +++ b/docx-core/src/documents/document.rs @@ -15,14 +15,14 @@ pub struct Document { #[derive(Debug, Clone, PartialEq)] pub enum DocumentChild { - Paragraph(Paragraph), - Table(Table), + Paragraph(Box), + Table(Box), BookmarkStart(BookmarkStart), BookmarkEnd(BookmarkEnd), CommentStart(Box), CommentEnd(CommentRangeEnd), - StructuredDataTag(StructuredDataTag), - TableOfContents(TableOfContents), + StructuredDataTag(Box), + TableOfContents(Box), } impl Serialize for DocumentChild { @@ -102,7 +102,7 @@ impl Document { if p.has_numbering { self.has_numbering = true } - self.children.push(DocumentChild::Paragraph(p)); + self.children.push(DocumentChild::Paragraph(Box::new(p))); self } @@ -110,7 +110,7 @@ impl Document { if t.has_numbering { self.has_numbering = true } - self.children.push(DocumentChild::Table(t)); + self.children.push(DocumentChild::Table(Box::new(t))); self } @@ -198,12 +198,13 @@ impl Document { if t.has_numbering { self.has_numbering = true } - self.children.push(DocumentChild::StructuredDataTag(t)); + self.children + .push(DocumentChild::StructuredDataTag(Box::new(t))); self } pub fn add_table_of_contents(mut self, t: TableOfContents) -> Self { - self.children.push(DocumentChild::TableOfContents(t)); + self.children.push(DocumentChild::TableOfContents(Box::new(t))); self } } diff --git a/docx-core/src/documents/document_rels.rs b/docx-core/src/documents/document_rels.rs index fc58c9b..c6ae260 100644 --- a/docx-core/src/documents/document_rels.rs +++ b/docx-core/src/documents/document_rels.rs @@ -4,12 +4,12 @@ use super::*; use crate::documents::BuildXML; use crate::xml_builder::*; -#[derive(Debug, Clone, PartialEq, Serialize)] +#[derive(Debug, Clone, PartialEq, Serialize, Default)] #[serde(rename_all = "camelCase")] pub struct DocumentRels { pub has_comments: bool, pub has_numberings: bool, - pub image_ids: Vec, + pub images: Vec<(String, String)>, pub custom_xml_count: usize, pub header_count: usize, pub footer_count: usize, @@ -26,19 +26,6 @@ impl DocumentRels { } } -impl Default for DocumentRels { - fn default() -> Self { - Self { - has_comments: false, - has_numberings: false, - image_ids: vec![], - custom_xml_count: 0, - header_count: 0, - footer_count: 0, - } - } -} - impl BuildXML for DocumentRels { fn build(&self) -> Vec { let mut b = XMLBuilder::new(); @@ -106,11 +93,11 @@ impl BuildXML for DocumentRels { ) } - for id in self.image_ids.iter() { + for (id, path) in self.images.iter() { b = b.relationship( - &create_pic_rid(*id), + id, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image", - &format!("media/image{}.jpg", *id), + path, ) } diff --git a/docx-core/src/documents/elements/a_graphic.rs b/docx-core/src/documents/elements/a_graphic.rs index 9884af8..f50f2d3 100644 --- a/docx-core/src/documents/elements/a_graphic.rs +++ b/docx-core/src/documents/elements/a_graphic.rs @@ -4,7 +4,7 @@ use serde::Serialize; use crate::documents::BuildXML; use crate::xml_builder::*; -#[derive(Debug, Clone, Serialize, PartialEq)] +#[derive(Debug, Clone, Serialize, PartialEq, Default)] #[serde(rename_all = "camelCase")] pub struct AGraphic { pub children: Vec, @@ -21,12 +21,6 @@ impl AGraphic { } } -impl Default for AGraphic { - fn default() -> Self { - Self { children: vec![] } - } -} - impl BuildXML for AGraphic { fn build(&self) -> Vec { let b = XMLBuilder::new(); diff --git a/docx-core/src/documents/elements/a_graphic_data.rs b/docx-core/src/documents/elements/a_graphic_data.rs index ace4eae..0a15cd0 100644 --- a/docx-core/src/documents/elements/a_graphic_data.rs +++ b/docx-core/src/documents/elements/a_graphic_data.rs @@ -22,6 +22,7 @@ pub struct AGraphicData { #[derive(Debug, Clone, PartialEq)] pub enum GraphicDataChild { Shape(WpsShape), + Pic(Pic), } impl Serialize for GraphicDataChild { @@ -36,6 +37,12 @@ impl Serialize for GraphicDataChild { t.serialize_field("data", s)?; t.end() } + GraphicDataChild::Pic(ref s) => { + let mut t = serializer.serialize_struct("Pic", 2)?; + t.serialize_field("type", "pic")?; + t.serialize_field("data", s)?; + t.end() + } } } } @@ -94,6 +101,7 @@ impl BuildXML for AGraphicData { for c in &self.children { match c { GraphicDataChild::Shape(t) => b = b.add_child(t), + GraphicDataChild::Pic(t) => b = b.add_child(t), } } b.close().build() diff --git a/docx-core/src/documents/elements/drawing.rs b/docx-core/src/documents/elements/drawing.rs index 7a66360..8b5a1c6 100644 --- a/docx-core/src/documents/elements/drawing.rs +++ b/docx-core/src/documents/elements/drawing.rs @@ -1,105 +1,31 @@ use super::*; -use serde::ser::{SerializeStruct, Serializer}; use serde::Serialize; use crate::documents::BuildXML; +use crate::types::*; use crate::xml_builder::*; -#[derive(Debug, Clone, Serialize, PartialEq)] +#[derive(Debug, Clone, Serialize, PartialEq, Default)] +#[serde(rename_all = "camelCase")] pub struct Drawing { - pub position_type: DrawingPositionType, - pub position_h: DrawingPosition, - pub position_v: DrawingPosition, pub data: Option, - // TODO: Old definition, remove later - pub children: Vec, } #[derive(Debug, Clone, Serialize, PartialEq)] +#[serde(rename_all = "camelCase")] pub enum DrawingData { Pic(Pic), } -// TODO: Old definition, remove later -#[derive(Debug, Clone, PartialEq)] -pub enum DrawingChild { - WpAnchor(WpAnchor), -} - -#[derive(Debug, Clone, Serialize, PartialEq)] -pub enum DrawingPositionType { - Anchor, - Inline { - dist_t: usize, - dist_b: usize, - dist_l: usize, - dist_r: usize, - }, -} - -impl Serialize for DrawingChild { - fn serialize(&self, serializer: S) -> Result - where - S: Serializer, - { - match *self { - DrawingChild::WpAnchor(ref s) => { - let mut t = serializer.serialize_struct("WpAnchor", 2)?; - t.serialize_field("type", "anchor")?; - t.serialize_field("data", s)?; - t.end() - } - } - } -} - impl Drawing { pub fn new() -> Drawing { Default::default() } - // TODO: Remove later - pub fn add_anchor(mut self, a: WpAnchor) -> Drawing { - self.children.push(DrawingChild::WpAnchor(a)); - self - } - pub fn pic(mut self, pic: Pic) -> Drawing { self.data = Some(DrawingData::Pic(pic)); self } - - pub fn floating(mut self) -> Drawing { - self.position_type = DrawingPositionType::Anchor; - self - } - - pub fn position_h(mut self, pos: DrawingPosition) -> Drawing { - self.position_h = pos; - self - } - - pub fn position_v(mut self, pos: DrawingPosition) -> Drawing { - self.position_v = pos; - self - } -} - -impl Default for Drawing { - fn default() -> Self { - Drawing { - position_type: DrawingPositionType::Inline { - dist_t: 0, - dist_b: 0, - dist_l: 0, - dist_r: 0, - }, - data: None, - position_v: DrawingPosition::Offset(0), - position_h: DrawingPosition::Offset(0), - children: vec![], - } - } } impl BuildXML for Box { @@ -107,29 +33,50 @@ impl BuildXML for Box { let b = XMLBuilder::new(); let mut b = b.open_drawing(); - if let DrawingPositionType::Inline { .. } = self.position_type { - b = b.open_wp_inline("0", "0", "0", "0") - } else { - b = b - .open_wp_anchor("0", "0", "0", "0", "0", "1", "0", "0", "1", "1905000") - .simple_pos("0", "0") - .open_position_h("page"); - if let DrawingPosition::Offset(x) = self.position_h { - let x = format!("{}", crate::types::emu::from_px(x as u32)); - b = b.pos_offset(&x).close(); - } - - b = b.open_position_v("page"); - - if let DrawingPosition::Offset(y) = self.position_v { - let y = format!("{}", crate::types::emu::from_px(y as u32)); - b = b.pos_offset(&y).close(); - } - } match &self.data { Some(DrawingData::Pic(p)) => { - let w = format!("{}", crate::types::emu::from_px(p.size.0)); - let h = format!("{}", crate::types::emu::from_px(p.size.1)); + if let DrawingPositionType::Inline { .. } = p.position_type { + b = b.open_wp_inline( + &format!("{}", p.dist_t), + &format!("{}", p.dist_b), + &format!("{}", p.dist_l), + &format!("{}", p.dist_r), + ) + } else { + b = b + .open_wp_anchor( + &format!("{}", p.dist_t), + &format!("{}", p.dist_b), + &format!("{}", p.dist_l), + &format!("{}", p.dist_r), + "0", + if p.simple_pos { "1" } else { "0" }, + "0", + "0", + if p.layout_in_cell { "1" } else { "0" }, + &format!("{}", p.relative_height), + ) + .simple_pos( + &format!("{}", p.simple_pos_x), + &format!("{}", p.simple_pos_y), + ) + .open_position_h(&format!("{}", p.relative_from_h)); + + if let DrawingPosition::Offset(x) = p.position_h { + let x = format!("{}", x as u32); + b = b.pos_offset(&x).close(); + } + + b = b.open_position_v(&format!("{}", p.relative_from_v)); + + if let DrawingPosition::Offset(y) = p.position_v { + let y = format!("{}", y as u32); + b = b.pos_offset(&y).close(); + } + } + + let w = format!("{}", p.size.0); + let h = format!("{}", p.size.1); b = b // Please see 20.4.2.7 extent (Drawing Object Size) // One inch equates to 914400 EMUs and a centimeter is 360000 @@ -149,7 +96,9 @@ impl BuildXML for Box { .close() .close(); } - None => {} + None => { + unimplemented!() + } } b.close().close().build() } diff --git a/docx-core/src/documents/elements/paragraph.rs b/docx-core/src/documents/elements/paragraph.rs index 3004493..7beaaee 100644 --- a/docx-core/src/documents/elements/paragraph.rs +++ b/docx-core/src/documents/elements/paragraph.rs @@ -353,6 +353,12 @@ impl BuildXML for Paragraph { } } +impl BuildXML for Box { + fn build(&self) -> Vec { + Paragraph::build(self) + } +} + #[cfg(test)] mod tests { diff --git a/docx-core/src/documents/elements/pic.rs b/docx-core/src/documents/elements/pic.rs index 2d1fcfc..95b6854 100644 --- a/docx-core/src/documents/elements/pic.rs +++ b/docx-core/src/documents/elements/pic.rs @@ -1,132 +1,249 @@ -use super::*; use image::*; use serde::Serialize; use crate::documents::*; +use crate::types::*; use crate::xml_builder::*; #[derive(Debug, Clone, Copy, Serialize, PartialEq)] +#[serde(rename_all = "camelCase")] pub enum PicAlign { - Left, - Right, - Bottom, - Top, + Left, + Right, + Bottom, + Top, } #[derive(Debug, Clone, Copy, Serialize, PartialEq)] +#[serde(rename_all = "camelCase")] pub enum DrawingPosition { - Offset(usize), - Align(PicAlign), + Offset(i32), + Align(PicAlign), } #[derive(Debug, Clone, Serialize, PartialEq)] #[serde(rename_all = "camelCase")] pub struct Pic { - pub id: usize, - pub image: Vec, - pub size: (u32, u32), - pub position_type: DrawingPositionType, - pub position_h: DrawingPosition, - pub position_v: DrawingPosition, + pub id: String, + // For writer only + #[serde(skip_serializing_if = "Vec::is_empty")] + pub image: Vec, + // unit is emu + pub size: (u32, u32), + pub position_type: DrawingPositionType, + /// Specifies that this object shall be positioned using the positioning information in the + /// simplePos child element (§20.4.2.13). This positioning, when specified, positions the + /// object on the page by placing its top left point at the x-y coordinates specified by that + /// element. + pub simple_pos: bool, + // unit is emu + pub simple_pos_x: i32, + pub simple_pos_y: i32, + /// Specifies how this DrawingML object behaves when its anchor is located in a table cell; + /// and its specified position would cause it to intersect with a table cell displayed in the + /// document. That behavior shall be as follows: + pub layout_in_cell: bool, + /// Specifies the relative Z-ordering of all DrawingML objects in this document. Each floating + /// DrawingML object shall have a Z-ordering value, which determines which object is + /// displayed when any two objects intersect. Higher values shall indicate higher Z-order; + /// lower values shall indicate lower Z-order. + pub relative_height: u32, + pub allow_overlap: bool, + pub position_h: DrawingPosition, + pub position_v: DrawingPosition, + pub relative_from_h: RelativeFromHType, + pub relative_from_v: RelativeFromVType, + /// Specifies the minimum distance which shall be maintained between the top edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents., + /// The distance shall be measured in EMUs (English Metric Units)., + pub dist_t: i32, + pub dist_b: i32, + pub dist_l: i32, + pub dist_r: i32, } impl Pic { - pub fn new(buf: Vec) -> Pic { - let id = generate_pic_id(); - let dimg = image::load_from_memory(&buf).unwrap(); - let size = dimg.dimensions(); - let mut image = vec![]; - dimg - .write_to(&mut image, ImageFormat::Png) - .expect("Unable to write"); - Self { - id, - image, - size, - position_type: DrawingPositionType::Inline { - dist_t: 0, - dist_b: 0, - dist_l: 0, - dist_r: 0, - }, - position_h: DrawingPosition::Offset(0), - position_v: DrawingPosition::Offset(0), + pub fn + new(buf: Vec) -> Pic { + let id = create_pic_rid(generate_pic_id()); + let dimg = image::load_from_memory(&buf).unwrap(); + let size = dimg.dimensions(); + let mut image = vec![]; + dimg.write_to(&mut image, ImageFormat::Png) + .expect("Unable to write"); + Self { + id, + image, + size: (from_px(size.0), from_px(size.1)), + position_type: DrawingPositionType::Inline, + simple_pos: false, + simple_pos_x: 0, + simple_pos_y: 0, + layout_in_cell: false, + relative_height: 190500, + allow_overlap: false, + position_v: DrawingPosition::Offset(0), + position_h: DrawingPosition::Offset(0), + relative_from_h: RelativeFromHType::default(), + relative_from_v: RelativeFromVType::default(), + dist_t: 0, + dist_b: 0, + dist_l: 0, + dist_r: 0, + } } - } - pub fn size(mut self, w_px: u32, h_px: u32) -> Pic { - self.size = (w_px, h_px); - self - } + pub(crate) fn with_empty() -> Pic { + Self { + id: "".to_string(), + image: vec![], + size: (0, 0), + position_type: DrawingPositionType::Inline, + simple_pos: false, + simple_pos_x: 0, + simple_pos_y: 0, + layout_in_cell: false, + relative_height: 190500, + allow_overlap: false, + position_v: DrawingPosition::Offset(0), + position_h: DrawingPosition::Offset(0), + relative_from_h: RelativeFromHType::default(), + relative_from_v: RelativeFromVType::default(), + dist_t: 0, + dist_b: 0, + dist_l: 0, + dist_r: 0, + } + } - pub fn floating(mut self) -> Pic { - self.position_type = DrawingPositionType::Anchor; - self - } + pub fn id(mut self, id: impl Into) -> Pic { + self.id = id.into(); + self + } - pub fn offset_x(mut self, x: usize) -> Pic { - self.position_h = DrawingPosition::Offset(x); - self - } + // unit is emu + pub fn size(mut self, w_emu: u32, h_emu: u32) -> Pic { + self.size = (w_emu, h_emu); + self + } - pub fn offset_y(mut self, y: usize) -> Pic { - self.position_v = DrawingPosition::Offset(y); - self - } + pub fn floating(mut self) -> Pic { + self.position_type = DrawingPositionType::Anchor; + self + } + + pub fn offset_x(mut self, x: i32) -> Pic { + self.position_h = DrawingPosition::Offset(x); + self + } + + pub fn offset_y(mut self, y: i32) -> Pic { + self.position_v = DrawingPosition::Offset(y); + self + } + + pub fn position_h(mut self, pos: DrawingPosition) -> Self { + self.position_h = pos; + self + } + + pub fn position_v(mut self, pos: DrawingPosition) -> Self { + self.position_v = pos; + self + } + + pub fn relative_from_h(mut self, t: RelativeFromHType) -> Self { + self.relative_from_h = t; + self + } + + pub fn relative_from_v(mut self, t: RelativeFromVType) -> Self { + self.relative_from_v = t; + self + } + + pub fn dist_t(mut self, v: i32) -> Self { + self.dist_t = v; + self + } + + pub fn dist_b(mut self, v: i32) -> Self { + self.dist_b = v; + self + } + + pub fn dist_l(mut self, v: i32) -> Self { + self.dist_l = v; + self + } + + pub fn dist_r(mut self, v: i32) -> Self { + self.dist_r = v; + self + } + + pub fn simple_pos(mut self, v: bool) -> Self { + self.simple_pos = v; + self + } + + pub fn relative_height(mut self, v: u32) -> Self { + self.relative_height = v; + self + } } impl BuildXML for Pic { - fn build(&self) -> Vec { - let b = XMLBuilder::new(); - let w = format!("{}", crate::types::emu::from_px(self.size.0)); - let h = format!("{}", crate::types::emu::from_px(self.size.1)); - b.open_pic("http://schemas.openxmlformats.org/drawingml/2006/picture") - .open_pic_nv_pic_pr() - .pic_c_nv_pr("0", "") - .open_pic_c_nv_pic_pr() - .a_pic_locks("1", "1") - .close() - .close() - .open_blip_fill() - .a_blip(&create_pic_rid(self.id)) - .a_src_rect() - .open_a_stretch() - .a_fill_rect() - .close() - .close() - .open_pic_sp_pr("auto") - .open_a_xfrm() - .a_off("0", "0") - .a_ext(&w, &h) - .close() - .open_a_prst_geom("rect") - .a_av_lst() - .close() - .close() - .close() - .build() - } + fn build(&self) -> Vec { + let b = XMLBuilder::new(); + let w = format!("{}", self.size.0); + let h = format!("{}", self.size.1); + b.open_pic("http://schemas.openxmlformats.org/drawingml/2006/picture") + .open_pic_nv_pic_pr() + .pic_c_nv_pr("0", "") + .open_pic_c_nv_pic_pr() + .a_pic_locks("1", "1") + .close() + .close() + .open_blip_fill() + .a_blip(&self.id) + .a_src_rect() + .open_a_stretch() + .a_fill_rect() + .close() + .close() + .open_pic_sp_pr("auto") + .open_a_xfrm() + .a_off("0", "0") + .a_ext(&w, &h) + .close() + .open_a_prst_geom("rect") + .a_av_lst() + .close() + .close() + .close() + .build() + } } #[cfg(test)] mod tests { - use super::*; - #[cfg(test)] - use pretty_assertions::assert_eq; - use std::str; + use super::*; + #[cfg(test)] + use pretty_assertions::assert_eq; + use std::str; - #[test] - fn test_pic_build() { - use std::io::Read; + #[test] + fn test_pic_build() { + use std::io::Read; - let mut img = std::fs::File::open("../images/cat_min.jpg").unwrap(); - let mut buf = Vec::new(); - let _ = img.read_to_end(&mut buf).unwrap(); - let b = Pic::new(buf).build(); - assert_eq!( - str::from_utf8(&b).unwrap(), - r#" + let mut img = std::fs::File::open("../images/cat_min.jpg").unwrap(); + let mut buf = Vec::new(); + let _ = img.read_to_end(&mut buf).unwrap(); + let b = Pic::new(buf).build(); + assert_eq!( + str::from_utf8(&b).unwrap(), + r#" @@ -150,6 +267,6 @@ mod tests { "# - ); - } + ); + } } diff --git a/docx-core/src/documents/elements/run.rs b/docx-core/src/documents/elements/run.rs index 6af7b1d..8b07795 100644 --- a/docx-core/src/documents/elements/run.rs +++ b/docx-core/src/documents/elements/run.rs @@ -3,7 +3,7 @@ use serde::ser::{SerializeStruct, Serializer}; use serde::Serialize; use crate::documents::BuildXML; -use crate::types::BreakType; +use crate::types::*; use crate::xml_builder::*; #[derive(Serialize, Debug, Clone, PartialEq)] @@ -137,25 +137,12 @@ impl Run { } pub fn add_image(mut self, pic: Pic) -> Run { - if pic.position_type == DrawingPositionType::Anchor { - let pos_h = pic.position_h; - let pos_v = pic.position_v; - self.children.push(RunChild::Drawing(Box::new( - Drawing::new() - .pic(pic) - .floating() - .position_h(pos_h) - .position_v(pos_v), - ))); - } else { - self.children - .push(RunChild::Drawing(Box::new(Drawing::new().pic(pic)))); - } + self.children + .push(RunChild::Drawing(Box::new(Drawing::new().pic(pic)))); self } - // TODO: Remove later - pub fn add_drawing(mut self, d: Drawing) -> Run { + pub(crate) fn add_drawing(mut self, d: Drawing) -> Run { self.children.push(RunChild::Drawing(Box::new(d))); self } diff --git a/docx-core/src/documents/elements/table.rs b/docx-core/src/documents/elements/table.rs index 4f321f6..cc9251a 100644 --- a/docx-core/src/documents/elements/table.rs +++ b/docx-core/src/documents/elements/table.rs @@ -128,6 +128,12 @@ impl BuildXML for Table { } } +impl BuildXML for Box
{ + fn build(&self) -> Vec { + Table::build(self) + } +} + impl Serialize for TableChild { fn serialize(&self, serializer: S) -> Result where diff --git a/docx-core/src/documents/footer.rs b/docx-core/src/documents/footer.rs index 2297123..73ac224 100644 --- a/docx-core/src/documents/footer.rs +++ b/docx-core/src/documents/footer.rs @@ -5,7 +5,7 @@ use super::*; use crate::documents::BuildXML; use crate::xml_builder::*; -#[derive(Debug, Clone, PartialEq, Serialize)] +#[derive(Debug, Clone, PartialEq, Serialize, Default)] #[serde(rename_all = "camelCase")] pub struct Footer { pub has_numbering: bool, @@ -21,7 +21,7 @@ impl Footer { if p.has_numbering { self.has_numbering = true } - self.children.push(FooterChild::Paragraph(p)); + self.children.push(FooterChild::Paragraph(Box::new(p))); self } @@ -29,24 +29,15 @@ impl Footer { if t.has_numbering { self.has_numbering = true } - self.children.push(FooterChild::Table(t)); + self.children.push(FooterChild::Table(Box::new(t))); self } } -impl Default for Footer { - fn default() -> Self { - Self { - children: vec![], - has_numbering: false, - } - } -} - #[derive(Debug, Clone, PartialEq)] pub enum FooterChild { - Paragraph(Paragraph), - Table(Table), + Paragraph(Box), + Table(Box
), } impl Serialize for FooterChild { diff --git a/docx-core/src/documents/header.rs b/docx-core/src/documents/header.rs index 546d7c3..1f42423 100644 --- a/docx-core/src/documents/header.rs +++ b/docx-core/src/documents/header.rs @@ -5,7 +5,7 @@ use super::*; use crate::documents::BuildXML; use crate::xml_builder::*; -#[derive(Debug, Clone, PartialEq, Serialize)] +#[derive(Debug, Clone, PartialEq, Serialize, Default)] #[serde(rename_all = "camelCase")] pub struct Header { pub has_numbering: bool, @@ -21,7 +21,7 @@ impl Header { if p.has_numbering { self.has_numbering = true } - self.children.push(HeaderChild::Paragraph(p)); + self.children.push(HeaderChild::Paragraph(Box::new(p))); self } @@ -29,24 +29,15 @@ impl Header { if t.has_numbering { self.has_numbering = true } - self.children.push(HeaderChild::Table(t)); + self.children.push(HeaderChild::Table(Box::new(t))); self } } -impl Default for Header { - fn default() -> Self { - Self { - children: vec![], - has_numbering: false, - } - } -} - #[derive(Debug, Clone, PartialEq)] pub enum HeaderChild { - Paragraph(Paragraph), - Table(Table), + Paragraph(Box), + Table(Box
), } impl Serialize for HeaderChild { diff --git a/docx-core/src/documents/mod.rs b/docx-core/src/documents/mod.rs index d764747..a19118e 100644 --- a/docx-core/src/documents/mod.rs +++ b/docx-core/src/documents/mod.rs @@ -68,7 +68,23 @@ pub use web_settings::*; pub use webextension::*; pub use xml_docx::*; -use serde::Serialize; +use serde::{ser, Serialize}; + +#[derive(Debug, Clone)] +pub struct Image(pub Vec); + +pub type ImageIdAndPath = (String, String); +pub type ImageIdAndBuf = (String, Vec); + +impl ser::Serialize for Image { + fn serialize(&self, serializer: S) -> Result + where + S: ser::Serializer, + { + let base64 = base64::display::Base64Display::with_config(&*self.0, base64::STANDARD); + serializer.collect_str(&base64) + } +} #[derive(Debug, Clone, Serialize)] #[serde(rename_all = "camelCase")] @@ -83,7 +99,7 @@ pub struct Docx { pub numberings: Numberings, pub settings: Settings, pub font_table: FontTable, - pub media: Vec<(usize, Vec)>, + pub media: Vec<(String, Vec)>, pub comments_extended: CommentsExtended, pub web_settings: WebSettings, pub taskpanes: Option, @@ -94,6 +110,8 @@ pub struct Docx { pub custom_item_rels: Vec, // reader only pub themes: Vec, + // reader only + pub images: Vec, } impl Default for Docx { @@ -133,6 +151,7 @@ impl Default for Docx { custom_item_props: vec![], custom_item_rels: vec![], themes: vec![], + images: vec![], } } } @@ -188,6 +207,12 @@ impl Docx { self } + // reader only + pub(crate) fn add_image(mut self, buf: Vec) -> Self { + self.images.push(Image(buf)); + self + } + pub fn comments(mut self, c: Comments) -> Self { self.comments = c; self @@ -429,7 +454,7 @@ impl Docx { self.update_comments(); - let tocs: Vec<(usize, TableOfContents)> = self + let tocs: Vec<(usize, Box)> = self .document .children .iter() @@ -453,12 +478,13 @@ impl Docx { for (i, toc) in tocs { if toc.items.is_empty() && toc.auto { - let children = update_document_by_toc(self.document.children, &self.styles, toc, i); + let children = + update_document_by_toc(self.document.children, &self.styles, *toc, i); self.document.children = children; } } - let (image_ids, images) = self.create_images(); + let (images, images_bufs) = self.create_images(); let web_extensions = self.web_extensions.iter().map(|ext| ext.build()).collect(); let custom_items = self.custom_items.iter().map(|xml| xml.build()).collect(); let custom_item_props = self.custom_item_props.iter().map(|p| p.build()).collect(); @@ -468,7 +494,7 @@ impl Docx { .map(|rel| rel.build()) .collect(); - self.document_rels.image_ids = image_ids; + self.document_rels.images = images; let headers: Vec> = self .document @@ -497,7 +523,7 @@ impl Docx { settings: self.settings.build(), font_table: self.font_table.build(), numberings: self.numberings.build(), - media: images, + media: images_bufs, headers, footers, comments_extended: self.comments_extended.build(), @@ -811,9 +837,9 @@ impl Docx { } // Traverse and collect images from document. - fn create_images(&mut self) -> (Vec, Vec<(usize, Vec)>) { - let mut image_ids: Vec = vec![]; - let mut images: Vec<(usize, Vec)> = vec![]; + fn create_images(&mut self) -> (Vec, Vec) { + let mut images: Vec<(String, String)> = vec![]; + let mut image_bufs: Vec<(String, Vec)> = vec![]; for child in &mut self.document.children { match child { @@ -823,9 +849,12 @@ impl Docx { for child in &mut run.children { if let RunChild::Drawing(d) = child { if let Some(DrawingData::Pic(pic)) = &mut d.data { - image_ids.push(pic.id); + images.push(( + pic.id.clone(), + format!("media/{}.jpg", pic.id), + )); let b = std::mem::take(&mut pic.image); - images.push((pic.id, b)); + image_bufs.push((pic.id.clone(), b)); } } } @@ -845,9 +874,12 @@ impl Docx { if let Some(DrawingData::Pic(pic)) = &mut d.data { - image_ids.push(pic.id); + images.push(( + pic.id.clone(), + format!("media/{}.jpg", pic.id), + )); let b = std::mem::take(&mut pic.image); - images.push((pic.id, b)); + image_bufs.push((pic.id.clone(), b)); } } } @@ -865,7 +897,7 @@ impl Docx { _ => {} } } - (image_ids, images) + (images, image_bufs) } } @@ -910,7 +942,8 @@ fn update_document_by_toc( .toc_key(&toc_key) .level(*heading_level), ); - paragraph = paragraph.wrap_by_bookmark(generate_bookmark_id(), &toc_key); + paragraph = + Box::new(paragraph.wrap_by_bookmark(generate_bookmark_id(), &toc_key)); } if let Some((_min, _max)) = toc.instr.tc_field_level_range { @@ -933,7 +966,8 @@ fn update_document_by_toc( .toc_key(&toc_key) .level(*level), ); - paragraph = paragraph.wrap_by_bookmark(generate_bookmark_id(), &toc_key); + paragraph = + Box::new(paragraph.wrap_by_bookmark(generate_bookmark_id(), &toc_key)); } } @@ -963,6 +997,6 @@ fn update_document_by_toc( let mut toc = toc; toc.items = items; - children[toc_index] = DocumentChild::TableOfContents(toc); + children[toc_index] = DocumentChild::TableOfContents(Box::new(toc)); children } diff --git a/docx-core/src/documents/xml_docx.rs b/docx-core/src/documents/xml_docx.rs index b11a02a..3655d8b 100644 --- a/docx-core/src/documents/xml_docx.rs +++ b/docx-core/src/documents/xml_docx.rs @@ -16,7 +16,7 @@ pub struct XMLDocx { pub settings: Vec, pub font_table: Vec, pub numberings: Vec, - pub media: Vec<(usize, Vec)>, + pub media: Vec<(String, Vec)>, pub headers: Vec>, pub footers: Vec>, pub comments_extended: Vec, diff --git a/docx-core/src/reader/drawing.rs b/docx-core/src/reader/drawing.rs index fee089b..42d650d 100644 --- a/docx-core/src/reader/drawing.rs +++ b/docx-core/src/reader/drawing.rs @@ -6,28 +6,220 @@ use std::str::FromStr; use xml::attribute::OwnedAttribute; use xml::reader::{EventReader, XmlEvent}; +use crate::{DrawingPositionType, RelativeFromHType, RelativeFromVType}; + use super::*; +fn read_position_h( + r: &mut EventReader, + attrs: &[OwnedAttribute], +) -> Result<(RelativeFromHType, i32), ReaderError> { + let mut offset: i32 = 0; + let mut relative_from_h = RelativeFromHType::default(); + + loop { + if let Some(h) = read(attrs, "relativeFrom") { + if let Ok(h) = RelativeFromHType::from_str(&h) { + relative_from_h = h; + } + } + let e = r.next(); + match e { + Ok(XmlEvent::Characters(c)) => { + if let Ok(p) = i32::from_str(&c) { + offset = p; + } + } + Ok(XmlEvent::EndElement { name, .. }) => { + let e = WpXMLElement::from_str(&name.local_name).unwrap(); + if e == WpXMLElement::PositionH { + return Ok((relative_from_h, offset)); + } + } + Err(_) => return Err(ReaderError::XMLReadError), + _ => {} + } + } +} + +fn read_position_v( + r: &mut EventReader, + attrs: &[OwnedAttribute], +) -> Result<(RelativeFromVType, i32), ReaderError> { + let mut offset: i32 = 0; + let mut relative_from_v = RelativeFromVType::default(); + loop { + if let Some(v) = read(attrs, "relativeFrom") { + if let Ok(v) = RelativeFromVType::from_str(&v) { + relative_from_v = v; + } + } + + let e = r.next(); + match e { + Ok(XmlEvent::Characters(c)) => { + if let Ok(p) = i32::from_str(&c) { + offset = p; + } + } + Ok(XmlEvent::EndElement { name, .. }) => { + let e = WpXMLElement::from_str(&name.local_name).unwrap(); + if e == WpXMLElement::PositionV { + return Ok((relative_from_v, offset)); + } + } + Err(_) => return Err(ReaderError::XMLReadError), + _ => {} + } + } +} + impl ElementReader for Drawing { fn read( r: &mut EventReader, _attrs: &[OwnedAttribute], ) -> Result { let mut drawing = Drawing::new(); + let mut drawing_position_type = DrawingPositionType::Inline; + + let mut simple_pos = false; + let mut simple_pos_x = 0; + let mut simple_pos_y = 0; + let mut layout_in_cell = true; + let mut relative_height = 0; + let mut position_h = 0; + let mut position_v = 0; + let mut relative_from_h = RelativeFromHType::default(); + let mut relative_from_v = RelativeFromVType::default(); + let mut allow_overlap = true; + let mut dist_t = 0; + let mut dist_b = 0; + let mut dist_l = 0; + let mut dist_r = 0; + loop { let e = r.next(); match e { Ok(XmlEvent::StartElement { name, attributes, .. }) => { - let e = WpXMLElement::from_str(&name.local_name) - .expect("should convert to XMLElement"); - match e { - WpXMLElement::Anchor => { - let anchor = WpAnchor::read(r, &attributes)?; - drawing = drawing.add_anchor(anchor); + // wp: + if let Ok(wpe) = WpXMLElement::from_str(&name.local_name) { + match wpe { + WpXMLElement::Anchor => { + drawing_position_type = DrawingPositionType::Anchor; + if let Some(v) = read(&attributes, "simplePos") { + if !is_false(&v) { + simple_pos = true; + } + } + if let Some(d) = read(&attributes, "distT") { + if let Ok(d) = i32::from_str(&d) { + dist_t = d; + } + } + if let Some(d) = read(&attributes, "distB") { + if let Ok(d) = i32::from_str(&d) { + dist_b = d; + } + } + if let Some(d) = read(&attributes, "distL") { + if let Ok(d) = i32::from_str(&d) { + dist_l = d; + } + } + if let Some(d) = read(&attributes, "distR") { + if let Ok(d) = i32::from_str(&d) { + dist_r = d; + } + } + if let Some(d) = read(&attributes, "layoutInCell") { + if is_false(&d) { + layout_in_cell = false; + } + } + if let Some(d) = read(&attributes, "relativeHeight") { + if let Ok(d) = u32::from_str(&d) { + relative_height = d; + } + } + if let Some(d) = read(&attributes, "allowOverlap") { + if is_false(&d) { + allow_overlap = false; + } + } + } + WpXMLElement::Inline => { + drawing_position_type = DrawingPositionType::Inline; + if let Some(d) = read(&attributes, "distT") { + if let Ok(d) = i32::from_str(&d) { + dist_t = d; + } + } + if let Some(d) = read(&attributes, "distB") { + if let Ok(d) = i32::from_str(&d) { + dist_b = d; + } + } + if let Some(d) = read(&attributes, "distL") { + if let Ok(d) = i32::from_str(&d) { + dist_l = d; + } + } + if let Some(d) = read(&attributes, "distR") { + if let Ok(d) = i32::from_str(&d) { + dist_r = d; + } + } + } + WpXMLElement::SimplePos => { + if let Some(x) = read(&attributes, "x") { + if let Ok(x) = i32::from_str(&x) { + simple_pos_x = x; + } + } + if let Some(y) = read(&attributes, "y") { + if let Ok(y) = i32::from_str(&y) { + simple_pos_y = y; + } + } + } + WpXMLElement::PositionH => { + if let Ok(p) = read_position_h(r, &attributes) { + relative_from_h = p.0; + position_h = p.1; + } + } + WpXMLElement::PositionV => { + if let Ok(p) = read_position_v(r, &attributes) { + relative_from_v = p.0; + position_v = p.1; + } + } + _ => {} + } + } + // pic: + if let Ok(PicXMLElement::Pic) = PicXMLElement::from_str(&name.local_name) { + if let Ok(mut pic) = Pic::read(r, &attributes) { + pic.position_type = drawing_position_type; + pic.simple_pos = simple_pos; + pic.simple_pos_x = simple_pos_x; + pic.simple_pos_y = simple_pos_y; + pic.layout_in_cell = layout_in_cell; + pic.relative_height = relative_height; + pic.allow_overlap = allow_overlap; + pic.dist_r = dist_r; + pic.dist_t = dist_t; + pic.dist_b = dist_b; + pic.dist_l = dist_l; + pic.dist_r = dist_r; + pic.relative_from_h = relative_from_h; + pic.relative_from_v = relative_from_v; + pic.position_v = DrawingPosition::Offset(position_v); + pic.position_h = DrawingPosition::Offset(position_h); + drawing = drawing.pic(pic); } - _ => {} } } Ok(XmlEvent::EndElement { name, .. }) => { diff --git a/docx-core/src/reader/mod.rs b/docx-core/src/reader/mod.rs index e217860..2d0e71c 100644 --- a/docx-core/src/reader/mod.rs +++ b/docx-core/src/reader/mod.rs @@ -32,6 +32,7 @@ mod numberings; mod paragraph; mod paragraph_property; mod paragraph_property_change; +mod pic; mod read_zip; mod rels; mod run; @@ -92,11 +93,14 @@ const FOOTER_TYPE: &str = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer"; const THEME_TYPE: &str = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"; +const IMAGE_TYPE: &str = + "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"; // 2011 const COMMENTS_EXTENDED_TYPE: &str = "http://schemas.microsoft.com/office/2011/relationships/commentsExtended"; -fn read_headers( +fn read_headers( + rels: &ReadDocumentRels, archive: &mut ZipArchive>, ) -> HashMap { @@ -403,5 +407,14 @@ pub fn read_docx(buf: &[u8]) -> Result { docx = docx.web_settings(web_settings); } } + + // Read media + let media = rels.find_target_path(IMAGE_TYPE); + if let Some(paths) = media { + if let Some((_, media)) = paths.get(0) { + let data = read_zip(&mut archive, media.to_str().expect("should have media"))?; + docx = docx.add_image(data); + } + } Ok(docx) } diff --git a/docx-core/src/reader/pic.rs b/docx-core/src/reader/pic.rs new file mode 100644 index 0000000..575aff8 --- /dev/null +++ b/docx-core/src/reader/pic.rs @@ -0,0 +1,75 @@ +#![allow(clippy::single_match)] + +use std::io::Read; +use std::str::FromStr; + +use xml::attribute::OwnedAttribute; +use xml::reader::{EventReader, XmlEvent}; + +use super::*; + +impl ElementReader for Pic { + fn read( + r: &mut EventReader, + _attrs: &[OwnedAttribute], + ) -> Result { + let mut pic = Pic::with_empty(); + loop { + let e = r.next(); + match e { + Ok(XmlEvent::StartElement { + name, attributes, .. + }) => { + if let Ok(e) = AXMLElement::from_str(&name.local_name) { + match e { + AXMLElement::Blip => { + if let Some(id) = read(&attributes, "embed") { + pic = pic.id(id) + } + } + AXMLElement::Off => { + let mut offset_x: i32 = 0; + let mut offset_y: i32 = 0; + if let Some(x) = read(&attributes, "x") { + if let Ok(x) = i32::from_str(&x) { + offset_x = x; + } + } + if let Some(y) = read(&attributes, "y") { + if let Ok(y) = i32::from_str(&y) { + offset_y = y; + } + } + pic = pic.offset_x(offset_x).offset_y(offset_y); + } + AXMLElement::Ext => { + let mut w: u32 = 0; + let mut h: u32 = 0; + if let Some(x) = read(&attributes, "cx") { + if let Ok(x) = u32::from_str(&x) { + w = x; + } + } + if let Some(y) = read(&attributes, "cy") { + if let Ok(y) = u32::from_str(&y) { + h = y; + } + } + pic = pic.size(w, h); + } + _ => {} + } + } + } + Ok(XmlEvent::EndElement { name, .. }) => { + let e = PicXMLElement::from_str(&name.local_name).unwrap(); + if e == PicXMLElement::Pic { + return Ok(pic); + } + } + Err(_) => return Err(ReaderError::XMLReadError), + _ => {} + } + } + } +} diff --git a/docx-core/src/reader/xml_element.rs b/docx-core/src/reader/xml_element.rs index 8b436a1..3846926 100644 --- a/docx-core/src/reader/xml_element.rs +++ b/docx-core/src/reader/xml_element.rs @@ -160,6 +160,7 @@ pub enum McXMLElement { #[derive(PartialEq, Debug)] pub enum WpXMLElement { + Inline, Anchor, SimplePos, PositionH, @@ -177,6 +178,7 @@ pub enum AXMLElement { Graphic, GraphicData, Xfrm, + Blip, Off, Ext, PrstGeom, @@ -216,6 +218,12 @@ pub enum VtXMLElement { Unsupported, } +#[derive(PartialEq, Debug)] +pub enum PicXMLElement { + Pic, + Unsupported, +} + impl FromStr for XMLElement { type Err = (); fn from_str(s: &str) -> Result { @@ -380,6 +388,7 @@ impl FromStr for WpXMLElement { fn from_str(s: &str) -> Result { match s { "anchor" => Ok(WpXMLElement::Anchor), + "inline" => Ok(WpXMLElement::Inline), "simplePos" => Ok(WpXMLElement::SimplePos), "positionH" => Ok(WpXMLElement::PositionH), "posOffset" => Ok(WpXMLElement::PosOffset), @@ -400,6 +409,7 @@ impl FromStr for AXMLElement { "graphic" => Ok(AXMLElement::Graphic), "graphicData" => Ok(AXMLElement::GraphicData), "xfrm" => Ok(AXMLElement::Xfrm), + "blip" => Ok(AXMLElement::Blip), "off" => Ok(AXMLElement::Off), "ext" => Ok(AXMLElement::Ext), "prstGeom" => Ok(AXMLElement::PrstGeom), @@ -455,6 +465,16 @@ impl FromStr for VtXMLElement { } } +impl FromStr for PicXMLElement { + type Err = (); + fn from_str(s: &str) -> Result { + match s { + "pic" => Ok(PicXMLElement::Pic), + _ => Ok(PicXMLElement::Unsupported), + } + } +} + pub trait ElementReader { fn read(r: &mut EventReader, attrs: &[OwnedAttribute]) -> Result where diff --git a/docx-core/src/types/drawing_position.rs b/docx-core/src/types/drawing_position.rs new file mode 100644 index 0000000..dae9015 --- /dev/null +++ b/docx-core/src/types/drawing_position.rs @@ -0,0 +1,11 @@ +use serde::Serialize; + +use wasm_bindgen::prelude::*; + +#[wasm_bindgen] +#[derive(Debug, Clone, Copy, Serialize, PartialEq)] +#[serde(rename_all = "camelCase")] +pub enum DrawingPositionType { + Anchor, + Inline, +} diff --git a/docx-core/src/types/emu.rs b/docx-core/src/types/emu.rs index 34a6460..c45f48f 100644 --- a/docx-core/src/types/emu.rs +++ b/docx-core/src/types/emu.rs @@ -1,4 +1,5 @@ // One inch equates to 914400 EMUs and a centimeter is 360000 one pixel equates to 9525 +// https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html type Emu = u32; pub fn to_px(v: Emu) -> u32 { diff --git a/docx-core/src/types/mod.rs b/docx-core/src/types/mod.rs index 00e9ada..6a08d79 100644 --- a/docx-core/src/types/mod.rs +++ b/docx-core/src/types/mod.rs @@ -3,6 +3,7 @@ pub mod border_position; pub mod border_type; pub mod break_type; pub mod doc_grid_type; +pub mod drawing_position; pub mod emu; pub mod errors; pub mod field_char_type; @@ -12,6 +13,7 @@ pub mod level_suffix_type; pub mod line_spacing_type; pub mod page_margin; pub mod page_orientation_type; +pub mod relative_from_type; pub mod section_type; pub mod shd_type; pub mod special_indent_type; @@ -31,6 +33,7 @@ pub use border_position::*; pub use border_type::*; pub use break_type::*; pub use doc_grid_type::*; +pub use drawing_position::*; pub use emu::*; pub use errors::*; pub use field_char_type::*; @@ -40,6 +43,7 @@ pub use level_suffix_type::*; pub use line_spacing_type::*; pub use page_margin::*; pub use page_orientation_type::*; +pub use relative_from_type::*; pub use section_type::*; pub use shd_type::*; pub use special_indent_type::*; diff --git a/docx-core/src/types/relative_from_type.rs b/docx-core/src/types/relative_from_type.rs new file mode 100644 index 0000000..e080496 --- /dev/null +++ b/docx-core/src/types/relative_from_type.rs @@ -0,0 +1,132 @@ +use std::fmt; +use wasm_bindgen::prelude::*; + +use serde::Serialize; + +use super::errors; +use std::str::FromStr; + +// @See: 20.4.3.4 ST_RelFromH (Horizontal Relative Positioning) +#[wasm_bindgen] +#[derive(Debug, Clone, Copy, PartialEq, Serialize)] +#[serde(rename_all = "camelCase")] +pub enum RelativeFromHType { + /// Specifies that the horizontal positioning shall be + /// relative to the position of the anchor within its run + /// content. + Character, + /// Specifies that the horizontal positioning shall be + /// relative to the extents of the column which contains its + /// anchor. + Column, + /// Specifies that the horizontal positioning shall be + /// relative to the inside margin of the current page (the + /// left margin on odd pages, right on even pages). + InsideMargin, + /// Specifies that the horizontal positioning shall be + /// relative to the left margin of the page. + LeftMargin, + /// Specifies that the horizontal positioning shall be + /// relative to the page margins. + Margin, + /// Specifies that the horizontal positioning shall be + /// relative to the outside margin of the current page (the + /// right margin on odd pages, left on even pages). + OutsizeMargin, + /// Specifies that the horizontal positioning shall be + /// relative to the edge of the page. + Page, + /// Specifies that the horizontal positioning shall be + /// relative to the right margin of the page. + RightMargin, +} + +impl Default for RelativeFromHType { + fn default() -> Self { + Self::Margin + } +} + +impl fmt::Display for RelativeFromHType { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match *self { + RelativeFromHType::Character => write!(f, "character"), + RelativeFromHType::Column => write!(f, "column"), + RelativeFromHType::InsideMargin => write!(f, "insideMargin"), + RelativeFromHType::LeftMargin => write!(f, "leftMargin"), + RelativeFromHType::Margin => write!(f, "margin"), + RelativeFromHType::OutsizeMargin => write!(f, "outsizeMargin"), + RelativeFromHType::Page => write!(f, "page"), + RelativeFromHType::RightMargin => write!(f, "rightMargin"), + } + } +} + +impl FromStr for RelativeFromHType { + type Err = errors::TypeError; + fn from_str(s: &str) -> Result { + match s { + "character" => Ok(RelativeFromHType::Character), + "column" => Ok(RelativeFromHType::Column), + "insideMargin" => Ok(RelativeFromHType::InsideMargin), + "leftMargin" => Ok(RelativeFromHType::LeftMargin), + "margin" => Ok(RelativeFromHType::Margin), + "outsizeMargin" => Ok(RelativeFromHType::OutsizeMargin), + "page" => Ok(RelativeFromHType::Page), + "rightMargin" => Ok(RelativeFromHType::RightMargin), + _ => Ok(RelativeFromHType::Margin), + } + } +} + +#[wasm_bindgen] +#[derive(Debug, Clone, Copy, PartialEq, Serialize)] +#[serde(rename_all = "camelCase")] +pub enum RelativeFromVType { + BottomMargin, + InsideMargin, + Line, + Margin, + OutsizeMargin, + Page, + Paragraph, + TopMargin, +} + +impl Default for RelativeFromVType { + fn default() -> Self { + Self::Margin + } +} + +impl fmt::Display for RelativeFromVType { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match *self { + RelativeFromVType::BottomMargin => write!(f, "bottomMargin"), + RelativeFromVType::InsideMargin => write!(f, "insideMargin"), + RelativeFromVType::Line => write!(f, "line"), + RelativeFromVType::Margin => write!(f, "margin"), + RelativeFromVType::OutsizeMargin => write!(f, "outsideMargin"), + RelativeFromVType::Page => write!(f, "page"), + RelativeFromVType::Paragraph => write!(f, "paragraph"), + RelativeFromVType::TopMargin => write!(f, "topMargin"), + } + } +} + +impl FromStr for RelativeFromVType { + type Err = errors::TypeError; + fn from_str(s: &str) -> Result { + match s { + "bottomMargin" => Ok(RelativeFromVType::BottomMargin), + "insideMargin" => Ok(RelativeFromVType::InsideMargin), + "line" => Ok(RelativeFromVType::Line), + "margin" => Ok(RelativeFromVType::Margin), + "outsizeMargin" => Ok(RelativeFromVType::OutsizeMargin), + "page" => Ok(RelativeFromVType::Page), + "paragraph" => Ok(RelativeFromVType::Paragraph), + "topMargin" => Ok(RelativeFromVType::TopMargin), + _ => Ok(RelativeFromVType::Margin), + } + } +} diff --git a/docx-core/tests/snapshots/lib__reader__line_spacing.snap b/docx-core/tests/snapshots/lib__reader__line_spacing.snap index 50e9b55..5f0205e 100644 --- a/docx-core/tests/snapshots/lib__reader__line_spacing.snap +++ b/docx-core/tests/snapshots/lib__reader__line_spacing.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 \"/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"atLeast\",\n \"line\": 300\n },\n \"tabs\": []\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 \"characterSpacing\": 100\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 \"lineSpacing\": {\n \"lineRule\": \"exact\",\n \"after\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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\": null,\n \"docVars\": [],\n \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"atLeast\",\n \"line\": 300\n },\n \"tabs\": []\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 \"characterSpacing\": 100\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 \"lineSpacing\": {\n \"lineRule\": \"exact\",\n \"after\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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\": null,\n \"docVars\": [],\n \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_bom.snap b/docx-core/tests/snapshots/lib__reader__read_bom.snap index ea55ac0..ed0db8b 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_bookmark.snap b/docx-core/tests/snapshots/lib__reader__read_bookmark.snap index dfd0117..5356eed 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_comment.snap b/docx-core/tests/snapshots/lib__reader__read_comment.snap index a14ef62..7cd33d0 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_decoration.snap b/docx-core/tests/snapshots/lib__reader__read_decoration.snap index b2ea605..7005ef8 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"bold\": true,\n \"boldCs\": true\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"color\": \"CE181E\",\n \"bold\": false,\n \"boldCs\": false\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\"\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 \"color\": \"000000\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true\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 \"color\": \"000000\"\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 \"color\": \"000000\"\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"bold\": true,\n \"boldCs\": true\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"color\": \"CE181E\",\n \"bold\": false,\n \"boldCs\": false\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\"\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 \"color\": \"000000\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true\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 \"color\": \"000000\"\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 \"color\": \"000000\"\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 154cd50..eba0f7f 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 \"/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 },\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 \"tabs\": []\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 \"fonts\": {}\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\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 \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 },\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 \"tabs\": []\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 \"fonts\": {}\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\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 \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 2e710f1..a196d00 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\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 \"fonts\": {\n \"ascii\": \"游明朝\",\n \"hiAnsi\": \"游明朝\",\n \"eastAsia\": \"游明朝\",\n \"cs\": \"Times New Roman\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\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 \"fonts\": {\n \"ascii\": \"游明朝\",\n \"hiAnsi\": \"游明朝\",\n \"eastAsia\": \"游明朝\",\n \"cs\": \"Times New Roman\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_hello.snap b/docx-core/tests/snapshots/lib__reader__read_hello.snap index c524ce3..66cc2c3 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 \"/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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 e8310ca..95e751c 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"highlight\": \"yellow\"\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 \"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 \"underline\": \"single\"\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"highlight\": \"yellow\"\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 \"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 \"underline\": \"single\"\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_history.snap b/docx-core/tests/snapshots/lib__reader__read_history.snap index 3ac847a..21a655f 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 ef7239a..da3a028 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\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 \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\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 \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\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 416b1cc..0f93a67 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"lineSpacing\": {\n \"before\": 0,\n \"after\": 0\n },\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"lineSpacing\": {\n \"before\": 0,\n \"after\": 0\n },\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 675f9af..42a8a8c 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_numbering.snap b/docx-core/tests/snapshots/lib__reader__read_numbering.snap index 216ab73..ac9516e 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 1526b1c..06ce3f1 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 558ddb7..1cb2514 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 \"/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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\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 \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 ],\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId6\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\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 \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 ],\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId6\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 0224626..cdf1b99 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/lib__reader__read_textbox.snap b/docx-core/tests/snapshots/lib__reader__read_textbox.snap index 3e73844..0497edb 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"tabs\": []\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"data\": null\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__line_spacing.snap b/docx-core/tests/snapshots/reader__line_spacing.snap index 50e9b55..5f0205e 100644 --- a/docx-core/tests/snapshots/reader__line_spacing.snap +++ b/docx-core/tests/snapshots/reader__line_spacing.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 \"/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"atLeast\",\n \"line\": 300\n },\n \"tabs\": []\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 \"characterSpacing\": 100\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 \"lineSpacing\": {\n \"lineRule\": \"exact\",\n \"after\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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\": null,\n \"docVars\": [],\n \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"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 \"lineSpacing\": {\n \"lineRule\": \"atLeast\",\n \"line\": 300\n },\n \"tabs\": []\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 \"characterSpacing\": 100\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 \"lineSpacing\": {\n \"lineRule\": \"exact\",\n \"after\": 300,\n \"line\": 300\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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\": null,\n \"docVars\": [],\n \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_bom.snap b/docx-core/tests/snapshots/reader__read_bom.snap index ea55ac0..ed0db8b 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_bookmark.snap b/docx-core/tests/snapshots/reader__read_bookmark.snap index dfd0117..5356eed 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_comment.snap b/docx-core/tests/snapshots/reader__read_comment.snap index a14ef62..7cd33d0 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n }\n ],\n \"parentCommentId\": null\n }\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 0\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"vertAlign\": \"baseline\",\n \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"characterSpacing\": 0,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n },\n \"strike\": false\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_decoration.snap b/docx-core/tests/snapshots/reader__read_decoration.snap index b2ea605..7005ef8 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"bold\": true,\n \"boldCs\": true\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"color\": \"CE181E\",\n \"bold\": false,\n \"boldCs\": false\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\"\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 \"color\": \"000000\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true\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 \"color\": \"000000\"\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 \"color\": \"000000\"\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"bold\": true,\n \"boldCs\": true\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"color\": \"CE181E\",\n \"bold\": false,\n \"boldCs\": false\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"!!\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\"\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 \"color\": \"000000\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": true,\n \"italicCs\": true\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 \"color\": \"000000\"\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 \"color\": \"000000\"\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"highlight\": \"yellow\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\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 \"color\": \"000000\",\n \"italic\": false,\n \"italicCs\": false\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 600,\n \"charSpace\": 32768\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_extended_comments.snap b/docx-core/tests/snapshots/reader__read_extended_comments.snap index 154cd50..eba0f7f 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 \"/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 },\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 \"tabs\": []\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 \"fonts\": {}\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\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 \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 0\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {\n \"eastAsia\": \"MS 明朝\"\n }\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 \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 1\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"bookmarkEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n },\n {\n \"type\": \"commentRangeEnd\",\n \"data\": {\n \"id\": 2\n }\n },\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\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 },\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 \"tabs\": []\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 \"fonts\": {}\n },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"fonts\": {}\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 \"tabs\": []\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 \"fonts\": {}\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 \"tabs\": []\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\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 \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_from_doc.snap b/docx-core/tests/snapshots/reader__read_from_doc.snap index 2e710f1..a196d00 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\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 \"fonts\": {\n \"ascii\": \"游明朝\",\n \"hiAnsi\": \"游明朝\",\n \"eastAsia\": \"游明朝\",\n \"cs\": \"Times New Roman\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\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 \"fonts\": {\n \"ascii\": \"游明朝\",\n \"hiAnsi\": \"游明朝\",\n \"eastAsia\": \"游明朝\",\n \"cs\": \"Times New Roman\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Linux Libertine G\",\n \"cs\": \"Linux Libertine G\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000009\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000a\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000b\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000c\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000d\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000e\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0000000f\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000010\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000011\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000012\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000013\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000014\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000015\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000016\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000017\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000018\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000019\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\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 \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style15\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": 0\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_hello.snap b/docx-core/tests/snapshots/reader__read_hello.snap index c524ce3..66cc2c3 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 \"/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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId4\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 e8310ca..95e751c 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"highlight\": \"yellow\"\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 \"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 \"underline\": \"single\"\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"highlight\": \"yellow\"\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 \"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 \"underline\": \"single\"\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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_history.snap b/docx-core/tests/snapshots/reader__read_history.snap index 3ac847a..21a655f 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 ef7239a..da3a028 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\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 \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"Normal\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"448AC37F\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"564F799D\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\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 \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\n },\n \"style\": \"Normal\",\n \"tabs\": []\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 \"fonts\": {\n \"ascii\": \"Century\",\n \"hiAnsi\": \"Century\",\n \"eastAsia\": \"Century\",\n \"cs\": \"Century\"\n }\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 \"style\": \"Normal\",\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"Arial\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS ゴシック\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"Century\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"MS 明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"宋体\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_insert_table.snap b/docx-core/tests/snapshots/reader__read_insert_table.snap index 416b1cc..0f93a67 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"lineSpacing\": {\n \"before\": 0,\n \"after\": 0\n },\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"left\",\n \"lineSpacing\": {\n \"before\": 0,\n \"after\": 0\n },\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"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 \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"strike\": false\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 \"underline\": \"none\",\n \"bold\": false,\n \"boldCs\": false,\n \"italic\": false,\n \"italicCs\": false,\n \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\"\n },\n \"ins\": {\n \"children\": [],\n \"author\": \"不明な作成者\",\n \"date\": \"2020-02-28T19:05:33Z\"\n },\n \"strike\": false\n },\n \"style\": \"Style19\",\n \"alignment\": \"left\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"alignment\": \"left\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 100,\n \"charSpace\": 0\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_lvl_override.snap b/docx-core/tests/snapshots/reader__read_lvl_override.snap index 675f9af..42a8a8c 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"indent\": {\n \"start\": 840,\n \"startChars\": 400,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"orld\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\n },\n \"hasNumbering\": true\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"59ED53E4\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"0037D9B1\",\n \"children\": [],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Foo\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"style\": \"a3\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"indent\": {\n \"start\": null,\n \"startChars\": 0,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_numbering.snap b/docx-core/tests/snapshots/reader__read_numbering.snap index 216ab73..ac9516e 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 1,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 2,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"Hello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"World\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"numberingProperty\": {\n \"id\": 3,\n \"level\": 0\n },\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 1526b1c..06ce3f1 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"children\": [\n {\n \"type\": \"break\",\n \"data\": {\n \"breakType\": \"page\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"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 \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_table_docx.snap b/docx-core/tests/snapshots/reader__read_table_docx.snap index 558ddb7..1cb2514 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 \"/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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\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 \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 ],\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId6\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/footer1.xml\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 1,\n \"footer_count\": 1\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 1,\n \"footerCount\": 1\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 }\n },\n \"styles\": [\n {\n \"styleId\": \"Title\",\n \"name\": \"Title\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {\n \"sz\": 56,\n \"szCs\": 56\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\",\n \"italic\": true,\n \"italicCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"2E74B5\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"1F4D78\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"color\": \"0563C1\",\n \"underline\": \"single\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"vertAlign\": \"superscript\"\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"after\": 0,\n \"line\": 240\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\n },\n \"hasNumbering\": false\n }\n },\n {\n \"type\": \"table\",\n \"data\": {\n \"rows\": [\n {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\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 \"alignment\": \"left\",\n \"indent\": {\n \"start\": 0,\n \"startChars\": null,\n \"end\": null,\n \"specialIndent\": null,\n \"hangingChars\": null,\n \"firstLineChars\": null\n },\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 ],\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 ],\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 },\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"default\",\n \"linePitch\": 360,\n \"charSpace\": null\n },\n \"headerReference\": {\n \"headerType\": \"default\",\n \"id\": \"rId5\"\n },\n \"header\": {\n \"hasNumbering\": false,\n \"children\": []\n },\n \"footerReference\": {\n \"footerType\": \"default\",\n \"id\": \"rId6\"\n },\n \"footer\": {\n \"hasNumbering\": false,\n \"children\": []\n }\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"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 \"tabs\": []\n },\n \"runProperty\": {},\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\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 0224626..cdf1b99 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": []\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\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 \"fonts\": {\n \"ascii\": \"Liberation Serif\",\n \"hiAnsi\": \"Liberation Serif\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"ascii\": \"Liberation Sans\",\n \"hiAnsi\": \"Liberation Sans\",\n \"eastAsia\": \"Noto Sans CJK JP\",\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 240,\n \"after\": 120\n },\n \"keepNext\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"lineRule\": \"auto\",\n \"before\": 0,\n \"after\": 140,\n \"line\": 276\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"italic\": true,\n \"italicCs\": true,\n \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"lineSpacing\": {\n \"before\": 120,\n \"after\": 120\n },\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"fonts\": {\n \"cs\": \"Lohit Devanagari\"\n }\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"bold\": true,\n \"boldCs\": true\n },\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"center\",\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000001\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000002\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000003\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000004\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000005\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 {\n \"type\": \"tableRow\",\n \"data\": {\n \"cells\": [\n {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000006\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000007\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 {\n \"type\": \"tableCell\",\n \"data\": {\n \"children\": [\n {\n \"type\": \"paragraph\",\n \"data\": {\n \"id\": \"00000008\",\n \"children\": [\n {\n \"type\": \"run\",\n \"data\": {\n \"runProperty\": {},\n \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Style19\",\n \"tabs\": []\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 ],\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 ],\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 \"children\": []\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"style\": \"Normal\",\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [],\n \"images\": []\n}" diff --git a/docx-core/tests/snapshots/reader__read_textbox.snap b/docx-core/tests/snapshots/reader__read_textbox.snap index 3e73844..0497edb 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 \"/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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"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 \"fonts\": {\n \"hint\": \"eastAsia\"\n }\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 \"children\": [\n {\n \"type\": \"text\",\n \"data\": {\n \"preserveSpace\": true,\n \"text\": \"ello\"\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {\n \"fonts\": {\n \"hint\": \"eastAsia\"\n }\n },\n \"tabs\": []\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 \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\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/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 \"web_extension_count\": 1,\n \"custom_xml_count\": 1,\n \"header_count\": 0,\n \"footer_count\": 0\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 \"images\": [],\n \"customXmlCount\": 0,\n \"headerCount\": 0,\n \"footerCount\": 0\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 \"fonts\": {\n \"asciiTheme\": \"minorHAnsi\",\n \"hiAnsiTheme\": \"minorHAnsi\",\n \"eastAsiaTheme\": \"minorEastAsia\",\n \"csTheme\": \"minorBidi\"\n }\n }\n }\n },\n \"styles\": [\n {\n \"styleId\": \"a\",\n \"name\": \"Normal\",\n \"styleType\": \"paragraph\",\n \"runProperty\": {},\n \"paragraphProperty\": {\n \"runProperty\": {},\n \"alignment\": \"both\",\n \"widowControl\": true,\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"paragraphProperty\": {\n \"runProperty\": {},\n \"tabs\": []\n },\n \"tableProperty\": {\n \"width\": {\n \"width\": 0,\n \"widthType\": \"auto\"\n },\n \"justification\": \"left\",\n \"borders\": {\n \"top\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"top\",\n \"space\": 0\n },\n \"left\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"left\",\n \"space\": 0\n },\n \"bottom\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"bottom\",\n \"space\": 0\n },\n \"right\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"right\",\n \"space\": 0\n },\n \"insideH\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideH\",\n \"space\": 0\n },\n \"insideV\": {\n \"borderType\": \"single\",\n \"size\": 2,\n \"color\": \"000000\",\n \"position\": \"insideV\",\n \"space\": 0\n }\n },\n \"margins\": {\n \"top\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"left\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n },\n \"bottom\": {\n \"val\": 0,\n \"widthType\": \"dxa\"\n },\n \"right\": {\n \"val\": 55,\n \"widthType\": \"dxa\"\n }\n },\n \"indent\": null,\n \"style\": null,\n \"layout\": null\n },\n \"tableCellProperty\": {\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 \"children\": [\n {\n \"type\": \"drawing\",\n \"data\": {\n \"data\": null\n }\n }\n ]\n }\n }\n ],\n \"property\": {\n \"runProperty\": {},\n \"tabs\": []\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 \"titlePg\": false,\n \"docGrid\": {\n \"gridType\": \"lines\",\n \"linePitch\": 360,\n \"charSpace\": null\n }\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 \"evenAndOddHeaders\": false\n },\n \"fontTable\": {},\n \"media\": [],\n \"commentsExtended\": {\n \"children\": []\n },\n \"webSettings\": {\n \"divs\": []\n },\n \"taskpanes\": null,\n \"taskpanesRels\": {\n \"rels\": []\n },\n \"webExtensions\": [],\n \"customItems\": [],\n \"customItemProps\": [],\n \"customItemRels\": [],\n \"themes\": [\n {\n \"fontSchema\": {\n \"majorFont\": {\n \"latin\": \"游ゴシック Light\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游ゴシック Light\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线 Light\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Angsana New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"MoolBoran\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Times New Roman\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n },\n \"minorFont\": {\n \"latin\": \"游明朝\",\n \"ea\": \"\",\n \"cs\": \"\",\n \"fonts\": [\n {\n \"script\": \"Jpan\",\n \"typeface\": \"游明朝\"\n },\n {\n \"script\": \"Hang\",\n \"typeface\": \"맑은 고딕\"\n },\n {\n \"script\": \"Hans\",\n \"typeface\": \"等线\"\n },\n {\n \"script\": \"Hant\",\n \"typeface\": \"新細明體\"\n },\n {\n \"script\": \"Arab\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Hebr\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Thai\",\n \"typeface\": \"Cordia New\"\n },\n {\n \"script\": \"Ethi\",\n \"typeface\": \"Nyala\"\n },\n {\n \"script\": \"Beng\",\n \"typeface\": \"Vrinda\"\n },\n {\n \"script\": \"Gujr\",\n \"typeface\": \"Shruti\"\n },\n {\n \"script\": \"Khmr\",\n \"typeface\": \"DaunPenh\"\n },\n {\n \"script\": \"Knda\",\n \"typeface\": \"Tunga\"\n },\n {\n \"script\": \"Guru\",\n \"typeface\": \"Raavi\"\n },\n {\n \"script\": \"Cans\",\n \"typeface\": \"Euphemia\"\n },\n {\n \"script\": \"Cher\",\n \"typeface\": \"Plantagenet Cherokee\"\n },\n {\n \"script\": \"Yiii\",\n \"typeface\": \"Microsoft Yi Baiti\"\n },\n {\n \"script\": \"Tibt\",\n \"typeface\": \"Microsoft Himalaya\"\n },\n {\n \"script\": \"Thaa\",\n \"typeface\": \"MV Boli\"\n },\n {\n \"script\": \"Deva\",\n \"typeface\": \"Mangal\"\n },\n {\n \"script\": \"Telu\",\n \"typeface\": \"Gautami\"\n },\n {\n \"script\": \"Taml\",\n \"typeface\": \"Latha\"\n },\n {\n \"script\": \"Syrc\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Orya\",\n \"typeface\": \"Kalinga\"\n },\n {\n \"script\": \"Mlym\",\n \"typeface\": \"Kartika\"\n },\n {\n \"script\": \"Laoo\",\n \"typeface\": \"DokChampa\"\n },\n {\n \"script\": \"Sinh\",\n \"typeface\": \"Iskoola Pota\"\n },\n {\n \"script\": \"Mong\",\n \"typeface\": \"Mongolian Baiti\"\n },\n {\n \"script\": \"Viet\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Uigh\",\n \"typeface\": \"Microsoft Uighur\"\n },\n {\n \"script\": \"Geor\",\n \"typeface\": \"Sylfaen\"\n },\n {\n \"script\": \"Armn\",\n \"typeface\": \"Arial\"\n },\n {\n \"script\": \"Bugi\",\n \"typeface\": \"Leelawadee UI\"\n },\n {\n \"script\": \"Bopo\",\n \"typeface\": \"Microsoft JhengHei\"\n },\n {\n \"script\": \"Java\",\n \"typeface\": \"Javanese Text\"\n },\n {\n \"script\": \"Lisu\",\n \"typeface\": \"Segoe UI\"\n },\n {\n \"script\": \"Mymr\",\n \"typeface\": \"Myanmar Text\"\n },\n {\n \"script\": \"Nkoo\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Olck\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Osma\",\n \"typeface\": \"Ebrima\"\n },\n {\n \"script\": \"Phag\",\n \"typeface\": \"Phagspa\"\n },\n {\n \"script\": \"Syrn\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syrj\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Syre\",\n \"typeface\": \"Estrangelo Edessa\"\n },\n {\n \"script\": \"Sora\",\n \"typeface\": \"Nirmala UI\"\n },\n {\n \"script\": \"Tale\",\n \"typeface\": \"Microsoft Tai Le\"\n },\n {\n \"script\": \"Talu\",\n \"typeface\": \"Microsoft New Tai Lue\"\n },\n {\n \"script\": \"Tfng\",\n \"typeface\": \"Ebrima\"\n }\n ]\n }\n }\n }\n ],\n \"images\": []\n}" diff --git a/docx-wasm/test/__snapshots__/index.test.js.snap b/docx-wasm/test/__snapshots__/index.test.js.snap index e49a564..35cd460 100644 --- a/docx-wasm/test/__snapshots__/index.test.js.snap +++ b/docx-wasm/test/__snapshots__/index.test.js.snap @@ -542,9 +542,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -1463,9 +1464,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 1, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -1927,9 +1929,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -4433,9 +4436,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -5798,9 +5802,10 @@ Object { "hasComments": true, "hasNumberings": false, "headerCount": 1, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -6176,9 +6181,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -7634,9 +7640,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 3, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -10789,9 +10796,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -11594,6 +11602,1144 @@ Object { } `; +exports[`reader should read image inline and anchor docx 1`] = ` +Object { + "comments": Object { + "comments": Array [], + }, + "commentsExtended": Object { + "children": Array [], + }, + "contentType": Object { + "custom_xml_count": 1, + "footer_count": 0, + "header_count": 0, + "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/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", + }, + "web_extension_count": 1, + }, + "customItemProps": Array [], + "customItemRels": Array [], + "customItems": Array [], + "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 [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "H", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ello inline ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "fonts": Object { + "ascii": "Apple Color Emoji", + "cs": "Apple Color Emoji", + "eastAsia": "Apple Color Emoji", + "hiAnsi": "Apple Color Emoji", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "0D9A7D74", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "data": Object { + "pic": Object { + "allowOverlap": true, + "distB": 0, + "distL": 0, + "distR": 0, + "distT": 0, + "id": "rId4", + "layoutInCell": true, + "positionH": Object { + "offset": 0, + }, + "positionType": "inline", + "positionV": Object { + "offset": 0, + }, + "relativeFromH": "margin", + "relativeFromV": "margin", + "relativeHeight": 0, + "simplePos": false, + "simplePosX": 0, + "simplePosY": 0, + "size": Array [ + 1275711, + 1699947, + ], + }, + }, + }, + "type": "drawing", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "4784B658", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "7D83C768", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "data": Object { + "pic": Object { + "allowOverlap": true, + "distB": 0, + "distL": 114300, + "distR": 114300, + "distT": 0, + "id": "rId5", + "layoutInCell": true, + "positionH": Object { + "offset": 798195, + }, + "positionType": "anchor", + "positionV": Object { + "offset": 2510155, + }, + "relativeFromH": "margin", + "relativeFromV": "margin", + "relativeHeight": 251658240, + "simplePos": false, + "simplePosX": 798195, + "simplePosY": 2510155, + "size": Array [ + 1264920, + 1685925, + ], + }, + }, + }, + "type": "drawing", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "H", + }, + "type": "text", + }, + ], + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [ + Object { + "data": Object { + "preserveSpace": true, + "text": "ello floating ", + }, + "type": "text", + }, + ], + "runProperty": Object {}, + }, + "type": "run", + }, + Object { + "data": Object { + "children": Array [], + "runProperty": Object { + "fonts": Object { + "ascii": "Apple Color Emoji", + "cs": "Apple Color Emoji", + "eastAsia": "Apple Color Emoji", + "hiAnsi": "Apple Color Emoji", + }, + }, + }, + "type": "run", + }, + ], + "hasNumbering": false, + "id": "48DEFD4B", + "property": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + Object { + "data": Object { + "children": Array [], + "hasNumbering": false, + "id": "641DC85A", + "property": Object { + "runProperty": Object { + "fonts": Object { + "hint": "eastAsia", + }, + }, + "tabs": Array [], + }, + }, + "type": "paragraph", + }, + ], + "hasNumbering": false, + "sectionProperty": Object { + "columns": 425, + "docGrid": Object { + "charSpace": null, + "gridType": "lines", + "linePitch": 360, + }, + "pageMargin": Object { + "bottom": 1701, + "footer": 992, + "gutter": 0, + "header": 851, + "left": 1701, + "right": 1701, + "top": 1985, + }, + "pageSize": Object { + "h": 16840, + "orient": null, + "w": 11900, + }, + "titlePg": false, + }, + }, + "documentRels": Object { + "customXmlCount": 0, + "footerCount": 0, + "hasComments": false, + "hasNumberings": false, + "headerCount": 0, + "images": Array [], + }, + "fontTable": Object {}, + "images": Array [ + "/9j/4AAQSkZJRgABAQAA3ADcAAD/4QCARXhpZgAATU0AKgAAAAgABAEaAAUAAAABAAAAPgEbAAUAAAABAAAARgEoAAMAAAABAAIAAIdpAAQAAAABAAAATgAAAAAAAADcAAAAAQAAANwAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAATOgAwAEAAAAAQAAAZkAAAAA/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIAZkBMwMBIgACEQEDEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2wBDAAEBAQEBAQIBAQICAgICAgMCAgICAwQDAwMDAwQFBAQEBAQEBQUFBQUFBQUGBgYGBgYHBwcHBwgICAgICAgICAj/2wBDAQEBAQICAgMCAgMIBQUFCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAj/3QAEABT/2gAMAwEAAhEDEQA/AP5tPCf7OCzTgTwkjI4xX1z4H/ZU0+cJIkRU9+tfX3h3wbaWFysU8WOQOlfV3hbTNAs4VyFJx39a+Dy3iT2mkmf1Dxv4MzwnvUYfcfm34l/Z7Ok2BWLsK+QPEmhXHh/VPs7HA3YH4V+4fxF07Trq0eOLhivAHrX5gfFT4e6lcag9wgJUMTz9c12Y7G06kLXPkcl4ZxOFbcoux4HauCBzXQxL58Rj9qwvsMunuYpuCOtdV4fhN3ciNa+NwllV0PpMVG8LM861/wABvqsZUjIb0rI8O/BGO1uVnVSCDmv0o+HnwgtPEUcbTx8ED+de7H9maOOLzbYdB6Zr7OnmVSml2PHqcD4XFK7laTPmL4N2NzoZijk7EDNfo74L8SwwW6eY2OBmvlWX4daloNztAbj29K7/AEtdSgjA5GAP89KtZvGT948TMfDLF0VzUndH3Do3jmxhKhnz0OelehxeNbe5jCR7TkcV+f8AFqN3A+JHx9K7jRvElwjKI5GOK6IV4y+E+JxuTVsP/ER9W6jp39qguXHNcwPCEkb79wqr4d8QvOqiQ8dCa9Ij1Sy2Yc5NaI8k5K08N+acE5+tdBaeHWi4BHtWxDf2Of3WBWxbzw43c885rdRSA5CS2eAlWB4qExW8g3NkH/PtXoqQWtx8zLnNTP4ftJV3qoB9KYHDWUQi+aEn3rp4HlnXyyeK04/Dbx/cWtCLRwhG9fyqkl1YDdK08JIGY85r2LQ737NiI/nXlyWckMg8k10tlPeBhkHjHOKkaPc7SQT4Iro4rK6kAMeMV51ouokoFfqMV6lo9+WxGpNJyQONi1a+HLu6cbua9D07wzJCAau6NNGgxJ39a677asX3SD+VRNdQ5jLt9Nt4iPNPb0rq7K4sbfBGeD9Khtyko3uoOaoaglqFLrx16f8A66zNfaaHqWg69ALhVU4Fe+6Z4gjMQVgOnWvifSbh45vMjOQPWvRrXxXNboFeQ0krEzfQ+mrjUoZpAKY94gXg/wCfzr59sfFrPOP3ma6n/hJsr87gj0qXBApnruk3qLcYJBz2ruluovK+7jjrXzNZeI1+1ZBPXtXd23imNUHmOTwOtOKsEp9j1yyaEgr3qeaV4fujAz+deW2PiiCSXAbnpxXRvqjyx5jYH1FZuNi1I9k0HxbZ2aCKdsn2rtovFuiyAEyY+tfLCXxnyDjIPb/9VJKJWTdG2K2p4qcPhMZ4aEndn1mPEekEZEo/z+NH/CRaT/z1H+fxr4/868HHmH8//rUedd/89D+f/wBatP7Qq9g/s6Hdn//Q8I1DUra0u0kcKRg5FVrfxjp8U+WbAz1FcPP4f8TamxaQMvGKpRfD3VmkCyu/XmvwOeCxKfu02f65YbNMmqU+WviFf1PTDq0GtairLJlDnG41xXj3TtPaJ1G0/Kc9K14fC2q2QVY88YFcL46s9Z2GONX3FT0rope3jvFnyPEGCyuvB+yqx0XkfCXxGigtdZkWHpnn8qyPBdyP7Tj9N1df4w8EeJLm6kmMTMSSa4LTdN1fQr3zbqJ1HdsHiu7DUqqmpSi0fzJmzorESpQmnZ9D9i/gJe6D9kh851B2jOfWvtwX/hpbLKvG3HPIFfhJ4M+MaeH4xHNJtK989K9Em/aTu1DeVcORjgZr2pZnFaM+qy7hmrUgpxZ+j3jLVfD6F3iMee3TNfOuteKbWDcsTDOTj0r4i1f486zeSkZYq3IySK4LUfiprlxJ8rbQc9zXnVMRGWqPt6GTVYwUJan2g/jeBbkJJIBlsda9y8BXtpqRVgQ30r8oLbxJe3mop587EFxx7V+gHwR1tIBGeoOPX0xXpZVXbnY/M/ErIKdHDc9tWfedlaRRxKUGOM8cVcjvkhyjMeK56z8Q2sqrH3wOK7iwitplDbQc19hBH8uTjZkFnfqZgAx613dlqT7Nh6VyN3p8VuwmiA960Yr6Py+FwcVZB6BYa9FE4jcd/rXeabrNndMFOfxryDTY1J849+a6b7QIEEqdapR0uB7fBeWh4+XH0qUSWcz7VPJ7YrxWHX5sfLnPvXY6BqTu2+T1qR2PU9O0iFiHIzz3rtLPQYXTOz3rgtP17yF+cV2mleJ/MYIo4pMGzdtfD8m/EanGa660t5NMwzDoepqXTNWgaIEgZx3qXUdat1gKsARWW9wu2a8fiC3VAS2D0+tdFYX890wYEY9zXgr3L3k26PgD0rqLPUp7PALfmamTdjZQsj6Ks9X8iPEuOg5rF1DX7eRvLQjqRXlE3iqXyAA2TWBLqV5M5cHPOc5NRFvqN01a571ZagkaAqwPqKW61qNgQpANeDw6vf2x+YkU5NWu7mYAsacpWFGlfU990zUJCdytznpXXx6pJt+b8814HZ3bxKHEhz6ZrXh8VPEwSRv1qhOB7vYXjtJuUkd63H1iSNeT0rybRvEsLx72cD8as6p4stoI+XXBz3oIcdbHo2n+IT9rwr4z6mvRrTXJtoKyV8lWfinT2n4fA7EGu8svEEDqNs5+hNS9Fqa8up9DWHiB1uSm7NdhHrcJHzsOlfNmnaoGlDLJnnsa7ZLtDFku3T1rNK43Gx6m2vQBiAR/n8ab/b8P+f8A9deSG4cnIc0nnyf3zT9my/aH/9HcfQ9PhBIVfzrIutMsudijOa7FdLmY7WyasReF5p/4TXrf2bSf2Dz6fGWYwd1Xf3nni6crLgAflWfN4Ht9RcvKgY17daeEGAww963YvDXlgbVprIqL3idsvETMuVxVU+cf+FJ2N8CxhU5HTg1xniL9mawuo2/cAZB/hFfcFlp8tvjA6YrsLWJJF2zoCOnNdcsmotW5TxaXFGKjUVRzdz8KPiN+ybqEcjy6WHQ5J+UV83ap8IfGOgArJC7KvU4INf0xXfgrRdWUhoxk+1eZ+JPgDo+pRErCuT7V8dmfAkJtzp6H9BcJ/SBr0KcKGJ1S7n81epW91aP5d0jRso53DFc1cXpDbTng1+53j79kXS9RD/uBnBwduK+E/H37GOv2Nw8+iLJjkhCOP1r4rH8K4ql8Kuj9+4e8XcpxqSnPkf4Hxjo8m66jbk5YV+lnwL0Sa8tYZs7RgfpivkfT/gR440bUEivrKY4kHIU4GK/V39nz4UapJZQQyxNHwOowayyrCThL31Y8HxSz7DVcMlRqJ+jN1dKvLAK55XHBrqtP8Sm1QJIp49K+qW+B1/d2QVELHbxxXini34Sa5oitKYH2jPOK+sSfQ/luU1J6mRZ67/acoRjhT612gg0xYTyAQM9a+cnvrjRLn94CAD+tbZ8ewvCdhJb0AqlPuRKk76HrEev/AGGUwj5hngZrfg1WS+CqFIGf89K8z8FaXf8AijUVeVW8rd83419veHfAOlQaXvkRRhc5PtVKp0CcEkeW6fBDFCC45PXNXDc/YpRJARg9RXGePvG2keHbhrZSvB2jnHIrhtF8YS6xcrg/Ix9aTkkOnBvU+iIdXmuFAxgV6Bok22NWB5rjPDtvZSWqtKoYkVrz340xsRDK56Gpm7MhpbI9TXVLmCMNG9KurXVz8kuSK81g19p8Z4FeoaC9s0QkOCcZrHnTdkacvKtTdtYUktwy4HrWTqb3EUeFkb6Vt30yRwh4iAa5Rna4O6Vs4rOT1NKe1xtnLqEkgX5mHrmu8tI5to8wEe9YNnLHHFhQM4qte+ImtEPzcD3q4W6smTbdkjuJ7eF4wC3vV3T9OgZt/A968WHi53f72cmuntPFEghAUn1ofvbDs0em3yQWkZcuOB615ve6zIs58l881g634qYwFCxzivOYNcuGuO5oimhKN1c+htN1e9lgyHAIrn/EHiLUYlMcmT6Gs7R72RrcMwIHrUt5c2k2FbmrYkZ2kazeyzfvSVHrXplrq8kShllP51zuiWFpc8HaOO9dLcaNb26lgwP0pWLdRHX6J4ulSQAvxmvZrDxjB5CqzZ4718w2emM0uYWOc9q9O07Sbp4RuY5xxxWVmhuzPXf+EsQ8huKP+ErX+9XmR0rVV4BOPp/9ej+zNW9/y/8Ar0cjFZdz/9L6li0C3H3QK1rfSo1XCgZq8JkA4Bqyk6AfLnNfaqCPz5PzIUsVTqvNWvsURUbgKBfMnGQfarK3kUqDdVjKwsbfdj0qRLcJyuMVC4ySY+KzriW6gXC9KaVwN6KXyHrorS8V+nJ9K8yj1OTftkHevRPCdpJqd2kSLkNgVo5KKuxxi27I7ax0aHUflkiDE+1dtp3wH07XMPJApDdiPX8K9x8CfD6BIo5Z1BJAOK+ktF8Ow2yAAAAAV81mWdU43jFXPp8swNWNpKVj4dh/ZA8M3jAyWkZOe4/+tXrvh/8AZm0jRFVrW3Vdo9P1r7S0fS4WwAOOK9Eh0u1MI3KOR2r4ipioyd7H1Lr1uXllK58b2Pw8srJfLmQDHHIrh/HXwu0zU9OkURqcqegr7L8SaVCmfKAHFecS6X50bK2DRCstjB33Pwc+NXwbl0u9keGPC5OPzr520H4bXt9qSwANtDc8V+63xM+HunasSlxGDn/PpXzTqvgnw14Qt5LpY1RgCcj8aucep2UcV0PmCLTbLwFo63cpVfLX5ieORXyr8U/20ofCiTWNlcbVAK9RUv7T3xihtbSbTNPfBwy8Gvw0+Kd/qWr3jySSN87HqTWcVqehC0tWfQniL9rDWPF3jGO2eYmN5xg57Gv1M+CE39saTFMp3MFBB69hX87Xh3RJobuK9c/Mj5LGv3X/AGQ/EqPo8NtcOGYKB159K39kkhznpoff+i+JEsP9EuVIKnAz3r0rR9C1HxdIGtlIjzkuf/1VxOjeDrnxJqUZtBlOAW6j86/QD4ceCIdJ0xFkCggc/lXLVnbRmEpqOp8zXHw/k0qHfKCSB6VSs7u6sDti5A4wa+mPiEILeFliUdCf0r5z06S3vrmRXIBVsY6f41yXuzSNRNXY59fuZz5Ey7cd66nQ7Vb8/OeKyNU0uN4FlhX5s9qvaHcT6Ud06MF9cVrFO+pTemht6zpYsrYy2jlSB+H5V4lqeq3E8rQyMTzivTPFHia3NoywkkkV8+vdz3F+Tjq3pVyfYdL+8er+F7KK5cGTBx6816HdWUKwlVAHHUVxXhnSNU8oTw4GRnmrWtaxqVivlTqB0yRVQ03JnrsZVzpyTTEsc9qWx0m3FzzUFjfvO+49c967iw0U3ZE5cr9KqLuRU0RchTyoSicDFcRe3Riujg8Amur1mO9sISY2DADHvXkV7qO6U+YeSxzVXIpK57J4e1YFdu7nFdNd6vFHHgNgnqM15r4ZeEQ7zycVp640IjMqZz1pMcdWejaDq8ZlBJ75r33RJftFurx46dOlfF/h/UxHcL5nrX1J4XvUe2Qg/lSjK5VXTY9R+1uODuz7f/ro+2N/tf5/GqK31ttGWH50v261/vj86ow9oz//0/tRLZyOlWBp8bZz171uvaFPu/jUIlSMHcBmvtVJs+A5bHK3OmOmdhOKz4vPifDDiuiuLgOdq1lXDFX4HBqxDTI4GfyqW2LTNsar9pCJUG4V12jaI104VE/QVy1sXGCdztpYOU7WKOleHI70hdu4k9RX058Nvhs8cscyIScjNWPh38Nrm6lSTYSMg8ivuzwP4Jhso1DqAcelfI5lnkpNwi9D6vB5RGKUmtSr4V8ITwWykrzj+lek23hyVItzA8V6Vp2ipDENoGAPQVtPYqsJwBXztespI9WnG2h5HbRPZy7cHOa7bTDNcJtxjIpW0ctMZCveui06KGAYcDgeleJKo1K7PRlCLVjitd0iaYfL6Vws2lyWyEsMV7XqV9aRjc+PxryDxJ4l05MruUVvRxceaxhUw8rXR4X42gj8p274Jr85Pjnq1xFYXEYbsQMfSvvjx14msI7eRt69Djmvxf8A2uPi5aeHbC5mSVRtDHr7V7rknHQ46MWpH5g/H67trK8muryXLEsQufT86/NbxH4ittT1j7Nb4b5u1bvxJ+I/jb4xeMToXhqOaQSTGMuuSAM112m/sy+M9FgGqXsMrORuOR3pUYWV2ezzJaM8+vbf7JpuQOeox61+mH7BvhnxN4r1CJ2SUQBwF4614j4G/Zv8U+KWiS7tZAmQT8tfuL+yl8KbX4baZB5kKR7AP4cHitXK5lOaij72+G3gFNK02KSZdpVVJ49hXr97rFtpdkVUgBQR+lcVY+MrKWIW8JXgAYHFcf471hv7NlmjJACk9favNrXbscqTerPLfij8TbaCN1LAEZr5r8PeOmutVMyDh37elcx4vuLrWdSaPcxyTgZrT8L+Dr62InRWI4IqFE76dPTU+tPD2qRXiJHLjnnmvSL9rH7EQ23p6D/61fI/9p6hpkgYFo2FO1D4i6y0HlNIcYrWM0glh23dHa+IJbXz2jQ8ZNcbbwol2snbcDXmd74pu5ZtxJbJNd74X0vUdZAmLbeAcGptc0krbn0p4dv7X7CCjDp/SvP/ABtfQTNtQgnFcjfnUNDO13O0cEg1QW8jv/nYkk+vNbSXQyjBL3kaGkXBWTkV6/pPiC0hg2TnaPWuC8PaXb3FyoY8Z6V61d6DpUNmfkBOOv8AkU4Q0M6tRbHA+KNftJ4DHAwJPpXit6hkfK8nJNa/iq7XT7oxxZ284rjrbVN12rN0z3qZRua0tj0rQP7atIcxR+YpGQO9VtX1u+djHKhTnkGvT/DZgm09XUqcjnFcr4utopZt0QGcjtRPYmnO72MbQ7xnkG7rmvpfwnbzywIUkYcdK+bdNgWFwzr0Oa9v8L+KbK1AR2KkY6g4NRBl1L20PZhol+w3Ccj86X+wr/8A57n9axV+IFgFA3LS/wDCwbD++tXzruY+zmf/1P0JnuI3GV4P1rkbnfuOD+Fb89pOjUsFijDfKBmvrm1FHxCpOTsciiSb8OD9avG1JwcE/h2rtrbQGv3EcS8jtXtvhb4XC7tke6jGeDz1rycZnEKXme3gsnlU2R5r4G8Ez6rOpdSAcdq+svDPwltbcLK6+nau38EeArawMexAOlfRFv4f8q1+ReMV8XisxnVk7s+vw+BhTionH+ENDs9MUKEXjFewWd0sbrtX8qwtG0B5GORjn3rtLXSDDGWkU1xrubz3PQtNu42twTj8a1S8TDLYrzuxu5XbZHkAGo9T1e4tlxuOB2rOo9LmapXdj0G4a3Ee0EfWqCplcZ615UniW7lmC5JGQK62PWdu1SfTOa8mtNHfGi1ZEPiSzkMDGMnpXyT42sdaSV2TfjOa+0p5o7pApOc9qw9T8J2WoRklQSR3xXNCkr3OjmaifkD8UV8Rx2UhUSZweAD6V+Iv7S3ww+JPxP1I6Lp0U+2WQoWw2ME1/WL4r+EFjfhgY1OfavLIv2dtCinFy9shYHOSo/wr3qNXljY82WrvY/DX9j7/AIJtaR4cs4dT1u2D3DBXd3TnJ6+tfpZc/sX+GNQSOAWiFQckBOtfoJ4Z8GWOkxCGONUAwMdK9Jgt7G3X5wv4/wD66Fj3ezFPDtu5+ffh79kfw3oNuDDaxjH+wKk1/wCFFrpFqy26BcDgAV+gxe2nXYoFeTeNdOheJmAHSuyniOZaHM4taM/NAabf6frWASAHxivWm8Daz4o00x2aE714yM9qXXbIjxOlrCmS78YHvX6X/s9/CuDUtNikv4sAKCWI9hXoYXA87beiMq+Lslbc/EXU/wBmH4g22tmd4P3bOSrBT0NfSngn9nzxGlgs7RhioGRtPav3U1L4VeGZ7dcQqSo6kVnaP4E8OW0sltGqAleBwK7VldN6pnNVzKp8LR/Ox8afA83h6NnvYQhGcOo4/Hivie+mkWQgHPJHNfv1+1t8J4L7Sbu3SEn5WKso7jnjivwX8S6NcaZfyWUgO9GKle/BryMbhXTke1luKU4bmVbNE0it1IOcV9HeC9b0aG0xcOiNt6E14PpXhPWrgefBHn2rcSyvLM+XdoUYHvXLFuLudVRRlo2eo+MtVtLxSlqQw6ZFcHZrJCflJ5qO3t5HOc8e9dJp2nGedYj0PWqTbdxcqitDX0jWpdPcSR5bHrXV6j8Rbp7QwiLk9Dmu00XwZoy2XmSxhiVySTXjnj2PTtHkYwsq4PTI6VrZo5G4yZx988+pzmW44571q6P4bivJ1UEda8rvfHFlanG8E+nFWdD+LdjYXQaRvlz1qTW3Y+wNH8BXkFt5tvcbQR905pk2gOs5W4bJ964XTvj54dexULcIG24wa5S9+MUV3eE2z5XNTVatoKgpN6o9jk0+CEYcKa7vw74d064UOdvNfOA8fG7TrXY+HPiHfWZCY3D1NYcyW50Si7WR9LjwBozjcc8+hpf+FfaN/tfnXlC/Fi8VceWf1/xp3/C2bv8A55n/AD+NP2kOxj7Oof/V+8jrMbj973710OixSanKothuA9K84eMvILaLkscDHrX178I/A6afHHdXXPmDJB6ZrpzTNfZ+6kceU5Sp+/J6HWeAfBlvLKpdCGPJzX0VaeF209VIA2nrimWWmWthIjwqB6EV6dZW0l9ZbEHUdq+NqTlOVz62KjFWiiLQrWOKLcegr03RL2O8haNsfL/SvP4tKu4bd0XOcVi+FPEhj1OXSpPlkBxz3qFdOzJaufVeg6fbXVl58OCw6itHUI4Vh8sjnocVwvhLV5LCbYc7XPSvWpIIrrF0uCG4b6V1KSlE4XdM8xsxBHKyL1rH1eza4BC9Tmuh1C3jtNQLp93NZVxKkwLRHlOtc00tjqg9TkrezSCQwn73b6025ke2ba/UGuja1S4ZbhOT3qTUtHWe3+0DrivPnTurHXGt3Obi1l45FJJwK6yHxNHwCRnFcouhSOoPB4qG90t7NBIp/CuOeGm9jpjUhszbu/EkDziI47VrR3EEyY9RXi0sxXUQzdBmuut9RcsrA8Vk5zhoaujFnYXFoyDdGB68Vyl5JPG+GNdXa6hHMoQnnAzVXVLEzrvTFdEZcyOSas9TkU1EwHexrk/EeqxzxEA9qs6rBcpIY/1rktXtpFtWK+nevQwN7qJyYlK1zwHUtb0zSvEiXd4VTD8Fv/11+kfwh/aK8C2WhR2rzRb9gBww9K/D39pRtUisJxaSMjYOCvBr8fY/jH8WfBPidhb6veeSspAjLnAGa+wp4tU4crR5McBKrrGR/eC/xw8I3GnvPDNGTtOBuH+NeAan+0T4et79/wB5GJFbjBA4r+W7R/20PiBFpIgF7IXC4+bnmvIvE37Rnxa8R6gboX7x8n/VkjI96I5vCK0iDySrJ+89j+rL4rfGzw14k8Mbg0LNtILEg8Ac96/Ar4+eJtFtfG/2ywKYckyBcfngGvl3R/jx8T3tDZXmoyyoR91iaxb251DXrk3d3I0jHqTXn43HqqlZHo4DLXRd2z7E8JeOdHms8pMoOBwSP6msvxF4ltZZMxsrknsQa+bNN0x4uQW55NdZAwQgNmvNdV7WPSjhop81z0u38SKg+fArTi8YiI7ozz69K46wsUvFBbv0rsbT4b61qMZls4HZcdahTfQpwj1Nqf4z6hp9mYowrDGOtfN3jX4h6rrtwzSMQCegNejeIPBupaexgu4nQ+9eb3nhKVjuKnNUqr2Zn7CO6R5Rci/vjnLe3NQw6Rqu8Mu4/nXrlhoYjuFhkBGTjNfbXwu+EHhjXbJDdRqxIBJOOtCd3YVRqKuz87rCxvUP7zOeld1p1rMmGJ9gK+zvib8FvDmgo0+nfIy544Ir5mjs7eObbnp0/OlLTcKMubVGxoUd3K6ouTk9K+pvB/w6udRtVneQKxGcV8/6KI4ZFl7qc19QeFPiNpNjZrFcnYwUCojZ7jruVvdNRvhhqwPGP0pP+FYat7f5/Cts/F3Rxx5i0f8AC3tH/wCei1dodzl9pV7H/9b9mLz4KabYGK8lwJUPB7Z/CvU/DOnzwMlqFyo44rSm1S31ZMyttGfu9wa39JgMUismCMcH2r5WvXcpXbufQ4ekoRSR6lbaQLm2jaI8jgg16Toem3EdvH9m+8hyynv+NeeaTqkUcvkkZ+UZB4/KvWfD+rW15iOE+VInZv4qcZq4pxOwTSI71TJAAsw5ZOxrz3XfANsL1dWt0MUyH5ivFeuWFxG7gyfu5R/H2b2q5dTxXMJVh97itZSVjm9q4vQ42zhjksYrtztZMBsCu8stVURYVsgjtXMRaa8cUkCKSrDpj+VY6Wt7YNjDbSeD/SuaV1qT8XUl1HU1lMjufutx+dZun3CTXLoW4dMY96pXlnOyTRupBJyp96o6RpOoJqGcEgrx+FRHWR0O1jf0mYrPJbOehOPard7qFwGNmnI7GuV1FL3St96AfnOK63Q7KbV7GO8YYLLnpUKneXKgc7LmMaHWEUmM9RWfe6v9vmFqn41R1LTbm31WSEKcEjn/AD9asaJpm7UiZOwyeKdOEr2Lbja4640FGTewG481k3Vq1jGIx949B1r0IBpbrYV4FVpNFWe88+f7qniqrYSMtkKjipR3OJt1vY1Ei5Hc10VrraoBBP1robyCBICsY6CvItSSWK5Mme/as54Tl2D6zz7nph021v080ck81514h0kQRvuHGK39D1xIYwkrgexNT+IzFqFk3kkZI4xXdhIJbHBiJvU/LD9ptLOHTZT/ABHNfg18RnkTW5Cg4Lk5/Gv6BP2i/AOq6vZzNEWwMmvw8+JXg+ex1iWG6+8G/qa9bFrRM3yupa6PLNEvy0ezvXY2RLyc/hXENaGxOR25yKt2mvC3cLJ+deY4rdntH0H4O8I6l4kuxBYLznBJr6L/AOFE+NdNshfCMFcZNfPvwe+Ken+HdWV744Utnd2FfpEnx/8ABWqaAtrHPHv24IziqjGL3OOrVqRkuVHxibS9spWt50KshwQameCZ8EA16Jq+qaNq9891CQRk81nxfYd20FcZ6Vg0dKZi6NcXFncIz52hsniv0P8AhH4o0Aaeq3TRggdG9cV8UW1vp79Nue1bMSTWce6xlZP900oS5NjOtS51a5758bda0C4idrYIWwcFRXx1c63EuR1rsL1LzUSRcyM+fXn+tclqXheRlLoDWU5XdzSlBRjYy47+B5Axx1zXt3g74q33huIRQbSox1P/ANavm+fQryGTOWAzmrUNlfquDk+9EZW2NZUlJH0X4x+Kl54lgMYULnrjvXh5hkeXzGHfNcnf3F/bIQMjHOa42Xxle2UmHOfqat1DNQUdEe/2JnVgB0+td7YwyzRDI7Zr528KeN/7R1CK1lIAZsZr9G/AXw/0XXNDW5bAbb1z3/z7VMYNmVasoK7Pn0adP/do/s6f+7X0q/wlXedtxgZ4Apn/AAqYf8/JqvYyMvrsO5//1/3m023GpbZ1+RurKP54r0ezzb2/IGVGF7V5zpmp6IFXbL82PlYH+ldGmrmSVbeUhh03ivjZvsfTpWOgt9dEN2I5flJ6E1674avGuGR9u1gRiRejLXjdvoK6s2Hk5P3W7ivXvCuh6rpYWJ2DxEjB9KmEm2TVcUtT3/RLKe5Xcp3Ieqt95fp9a6kaU9r7gng1z+gI8CK8ZOO47V3NtfEZS5AI7V6CirHkzqMls7ZcjIGO+RTdV0q3Me5SMg5xVg3kYTK/KQcY9q5nXNeSyhVGz82Cp9x1FE2ktSIptmi+k280fmEDtnjmprLSokbKgcA847Vgaf4mtry3KxOM5O7NLL4utrOIvkHaSo5796E4pXY5RdyHxppkUmnpEiqMnk11PhiwtbLS4kbAxHxkV4T4l+I9ncMkLSAKX8tOeM//AFq0Lbx+ktvHZ275ZV5IPGKyjVSlzGsqMnGx6rrdvpq5uflyAe1eT3d/babI9wSBu5qnrHieWeEpATtVcyNXz9feKNW8a6//AMIz4ZQzOp2u+cIvuWPArapXViKFJ31Z7PN4+sYHwrLk8DBq5b+Kku5VG8euAa+ZfGfhDWPC0oae/tZ5sZKQNv2n8KpaJf61bXEcF8H3yEbWUEg/X2rli5J+8djhF6pn1lqet/6OTEe3Y151LePcSEy5rLtdYIiIvNw2cc8Cs291eNiJIuRmupq5nGNh2q3clqfMRsAHjmksvGJkTy2ORWHqCXupMIYl+/8Ad9+KwNX0HVPDsYlnjbDjh15A9ifWpcHHUv3WuV7nNfFzxbp8GkSibaSQTzX4Y/GWWLUNdnuIQMFz06V+kfxxvtQltpFVmHHSvzP8Xqzs7Sn5s9TWn1ltWZrQwqi7o8LuLGCX5HHtWTceEt5Dxc12sWn3F1c7IlLc8YFd/p3hu7iQGWN146kGsnK56KPGdK8NTwnLKc+tdxaR3doR5eRjtXrtt4eWRMkCo7nw6U5jXmspMuL1OdsdZuY4wpLD1rag1a8dwAx5Ixz/APWqD+xbhhhl6V2vw68Owah4kitr8fJvHX61EbmknZXJdPu9VADsHCjvXdWniBkh2ynPrmv0q8MfA/wFe+FxPLHGX8vPavg/41+B9N8N6sV0zAUtgqOlaVKcorU4aOMhUlyo4WDxAskwHbPrXZwXMU0QY4wa8f0+zkjl3nmuufUfIhwBj1rE6WuiPcvAXhPR/EWpBboKRuA2n3r6a134B+D49A+2RoqvsyCAB2r8+tB8bajo159os3KkHPtXqV5+0T4sm0/7FIwYbcVtCUbao461KpzXizzjxt4Xs9M1WSyiIZQTjivAPEfhdGJMa/pXqOq+K77Vr1rq6JLMcn2zVSZ0uYz5g61kzqPAbPTpdOu1uIyVZTkV9eeAP2htU8N2K2FwhcBQMivErzS/NfCr+VWbXwzIy78GhSaInTUlZn1R/wANNTt83lNz7/8A1qP+GmJv+eTfn/8AWr5eOiyA42/5/Kk/saX+7/n8qfMZ/Vodj//Q/VHVrW9hnM9k+1QwxsPf6V6F4L1jV5EWK5zIOe3NWPDul2ouwslrLNt6MUJFfRnhyDSx8y2qRt0BZcf/AKq+L9lu7n1Eq9tLC+Gba/uwskQZfrXvHhjUL/TmMF2hK459vfvWTpF6saC2iihXPGVXNdVZtcRSGS552rnOOMevvTjG2py1anNujvbDxDFwicowyp6c1vR6orhkkBwa8In1WOOUWwbYJHK7Tx8/UYPbPauj0zWLtSGzuCsUdWGGBHcHpWrr9GckqPU9XOobhtJ4xgEf1rkPEUslxaFRztbOD2yO1VG1HzITsPLHIPb/AD9ay7nUSRsl6tx77h2rGVS+5UY21OYsZrjTzOisQZOB7HrXlvibxnexaXeLbsd8Mrc+hr07W9Q06ytRe3UiRRldpdzgA8nr9BXzE/jLRNfmnn8PK+owNO9pdtaKJFjuN23DsD3/AISMjNP3mtDqpRu27FWXVbm+tLO5tiwwhlbd13PxXuvg7TpLO1mvr88uiqo9BxXNaV4f0SG3W0uI7lHlVt26P5EETgAMQflJJPXHBB6Ua1e6xZXhs2srmW2JEElxCw2quGIZecsRjDEAj9M2qEk02XKV1ZGr8SvET2PhprTSCRNMSOO4xX57eOfjtq3wt0eTTbFrhbmRt05t13Syc8hVAya+zdD8WaBaeKriz8ah1axtZWt4VBkZtq5AZVB3Flyy468jqMV8p+K/C9rpvjf/AIW9CIru11CV47OSDbLGkCDeZcg4UOg3DOBj3rWrSfLzWMKU1GXKfInhz9tTUrXxBBDe29/EZnaIHUIXjZpOoxu45Ffor8PfjH4h8XWsV75drH+7RnVjhlz+HFfJfxj13wh4gtYYdes7ZfMjFxE1zFhkXI2uccgc8H3HrXpnwc1r4ZW2jCyhnNv5GInaFsLIBgdD0OetZKVt2dE4xeqiffenR3PjWx2aNdBLgowBIBUlfT8sGvL/AIleM5vhH4NbWtajOoXaHYlvbx/PI3fYO5x0ro/CXxA8HWcMttpM+xkGAZM9eowVxgehrlNQ8MxeNdWk8Ra80sqHJWNj8m1hglSOh4BHHWuylOMjim5R32OS1L44+JPAfgu28T+KLZRNeKkltZ28eWSVwSsbBuRnBDc47itX4XftDeNfiF4FbXZdLhFsLp1l+3IFO2NtrLtByccf0qhrVtaale2UuqY2WksUqpL825oG+UlevQ/riuu8M6vpyQvbC3gS3hnKGzjACK7sCSQOowSRXXTsna5zSm7XaDxDo3w6+J1uRq2kzQ3IYfvrCTERQKdyGM4PXOGGSPpX56/HD9n3wjc6zLb+Ab2JmWISzWbSfv4T0+ZTztODg+2K+6vhZdWdhrusNa3IVYPOXe5OWkYsu45wCNoHTg5zXzd+1NYaPofxM0L4maCEjlsbKOy1F3YbbiJguDJGOcOVP4DPTFTUpprmRth67U+Vs+Xfg/8ADHRNO8QNYa8B5scgVt/HB5B/EV9p+LvAXw/tvDZmtkg37M8EelfJnxqu9LmhsfiP4GL28UtqsV2pPPmoSSSM/wAOQv5V83Xnxa8U3cJtZLtihGOM9K55TSTVjv8AYSqNSUjovFOpadouty29ocpu4x2p2neILG7ID143NPLfytLIxZmOSSe9WY47i3+ZciuXnPUVNHvgNhMvydfaoo8afMt3bna6ncGFeOWWv3NvIFdjjpXWx60t2gUntUtlSi0fQ9h8ePF+mWX2GKfKqu0V5N4l8bavr979pv5C57DHSuMlU58wNUe5WBXvQ5NmcaMU7pHd6dc/aEwec1elhQrtbnPvXB2WpmzcKORXXwXM+pDy7OMux/hUZNITi1sYF+Y7TLI3rxWPBqMckmGPf8K0PE3hvxNDAZ5LWdUx12ngeteeaf5scpWTOd2MGgaimrnqVskEpDEA1pmNCdi4rk9N3OwVT9a7eG2ZAHx1ptWMztPC3ga/8RzCCwjLn1r069+EXijQ7Xzbi2JQDJI/wrofgR4t0bw/qirrO1ULAgt35r708V/E34d3vhnbDJAH2f7OcV0U6UWrtnBiMTOErRjc/LB9OhRikigMOCDTfsNt/dWvTdX8S+E5NTncFOZD0/8A1Vnf8JF4U/2f8/hWLj5nUpv+U//R/d61vYowJiTkjsD/ACFbGnanPIxdGOQeA2QK8f8ABPji18UhRDb3FuD/AAsCW/GvovSvDDXEa+TGw/iLN6V8e3fY+hem52nhjW58hbpVXtuznNeuw3wktgVIIIx+FcPpvh4RKu7b93BIFbi2otIsFyq+3NZ3a3MZu70LNxp+n3m7eEYgqcH/AD+VPiRrVS8ZDr35yR2/yTWQ179mn80kMp6ODj8DVl5muWX7M2JD8ygdHx2Hv7Vj7SN7Ifs3YstfzRzKI8puOFycfj9K6rSVtJYZ5Nf3w2yxNM1yg/ewY+ZXweHTK9vcHsa8y1zxT4W8I6c+peOryLTYISXeSUhAI26uhONxGTuTOTjjBxX47ftc/wDBXD4YeBvL8HfCvU7XWrKC7jl1a9tHVktlRvmjkUYOTgZKnYysGXvnopQbZmotuyPub4xazafFTVhpOmyNa6VDbR3FvDLJJaSTXKyhozlSeMpkZII5DDvXG6hpyeD49V1XRruy0i41ZxqEq6dGrxyMB8zyAYG4ArgE4JXJOScfA5/a5h+IXheLX/CEsF+6Qi8QROrSQhVZfKkVclFeSRSgJz2z0x8i+BP2vvGWm6vJo/xCt7i1MqyWdg8j+YJA3mfI6Pu3KNhXOMEgc46dfs7bI6YqTVrn6Or+1v8AtUfDbxd/Y/irTTLp8k50+z1G3TIeZVLBWH8PCbXJA3LjOCBWXB/wUb+N2qFJtT0Wy2SyyeZDNwwAHlkElVUA5AJXOGIYhR0i8AeP9D+JVh9sstSZrYxxpFbk7HFxCxUSYc79jGMxEHJBZiDtYV1uhJoZkmOtaZbpO9uj3BWNQHO+OLeM5AOxF3erDBrohGxhUq625TvtN+N/hT466Nb22rwPYz31qIhcW8giuLaZg7ROoAyrtglugyCOM8dDa2fijw5dx6XZGHVtKS1AuA6gbJ0m3qrx/d2GOR0JAGAB6mvKLDRvD/8Ab9s0UUFtAN7BFU+bMzZZpgMAqFLNz6sQO9epQsNOv01TQLiRfP8A3swdhIWcqqoXUsTgKOFx65HTOt9LnNvdI+SP2mPBfiTV9T1L4g6OEOl6jIEg8tz8sY+SOJB1TZtwCTycn6/EOl/GSCwtLS1tt0cs07xQmVgBsRygk6k4ypr+hqz8M+EJdEFjPbLcWl5BtuFlTcv73jO1sncD82cHBNfy/wD7afwi8QfA349PqVvaMdF0lZriztxPvjRpXklUuqscyANnDNgFgMAAV52IoOSutzuwdaN1GR+uXhD4jWPhq4tND137NcRSWwle+DMZfnGSc8jaD2yMHHFfZEPxQ0qPw+JrC4JtxtVWOD0HfGDk9/61/Hm/7bvj7w1oz6brNrNqL3l450u6iZkmtbWNiRhUADqxU4bOSFJORX6Dfsg/teXvj3QJ9D1iKe8kuH8wGSVxn/aBc4IHt0I6V5k3UgtVY9SeGU9Yn7S+J/jHZSwCziIQSS+WHOGwMkFgGGdpI6dR/I8F+Nv7WmMEMu6KSJYmukyfmUkgEHBBBIwe3TNfAVl46TVdaaC9WS0AxDC0kbGNxnC8kE5z0YEfl0+tPhrqVvpNuunRqVn83MsknyhWI5K7lIy3TOcNx3BrSji3fVnJVwttkfR1qt/oF9c21qqRieWLF0flXDqpydxPOchj1x6Zr5h/ai8V2klpEz3MU8KQyPfxknZsgQglQMktuUgc4GemQKPir8Xbrw5pc8bobgCPFlj+IlhhRnOGU4znP4da/PiKL4ofFXWxFrTtbaXsIS3lQsXTcMmUHP3sEDI+Y9D3r0/rS2OSOFb95n0H8OpR8WPAr31xIbO2ke4tp7cgssch2eTIgB+ZicllXpkA4Ar5Ht01GNSCWJBIz9D1r7s8BeH7Lwv4VOl2okmupZ95gVP3SRIJF4btuHVgCcAActz8Zz6jZ2us3emqSRbSmIsxDEsPvcgnvnufrVVIpxUjqwtS0pJbFfS9Qnik2zCvQre4huVCt1Nc1p8FrenegGD0r0/wj4YgvtWgt5SNjOAT0rkPQbtqzHTQmuBvRCfp/wDqrYtNI8gfODn3xX64/Cz9nbwZqugJNKsLNsBy2K8U+PHwS0HwvFJcWBRGQEjbj+lbOi0uY4I5jBy5D4Bks3JIQ4rJk0+5WQshOfSu1YRRybSB9ab+6DZOKxOvnZy0GlXUrDKtmvrn9nHSdAXWUTW1Tdv/AOWgHrXgtheWqEBgOtegaNdRrJ51q5RhyCpwRVwklqZ1k5xcdj9U/HPhb4Zz+E3aNYN5i9B6V+J3xEsNPs/FlxFpgXyhIQNv1Ne9a74w8VPZGzW8kaMrgjPOPzrwO+sZJ5zK5LEsSSeautU5uhy4XDOne7uRabDGiBx6V0f2pwoxWRYWTZw3Wtx9OnPEXI9Kzk7nWQL4ie2+Xdj86zdT8WXzIQJ3wR0DHFaN14buWTzGGKwrrwwzxHd/hUhY5061IxzuP5mk/tmT+8fzp58NKvGW/Oj/AIRtf7zfnQB//9L+jzQPCfhTRR5EEcWAOCAMk+/vXeadPYQv5DNxyApNfP1r4hdWT7Q6jceGDKAD747ZrsIPFCxKy3hQMoBHIwR9a+Nk+iPbadnc94ivPKhxsXA6HNc/da3AJjEjKGPTcf8APWvDNT+JsVmjxPOkQClsuccAc4z1x7V87+E/javxA8TPFoVlPqFlayOLjUYWR7UPCxVkO90O8Hspz1yKzs5aDiras+zZ9XWzY3kqvDblWd5yN8A2fe3beceuM4rw/wAcftK+HvCd1JBDbb7eGMSXUwkVrcgrkFJB1AUElkIZRyRgV8jfG39rr4ZQ+IJzq2qW0A0TK3ejo7xTIMn99yoBIwcSozjH3hxXhWq/tAeDPi1r9rp3hK5hMFzDFFpjwwqkc87b1VJIwPl+bI+6B6A856KOCjuxSry7Hmnx6/aPvP2t/FWu/C9p57Sz0eFJ5YJ5nZnAmET7WyMpj94CA3PAJXK1/ML8U9M0H4S+ItX8I28h1GyCO9veO5Vp7ORhLGQBkGSIsF2kHmQr90kV/Sf+0F4U8KfC/wAC634yt5jGt64trk7QGCS72+zrKAAON+xmOFJX+6CPwE/aq+C15omkp4juC8xWCxvIFMeJfs92Q7hSflKBowxPPccYzXfThGOljWhK+q2Pqn/gnl8OvEGk+MdVvzNcLYzxPb2sEUvmQ7LdoJVYhmyC/mKRlfu5AY4IP7L/ABh+Aul/EK1stc0RrS21CDzJ4ImCjbGyxxgruIBD53E/w+ZkCvjv9m250LQvgqZ7q0ibWLuy82X7OMND9tiDAMzYyU2hUweQBg16P8GP2iX8aRzXXigfarm1cwWu18O9vIhceXGMLym+PGd3C5HSuhSSOWrKbm5R6Hh17/afw01OZJ5fsinT5I0Zi37x7aLZGyA5UjzSRwOSoPcV7n4T+NHjG7vLSP7QrpJZk3UUhyPKgy6oqgfM3Aw2RksOoBrC+P1teeL54LtRHFErHbdZDb4SwllHKkRpGnBVckscY4r55l1vV9EDav4XgTeIpbyFPmLwxBlUSnIAVnC7tgyS21QBkCuWrpdnXShzK7R+jEPxivNS1mazTVoY9Q8qOGaQgmVf4/K54VSvUKA3y8kAk19A/D/x9c67e21jBfkqVZhHETmbacsN2B8p9AMH6V+LK6tf+H9KN14wWV7ie5W4JfzZfNmc5BkWNSrsxbcQzkDapOcKB94/B7Urpo49bvJzt8lFW3UmNI0x8qMDjJAJ68k9SOled9aalY6J4RKN0fth4F1uy1u7jsUgO9doxJlY1AHUcYxz1BJ+lfPf7YHgnQvG4Gj6hDbkXc4DYiT5TkBzv2ZyVUr64JrO8GfGvTPB+mza1qA3y/ZGi0+FFVwrMNolcMADtJ4GMenrUdxq0XjLRoL2Rj51s7NtZtxdiQA3TtuJrseIXLZPU8qVF81+h+Rnxz/YI0C7ezufCFskTxzTJCVG0MZI3ijQDI6Jjj69ya/C3wonxq/ZU8dRx3OnTXVhNG9w94uPklllfyosYG4FQrcnowwea/tM1yztbwRSqgLxIZgG/vYYLn25r89fi7+z9oniizfSbmygl3WdpHEzJgqbSQbWOBx8x574I9KaqRnpM2p1Jx2Z+NC/Fz9ojWC2saHNdNHcut20G5IoWfHy5UKSQo4wSa+//wBl39qK+8dsPBfxC26P4gtf3bRTMVSVenyFsFS3oeM9Ca8v1HwhL8IdPsoLm2kms/tC2j5G91EzSCORhjJBZQCB2Oas+F9f8D+KY/7RsI7d7pGXcZSqzAsMqARjJI5BJ7e9fO4ulKD0Wh9DQxEJx8z9KNevdGjsgLmZZSoO0SSgn5uMDJ557dv5+ReGvEF3JPHBpdu9zGsjGS8my0cSwBgFyvJwxwARx1OO/hWtad4h8S2EmlrqAWIxoGfywLiJcEbGyRlsblVjz05yM1kaPZ/ETwjY7LFluyTI4jyY0DSMSQ2MklexHQ1jSxMrmssPBo9q1j40aB4M06+l1zymugsiGRpHCxsRsVju6u2cKqnjsa8B8OXMGp6Y2pJbNbKSVVGDKcj0DfNj0zXinirR73XfH9jpGuN9ovWuBObeCci2soBlWkaNcOzADjIHJyfSvothp1jaxafpR3wRJtVwMBvevoaMm4q55sqai9NyLSNTvFm2IpA9TXuHhvXbi2w7cMDkMK8Ysb6yjYhhj613NjqkBYBD15GKhI3lqrWPuTwb+0Z4r8N2AtY3LrgAcmsTxv8AGDxN44XbdsQvpnP5185W9/GluG3YGBW/o+rJO2wj04rScna1zmVGN72K96l1uzzx3rIkuZo+Ca76ZoJcoMZrEudGjZDKTWRsnrczbV5H+bJBrZg1qbT2+U81zW9rclR2rPluXlfnNBo0nqetW3iD7ZFiX865y/1WG2cnjvXG2+otARHU0rxzvulPBoMTorfXIPvjr6V0Om+JY2bDDj071ytrpNvNGNpxXbeC/CMGoeIYLSdv3bMM5+tNK45NWOug1BLyPCrx9KzbwI2VHAr9Zvht+zX4I1Lw3HNth8xk53YB6V8hftJfBSy8BM+oaOVUA5ZAeCPb0radBpXOCjj4TlyI+NWs13HB70n2Nf8AP/6q5w6leZ6ik/tO79RWB3H/0/1U134zeGNNb+zRMkrbfkZfvyL6qDwx9s15OPjXcLDLqUdyzWtsu+VLmJgQOuSuCyA8Yb7o75HNfmZ4k+I8niW8t/Cd/p1hHcTyiW30/wC1PHIGzkNHhVEbDnkTsB716f8AtX/FTTvgx8GD4T0bT9Ml1e+hjkmf7ed6sxCj50cyIUA+852Z+8W6V8uqHdnuObtoc78TP295vF/iE6LClvdaTFv26e/kzGYRnbIzwyIUYIclirnIA4OcV5z8ZP8AgpXo3hT4RpH4Fe2tJSg2Jg2i52ZiZYVYBZEAyoXAZBlDgEL+Hlv8fNM+zXdsi+bqb3X2vRJbh8S2l4Du8kOmyNkcbihYkknGVxtHvHwF+OHwz/aMt7j4VfGfT7e21C7Sa3ivVgY+W5fDwyJ8pTdJ84J4WQBgy5IPQqWlzVU+X3pI5y+8R+IP2g9TfxL4I1w3GrXU6xnTrrCyfaRmRomYnYVlyyKwwsg2/KG+WuU+Bfxa8S/Az4xW0PiqG6ktI7lIUjmJkjRi4ZXCs20wtIxzhhtyfvYIP2RffsfL4FtbDxP4Ea2lkjtw29g4ckTIyuxywKyFCxyGUN2xnd6v8Y/2Ubbxj4Tt9WhOL6CwE0zll2qqIjO8W1QMqzNvB+8hJzkYoknexftY/efbv7aWvaZ4l/ZrtbFSzWeo6bamxONzHdvZFmAJO8K42tnnJzk5r4o8d/B2/wDiz+y1o+oFoje6XpxEFpLKZUZgEWSD94RglmLiP/ZJ4IFfRjeELP4vfs3nwfYSG1nsoLh7OWJWwNu1guJQMoJd+F3bkwF5XNfN/wCzn8SIbK0n+H3i5YtMFvebnjuna4+0iVFM8RG4kqMfIF/hGch1xVX5mYxjyxaj0Z5h4NuPF+g/BmLw3cvJbs262W6ZpImtJVk82KNOd7KZNu0EjaGAyQcVc+AvjPWfC8U1vewLexWV6X1IxSL50cEqgwzxINrFgybg3+0QOuK9ms/hpaaFrktnbThYLoPm0mUPlULOiRSHGNpAKs2WIOOc18w+Kki0fxM8/h6G4nuopGjeMMm4vF5jsrtyCNrYIxxtx3xUznbc1hHmuj7B1/4q6brFxpb6SRLbwySRFpnIZZJJGRd2RuPVfm2jg5Azye60jwbrk2pC0W0VZIbh5HWePYgbJ2bVJdWIHzR7l2ng4OTn4++EU2tPayp9hnQO5kaTzR+6wxxHhgMseAR2AH8Qr3/w1qXjG2v3kk0WztkRAou45GeVlXPzE9C2P4iWPGMYrx6+MSuenSwL0On+KXhS91DUVjv0vhLM6O6I3mXD4OApneNVijHBxCgP0FfQ3hSWz8LeH1uL4pFbQAD7Om7kgcZ4JOTxkivkq9+NTSawug21uROxEQmMi7SzDj5VY8k8dAM1e8BeO/EXiW7v/DfirADxmPywzFcNwGAyMHo3Tv0rnhFylzSKrWjHlifQ/wALvGGoeO/iZqV1qSKsRXCZeRnjUH7uWYJtAXgBBivvX4VX08+pajZMSzWjMqr13MWKj16E5r86fgTaTaPqN7eorN/pZjZy5YbUUknBzwQM9e9ffHws1W0i8dXqoyjzrhxjsTvXIx0PSulS1iedVh8R7ws0zXCTggqzbivbAGCCPx4FRalolnqhNzcKGCrH5i9jsfzCPzH5Va82L+0pLVOVCFxg8hmHI4961fss0ce2HDHcUBzwXC9/Ze5/Skm02c9RaHxv8ZPhDD4kg+w3aMDMqSzug2kZDMMEDggsSOOK/I39pP4Yaz8MTJr/AIMhcTWYaMRRZ/eso+T/AHi0rYGQcL7E4/oL8TSrHDJOqAy8RR7hlucKDz7Zr5J+PXwvsNc8MSRmIcyx/Ly371htRTjlgudzDuM+1dMJJ7k07rU/ID4W/tgWF3s03xoktlJDcNaT3cyBYJJIS37uJ+jEAEsc+mBjFfVmoeLrrx1pkc/hG8eK1mIzJEqvkMAQwwMDqOrH+led+Kf2dPDXii0i09LRFS2zBbblCu/zbyxJyFLMBI56jaCB2r5W8UfCbxv8Lr9Y/DupfZLE747W3csPtD/xGNGJIQ7TliQdo5OcsmX1WK96J6MMU56PQ/R74R/C7w/4csNS1q6Mbl4JGkfIjMkkvAZ5NhHHrjA7ZNXLWwsrqNxbKuw5wFOQM+hOM18efs5eBvib8UfEEenfEHxFNPoELEywQSLbpPIFJG9kVDjPZQMKAM9c/dE+iaV4ZsYrfQJWngRRGJT0OPT1HvXatYqxltJ66nnEvhCSW4JjOAKml02fTio3flXTG+nD5jU471haldvI3z1DijqVRnQQXzLEFY10ljqP2eLdg8ivPdLuklfZIOB0BrcbVYw3lgdOM0pRJ1Z08WsXs9z8pIGeB+Nej6XfPPF5c5+Y9K8Zt7hpTmLI9TXUaZqMsUyBfmwwyB9eayCx9P8Ah/4I+I/FVgbvT4cqR1IJ/pXnniz4P+KfCrtJqFs6oOSwBx/Kv07/AGYPi14JTw/FY6uYlk2BWV+OQK9I+OerfDrVvDUrWxhLtGcAEEHiuv2cHG6Z5X16oqnK46H4S3tpNA2AORUtlp89zl5cgAjHavbtX0SwM8kiAbdzbc+ma8/1dxYofKUY5HFcrPUOfluX05fLU8g9q6Xw/wCJJo5lldyCpyuPWvI9U1GV5SCR1pNN1MBsSHFS5dDXk0sfo34I/aK8WaTAtrDLvVRgHcc9K5L4tfFvxX44tjBcfcxyN2c18oaNrhtSWjfr610w8UXTgiTB+tW5vY5fq0Iy5kjnWW/DEBB1pMX/APcFbp1KVjuCLzz3/wAaT+0Zv7i/r/jUmp//1Ivg34n8M6Fq0er6c1zPJbxNGsl5Pc6dEit8xcmH7SCVPHUKRweuRyn7Q3wW074u3b+LdT1lLUwyGBWW5t7uJi+Q3mjCSHP90k5DZBBGa/Pj48/Enxh4MhfxB4XhsfD013ERbwjaLoRjGCVXLO2MAtJJjJAUZzXz/wDAv9r341eC/FmfHbat/ZlxKjXEkcIkcLJwSfKAI3A9OeORk8HxJJbNHswoz+KLPt3xP/wTl+GN94IuNXtILczuY7iZ3lRoEdRjfHNgOU3BSdxLKAMEmvxp+OXwe8Wfs8fFX+07iG706ylieKLUiTPGWdNirI6HcpVjwXXpgcLtI/d7xH+2l8OvGmnReEfBctzcQ4yQHO6G4UDaY5SisF3YEgYHg/NnGKv6t4Q8D/Ezwvp+taxa2t5LLayx3FncKTKPKbbMxdPlMilADkAELxhWOBvXQ0hKaXvn5jfDH/goRN4c1W08OeO4pN1k0ukCUupiZlccFsEAh1GGGdwbJAPJ/Xf4AftNfCz4xadbaBYJa3N7cziGS0TaIUURMkrNGGIXzA4Vk3feUkADkfiv+1n+xXY6ZEfFXgyG4tbaWaRr6OINNbWzXJ+c7iAQM7JVOW9CMHNfFXwC8a+IvhF8SrLxXpGptYaja3P2K9DBpIbnYM73iTLrK2CD8u4kbgHyys2lKN0x8t+lj+xLQPDKeH5NU0jS5RNpj3NxbT2jID9murorMgC8gZByHGQ27PcmvyO/aT+HusfC7x1J4n0m0V4pJVkaGNwqbix+hRSoySCR8vDZxX6QfBL4z+HPiV4UPxE8Kw28jviHV7WN0zK4UHgyMkgVAcqhXJUjGCCK0/iDpul+K/C4126exFojMzQsqyIQTygbGRnkZGST06GuCrOSVzWi/es0flR4Z/aE8VafYxWOqQJdR21xtitm2J5EmAwRJirMuAecZ4x83HPoOmfGK18QanBqDaUlu91N5t3JGokbDBflYAMxDMuQeB+Br0SXwx8G0u1llls4bOaNpbVUAJt4on8xck44JwDk8bwPWvPdT+IXgmBpLf4c6dvlaPzWvJ4gISTklVUBc7SCBjg9fp51bEucdD2KGHime5HxnpFhpw1PV5Et4ZH3m3jVQxb/AHgQST3A4z61yPjL4t3Gp6Mkfhe2EcEjFXknX96dvVcHPB68n+tfN19Jrnio/aLxyzoVkVIV+VQRnjGSFIyM/Udq+0fAnwwttV8PC1uVLbYSBn+JMYU59Qe/oGrkpUU3dnRWq2Vjwzwd8P7jVtZtvH2n5VY7lEu4znEcoYNFKM5Ox/utj69a+mfG3ho6R46t9b0mPEGoxosYxghlwWT8MnHsK2f2efDkkEGteDdYjzLZXSqVYcvbzkrkf7jgE8cA9ea9sutLtrzU9J0m+h3vHqKI64PGOGbrn0JHp05Arvgrqx5dSVpCfAzTF1LRtajOQ6FLqNu+GDRsPxyDXt/wd8y68fyluXAlcHGQGO3n8DiqPhzwhF4H8Sa5olo24SiSWA9jEyAoPfDLjNdD8BHhPjHU9SIXy0uJUBbgbVP+OPyqEvfiTzXjKx9H+JWOlalBqcfEd3AkiqenmdHHTqCRW/pGuR31qJTIMEMm0/wjHzNj1waw/jZprWulaPJpoZ9t35TxjgOzxggDsNzJj6mvnA+Nb/wbKdC1l/LuYyluytkbnA3SHkZxuZUHrxWVaThUfYilQU4LXU+kvGNut5HFcQMS7SmV1XGCq/eUfThc+9eWeJb6TUNKFhG0cQgRrma4JyA8udzdDyq/d6+2ea0dH8WWd5JDHcCNhGiK6Bu5G995HXrgeoFeQ+KdZWWHybF3VJXMrEYK5ySCCOu1cYPRefSkpdUUqVtGjza58PwXOrOskiafHIwjMsis0zL/AHEQdM4Oec5Bz0rwz4w/s0XfjLbf/aoDYqEC+dJyigj55FUruTgBYgcFgFIbHO14l/aB8PaBK0jRGaJZjGty4Bj3gAKij70j5IxGuRzk7mOK+0/2Vzc67anxp46XS9IcuDp8d+fMvBHj5Z2iACoSOEBJKgfw5Na08ZG6TZdTByjHnsfJnwz+DOofDiGS8uILyK0eBhbyX0QiZ1GTu8tsSKhHJLrGOx4wR7B8GPAGmfFvx8fD9pdvLA8ZkDLGyw5UZYbiFUnv8uRg19j+OPEf7PsLwr4h1b+0Z7uURxyTpHJC5BO5IlLGMMejEBznA614X4wvD8OtbtvFngKBLWe3kYW13cSoqojEBwyvIIIEOMEuDI49OM+rTnHQ4/eknbRn0rJ+wxoJtmNqxLYOAP8ADNfDfxg+Bk3w11Q297lo2OASAMV9OaT+334s0/SLg+INCtzPZQHzr63uSbaV1HBQhMHf94YAG3mviz4pftH+IfiyP7d16CKCN5zHDHASQTnoCa2qyjbYxwqrc15vQ4FNCtkmZ4R2x0rGl0i5kkYIOh4/Ourt9ZtbeBYph+8kHGal0+6WW4344B71ytHpxkznotHvbe2BIIOetX4Gj01RNIcsPyrqrm7iJ2jGM1halbQsm5SMntWc1Ya3Ft/iRqmmyh7d3RR1CHb/ACrp5fjFrd/CIXmlZemGYmvMpNFluE+UcHuRSW+im0YAg8+1TY0909Gfx9cTgRgH9aJ9Ya/i2FRkjpnNcmunfvBsHJrvLTQHWATEgHA5quRmbaueaajpdyZS3IFctdNLZkZB+tfQsGgLcqDN+tU9a8GWMtvhDhjjqBWcoFxn3PHdN1by8M+evvXYW2tQMvLc9veqeo+G49NtyCQSeRxxWJY6dvYnJBFGpPc7D+3Zxwo47Uf29celZIsVAxu/z+VL9hX+8f8AP4UyT//V/N74ieCZfiZqKXhe4uLd4vNmk1KONJneNdryCKJGfy0OeHYBRXxT8Qre58Naf/YvgRra5cQ7vsTypIrZBAVQQkjjJ4CgMOnHQ/fH7TP7THgr4afDW28K/DWS2jlUNaXVxpyeRFvKZZIdrmVyp++zSEA9scV+SXhvWr34k6s6W66rNfSyBp5Gu0kclskFYpI14IH8JyOuehrwpn01CL5Tmv8Ahecmmz/Z/FEdxHcKjI08lqsVxBMnKtHIpIlCng7l+7gZwc19C+Bv22Pjd4RlhSz0y11a1KsYr23t5LaQtwy3ClSAGHCyE5BHpzVTVv2Vrm4vNNlv767ii1CVRAqkgA9SrM0kg5BBOdoBzx0Nfp1+zx+xn4W0u0uNC1220zUoLxY5fst1sk3hB85iljnDKwAyGVM4JzkcVDkraLUc7W1PK/Bn7QGifFXwnceF/GFjJZxHE0U5byoI9jBngyhK8Ekn5crzkYJJ/Pb4tfs6+KLzVtU1TwnYPGHYXFpPaxMbjy8AsHAbLIBhsqWKkbh0Kn+gS3/Y2+EvhPT7xLQRpBeReSum3d47osmB/q3wHB6D5mHPI4rmNR+EHgP4cabFqDwOVifzLcSMrwojLibZj7gyx+78uBg4zmsVWdxRUXsfhn8AP2l/if8As66mnhjxVpryafd7JbjUorctNFLOC5PlurFXUEc+USM8EAjH2Ndftv8Axx+MNzKfhxpC2mheSLIa14jjkjl+TG2WOPqeXxEoQbjnqRXfeK7Xwj461D7N4dtodUuFgF9aw3AywK7kCvM4AyFAXqTuGCSGzXO23w48WxXFrrsyI5tZTK0KKVt1kQBYlToFaJc/LIA2STg1y4rGLl2O+hhVe8jh9F8KX+m28MWpzvfXV3dW7srArHENwkkaOPccgADIYsATwBivftE8CT2djH4p0w7rmH/j6icc/fLKSBwUOTtI4KnHUV2vhXwtHqtrbs0DRP5pcNEFkWOViPmUrnbuIzxt29xX2/4I+Hyy+GPt9xbKfIfbcSeU0ZXd1YqANyNkhwBjPOAevnU/e1OytWUXY+TfBvw70lwuqWLY8woECj/VEHeiuDwV+8hJ/PuftfwtZ6foNpHFaxiSNBsUoQSYyemc4yn6gV5L4j0sfDvSbl2aKOymYtb3CcqjEnaAwx8uRwT0IA7V3/wq1yLWNIZr941l3bzt+4HIBBHBxnIyOmORUQlZ8pnWhzR50di+j2mgeLLPxku3ZcI9peFepRxhW/DHzfn2r0fw5o8d/wCKW1acgfu4RGWHRuc/1yCOleA/ETx/Z6NocrSxs5ty7xxxYZz8jEoFwd3AJA9vz7bwNrN3qWqW3kTyTm6EMzSq2VMZRsMMdipOfQnrxXXF2Rwum5K57V4nnks9SttevGIZoninPYqq7lPp0Zqg+EdneaXp0moRDMlzOXCj/bfPP5mvOvjp4nbTrzR/Cdqu6VreSaUIQo2sUUc8cnk13HhW91OPwa9vbSJFcSReTbEEFYnfIQsT6HnHqPTNUovcxR906Bptt8TPDA+1rta2jDxZGGFxA+8d+64/PNfPn7RHw1fxRaeH/G2j2pknM0un3qxBiSyndGWC4ySpOM9T+FW/hx8QrfRtevPDFhcGSa1n2Mu/mVo41yMdN2B/P8PpT4b60uuR3UAVGWTUTKg6qu1iNxHoM46fyrKVWNT3S5U50nzHwV4X0tLbTZ5tbUiRY9phUfM0j/IkaDu7fcHoPoaTU/hJqPijQJZdrNb29o8chtjsDDO3y0Y/KqgAZJ5wfevob9o/whN4W17R9f0GMSrexyosMagKLiHnecZzkMMevNeoR2en6d4N0PwNqUcf2aK2SfUWZCPtBBDttHfLYzntjrURtqn0LlNtRkup+L1z8EdUHipLm7jsFurXfbafBJK0kGn265BJYKQruWLO+dzEnBAxX6DfCL9mGx0zRf8AhJPiDrVneNKROqzia3sI1XplTsaXB99jcDJFe523w10fWbtJLazIkMs95bTMN6KSC2dnAyAQckggd1wa2tOvdL0A29v4h0g3l5FM0cUl8D8qAH955Llh8xbq3Qd8kiop4WClzM2rYyU4cqODufh58Jr/AMUw69pugX/i3WoottveXQMdjDGg2DyYodsMEW44Utuc4O3J6XPF3wz0XXNun6/Z2en+aBFZwQ/K0k7gAJF5gYrg5yyoXLdW7j1fVP2h/HmjzsbewsbbTkCyCSBgyygHbsyqgu+egXAGQB159M8G/G/4e+I1bVvE2nx2+qzxmzT7QgNwoAUvtUZPG5VC4zkjOM16dNQlL4jzZzqRjflPxi+MPwU8UeFrzUPDGh3cEzzWohiaGVyizTzwiWadpnMrLtTZv2BVVQ2Rznxrwxo0ly2p+J45LG/8NeGrZUtxDJJI95eyE7E3BAreZIfMO0krGMZziv3E+PfwCXx18MLpfhPZxjVZ4ja2Mt3KoKWp3G4xndGm8HbkKzEFlyo5H4RftCa74g+Guvaf8MPCNq0Nh4fO3VPs+ni68y/nK+bMs1xst28vAjLLIyqeQCM13ShZXY8PWdT3Uczb+LU1KaOWRgkzNtKcYEh/hA7H2r0S88SWekWqwtIgmB2SDPKtjkH3rwS01m98P2t38RtSgnWY3LxaDZ6s8X+kXQA8+dUh37ltEIwCTukZUJODU3hbw5ql/Yya948lOnWt073iXd8rPdXgk+bdbW8a+dN6KzKqEYzIDnHJqejyrrsetJ4plmJkiYuOmQa6jSrjWdRgFzFA3l7gv2iZ1hhBPHMshVP/AB6r+jeByvh2PX/Clvb2OnygH/hJ/GuLGCUnkC3gmxGxxyFjW5b19Bcubv4TosWp+I/EniLxFcxZV/7Fha2toznld90ytsxjBW3XHY1TpW1ZhLEK9kjWk1HSNNLw3dx9rkhH72KyBYI3oWYAEf7QyPSqVpe3+rAiwt3fAyWVcgfUjiqNz4w8NfaVHhfR1DSYWO6vr03sxT1IlVgh4HAwfeujtvF0ogGl37X8UZJbcLp3AJ7BWJUKP7oAFF0tLhd9EZsdl4gguQJ4XTBGdwxgH616XZQah5KiY4yBXI3lzGbIXlpOZexz94Y9ay7DxZdQv5bEnnHPNKQataHr8++O0/dqSehxXIX9teSRiaViq5966L4c61a+IPFltouquohlcLnpySBX7N+E/wBlD4fax4cha5jimDqD82D2qqdHn2ZyYjFqlbm6n4F6leLczC0BOenNZDpLZRuvJLcLiv1y/aM/Yy8J6DosniTw2qQSwIX/AHfAOO2M81+UOsM1td/Z3AyjbT+FRUpuLszbD4iNSPNE4xm1InIEn4UmdT/6a13qXK7Bj09P/r077Sv+R/8AXrM3P//W/n1vv2Wv+Fh3Umpx6lf3xDssE1rbuLdIlOTtVzEUA5HAGSeM1+jf7NH7NNn4Y0GbTp9Pg2NLBLBc30ChGdAGDpI8oKnB6+awwMjHQeyQyW2s6VYfYJrPV9Tj3iZzaRQXcLjIdx5EE6bSOAQVz1JOcj6q+F2m2E1tZ3XiK5ttXDozBIAJZInjG0hiSVkVRwxAcg9x0rxXTR9BKs2jz/X/AIG6b4qxpXiCNHe3AEJt3lmMZB3BWZU3LkbsBWxxyMEV6x4Z+E1v4JWS71JfMd18vyGjMshDHkq7ck9++PUdK9y0+a5ZkmsdiaXF8oieRQGkDbiTDIrBODjOAwHUk4A8e/aF+M2m/DLwmfEzzeGdOjZWSyW5mYyzOOoCRYIAzkkKCOOma55RSuyYSlL3UcX8UfjD4L8C6VLb2d5DBdFWeMz+YzZVecYHIAAGcHB6jsfyou/G/iv9oHxtN4OmktpbGKZpUt7W6mlZiem4eWoKn+IBgAeQMivnLxv468N/Hnxwiah9pe5vbks1jo8LTIxckKz+bLCFPpkuo7kZxX6ffs0/BXwz4Lt1bwfCbu6uY0je5vYo12sSCwK2oA4xjknIzz3rinM9OnTVNeZ2f7Nf7KMnhC7mvrNEtrFUYPavI1yFL8koxKspPTp+Br6Iv/C3h7S7+WKyt3E27DeSoJkHAyR93I9gDivq/wCH3w58UX0UdpcxWVtEED3dzJbtuRFBI2q7Nub0BIznNdN4o1bwZ4ZgmOk2cE9zFGQLmVVRx1yQoUdfqPrXl4vprY0oTbb0ufGPh3wHb3HiGKVY/Kcc+TcLtSTdnHDgY545IOcc19e2NnBbaCILYMnlDa0F2pX6g5x+BwQe/c14z4N8RR+I/iNZaTZxNcTSI08sEwmiIBUgEElozxnJOPoa+n9dsZIhJbxRnyeV2RYR4/8AgPAP4ClCq4wui6tG87M+Ifjd8ND4j8M3c1g5ja2cPHbDATy35kjdSCpVsDhuD655ryD4VeDZNN0F7CCaVMoSsbAkEjI453HBBGM5+uBX3NdWEUwe1TEnmKy9NpPUFWVuVI7nlTnrXieq+G7nToZtA0O3e5kbJWJfndgecgpkjGfvH8TjFTRack2a1arUOQ8X8LeA/EvjnxXPDHIVEKxtvQgJNIkmFyWOVYjjJAKsFJ4zn6c+H3wpi8GmO7j+RIVkSONuAmSGZPm5Cq3zAZ4BI7V758DfhLe/Djw7LceK/s32y/uPPWAtkRsu5MFh3I7e/PQU/wCPclx4a8E6hqmlkmY2NxMgPA3pE7KT7AgAnNdqir6nnzxDa5T82rLUp/i38R5/EUYmVTcf2dZsmXDRQMVXK843HLAgjqDX2B8R7my+H3w4bwrpjhtTuwtvbgL+88yYbcD0YElRjPPP0wf2ePhzD4C+G58da7GLW4itkaMN/D5gUFmABIGT8uRnHBxmvG/Ct5e/Ff44WyyzPPBpl490iMQUadSBCvy9ELAMc4I9ec1njK6jHlW7N8LS55c3RFj4D6X4ri+PGoW108d2beSRLm2ZwjSIwISa3L43HayggHnp1r7C8D+JPEfh74mG30RZbrTtRjkt4tiMslvMwwyyRsMja6nnAx37V55rqeHtZ8SWMMsTR3mmxiW2urcCOYm4ZoSrFf8AgXPKseRivTJNUufCmvaTYQSlvtzuk87fNIqpF5hO7uwwFx7mvKjDaz6noTldu66HvetalpE+oLBqcpvTpMqywmMHaJJY03HHqCRtx9frb1/VdUutHfU3l/erHsSKMbnT5cJ8x5HLYA745r5jvPHtn4LtLyfUn+dtSEt00YJPmRKFwMjgM0XHpkV55dfHTxJMLXSfD1u13H+9SVpcRyK/nOiyHOQURUZ2JwB39+mL1dzm9nfRI+rtP+J+keDvC8F94rv47eKFWEgD8mcNnaNuSwBJ4HU4B618P/H/APbJ8OeH9I06TwxDNd3mqzLdCXcTG1uixl+V/hVNuWbhmPy5zXq/i34d6bc+FdMsLKJ7rUbWCeSW5L/u7SPa/mZDfMWZnVgOPQEc15v41+EWjWsujW9/pMS6dBLaQpbRQnznMWSIQ7EsxmkhX588ogBJ5rdqXLoZ05U1K8tSnp/7bnhuax0uzkhe/ub+RYLRJEYKkpKqzKowVbLIqE8nIUHJ4+qfAHxF+E3xK1RrOa5umj0fBmlsXjtIlPKOQdu5mmmZkiwehzgBSR4xd/su/EP4i+N9M1vRvDs1rBpWii+t7BIsO2qy5jikmAGHMTyGQgD+BRzjI9/+F3/BKf4tQanpGh308emaDpz/ANqas0jsLnUdSdTHEZCo/wBXbxAIqjozO/G7Fd1ChV2tc5K9ejbex9WaVe3FtpceuxF0hmhD2sOfK8uKQAKqKQZNqxIrc87QnHzmvz6/a7/ZE0z4qz2fi7TLiWyjht5bjVrq4eLdHZtwXd51G0uCFTKMmTg9M1+0qfss6mL+SPWNajtiI4y6WkQBii4CKMnkybWODwFCgcDNYHxY/Zn8C+MPBZ8Jxs2p2zS/aJrG5kzHdGIlfNn2Y34J2hcbFBOAWLZ9vlunfY8KliuWd11P5hdE8HteXU/inwraQaR4d0VEsp/HPiRvK0jTY7cbY4dKt5o2kllBz85he4lfMgSAturyvWvij4B8C69Lr/wqik8R+InnD/8ACZ+NrNr25MqkxM9hpjP5NoASMzTG5l2kMNmQK+5v2qP2dPH3h6W68f8AxUa/1TStOV9P0Hwt4adLXTbKF2It4sjfGsnyhmWGKZ5G6kADPyRpVl418P6mdE8NeH4tAMyKDZaLbvJqymUZb7TNL9puWyTlQrZHTYMiuacbaRPYozi1d6/1+Py0POLnwt8V/irqU/iTxV/beu38u1Zpbq3uZBFwPlW9lCrKmSduPu9BxzXYxfCj4h29mYp7Pyo4yFkEk8Ctk9Mrv3H9a+5vhh+wN8WPiHoC694s1qaCa6smlstK1YKy/apWGwTIJJJmG0EyO0gxwFjHQYXxa/4J5fFv4W6ZHr+j6hp+rW6mOPgNHIpIO9tq7gFHbnpWUqMrXauXDMKekVJL5f8ADHyvonwx8T2uJo4SWBHzJIhyc4AwG55qzrCeIrS5Md1FLG0Z2spXJGOucZrLfw740sDJDPCJEjOJJ7Ql1T3JHapNIM2nzGa4v5JuOOuBWLS7HSpX1umaOhapc29w2eVbhgferU2oBp228HPT3qWfxg0ibLt45liyyZRQ/PUFgAxB9ycdqoRXOk6xIWj3WrFflJBdS/p1yAR35qXbuTZ9Udl4YuZdOu1v5WKlSCrDqCK+8fh5+3L4r8DxxaXcqbqFAF35O7FfnEJtVteAfMiBwSOgp9reXTXRLNiPtTUmtmY1sPCeklc/Sj4v/tvar8QdHbQ7GFoVkTazNxjP9a+D7uS2u5ftUzgknJ+tcpLcNIfMYHC8ZFYNze3G790CzbuAP8mk5N7jpUowVoo9KMpBwmMdqTzn9q81F54jxwi0v2zxJ/cWkaM//9f5E/Zv8Z6Jr9jdm+RIIHiija41OVH1B0kAGZfs8RZBnpHuQbjgE8V9zw/EDw9ptpH4Cml1K2i37ZJVCeUq5J2l1fCAk4JHI6Yzk1+MHw+13xbYalbWQSO0s4FXUDcWUT3AtVH3pEdty7mU7c/KQD1BOD9LeLf2gnfww2m+BtPjhuLYyLcXBjWaYo7bmea5kHlGfgBY41cKGxnd08Wc7Xue8qLbVj9HbH4i2sHh2e8t4LNg87QWckQcmRVTAVE+VmO058xyAAeByK/Eb9s3xXJ4r8VRWt7eutthkSO4QbFGSNsUa7Zpj6rFhR/E/Wue139oD4g32hNo2iSz/aLkSrc6jLkvtlI/dKCdqjaACsak/wAJBy2fFfDHhu8vvH8dxqsk+pajOY4XvbovLNHIfuookZlVuflh/hXrtGccEqiloz1aWGdNNn2Z+yB8IPCkniGL7ZZ+ZE0KSzW97ZRCSY9SmxxK/wA2TgRpIT2Yda/o2+C/gHw/pludZSyMQhEccMNxb+Q6LtGCpwWUccDCknjivy+/ZF0qwtZ5bHSY2juLG73XU5vfKiNwq/NE3kxh5Tzlo40VcH5mYYz+zXw6tdUktoYPJV2cMZr1pomCDg5SIuAueQAOfbrVqkrHDiarvZnVSQ3GrkaXkJaMPNcA4cn1OW5J7Z9K8r8V+CfAtiJC0rtK4KxxKY3dnAJyEAPA6nn617b401PTtB0vytFyWlJDs5JkZicc/dLYJ6DpzXwf8R/iJc6VjS7MWq3cm+KW9iIEyBlGVyGyQD1+b6gV5uJpxT21NsLKTtZ2MP8A4WL4F+FWoGfTIN+pSnc81vBHHtDKRnAX5SfVW579ah8RfGiKDThqCLdsZh5g+U7QT6t82OvJ/nXnPgrwUvibWmm1XT4blmyJJ1eRVI75Qgg+udx5r7G8JfDXwpp91a3GsRp9nidXFmE8wvj7iEcHBYfT17150cDKb5m9D054qEFyrVlT4JfDq51jw5/wsX4pvdafYzHfY6chBkmTqJN7KcRMOhxuOeMEV9NeHdH0K6eW48LWEOn2zR+W1xy7yCMgYcOA5bB69SOcmsvV/idpvhS0dtRSKa4xuit423NEgHIXHH3fb2wetfK/ib9rW1tUm/soXck0w8sRSpLsjOflyAuFPbqK0niKdN2OeFCpUV2fU/jCS0t9HkQs8zCRQ08eSAgYDlRyAVz8wzhsHNea+M/E3h3UPCk+neT/AGkLeS3SJW+b5kXd+9KgYxjnJwScGvlDWPjh4o13SpP7ctXgR4zmVHA2bv4Gyqtg9+Tj1rntB8bar4m8J3Hh3ww9uIlDedOVEoMhAywblmdeuWG3txWkK/Mm7EPBu6uzT+OXxla+8Cy+HvCUKfZGVhIItwyVfaWCpjdznGW5PHTNeRfsx6zp/h/X0uYprfz7yRGui+TI692GcE9BjjbnOM4yPmb4n6z4r0/W4PBGkSXF5ePKUnuCwDnkgqGfci55AAAI+YjFfUf7Ovwrn0jVvt3ia9Se7fc5jsJRO27ady+Zgj5dy5479OMVwSlKU7nqqlGFO1z618S+HLfw/wCPj43sJm3ahAiwpKyshG7bGuXI3HB4AztLZ5Nbms+F/GHj/wAawWPg6znuGsYG+3Wlqm+YeZtLSRkbskoHyucnJwD0rkfE3jrT/F/imz+DWk3sLXNjMhlUMHjZsqhRpdh2uuW6uDntjNfr/wDsc/AmTwTYweOPFL2p1hVlj+0xOGWazLkpGx2ru2gDHYHpzXp5fgPbzceh5OYYx0YJvfofFHwt/Yg1/wCNehXN74xWSwJuDFIkoZQJYJSrpsOCu9VRs5zz2zz9x+Ff2DPA3heCWaYb7mW4M/mEfdALMiYz0jkbeADyeue3ufxS+POjeCIZAnkrMTvAPy9Bxkdz0HvXwTrH/BQ20uPFSeBtNuFn1G7dlghRifLAOMnAAXgHG7uMda+qw2AoRagld9z5+vWxVSPO3ZH3h4M+Avwr8JzCS0tbeWXZ5U4uUVw+YxGwYHOQyADBPP1roZfgd8LH1mPX9Rtov9FzcW9vj93E4DKJFyeDgkYPqcV5V8LtctNW2m6uGvb+5JmluHZ/KBYD5EGSCq9yO5xXpGt+Jba2tJrO7kYSMojVYUJRFDnAY54JxgDOe+K6a9GjCPvRR5Sq1ZOykz0WXxF4O8PKohnjRyirCioGuHUDqoAyOSap6p4yu2s447JnhklmaK0S7IRp5FYgKq/eYcZJGAFXPSvirxd8RPF+kSGfSLbT4Uj3m51bU5UEVuxJxuBILOSSdozjjNfH3jD49aD4C1k+I/it8RLMXU6zNaWlq6yOtrBjdFEzttUHBaVsFnA252jB8adVyu46HfTpdz9R9Ui8UyafLY6TdtqV1PvlnNupSWTf6DdkIc+qs4AGUQV4m/w8+P2vanNe3ciWNjZ7IHjaYAyIowfMZMZ25IWNVCA44Jya+Rfg3/wUE8MfFW+ZfhNDM2nuq2lzqkrYee4lOSm8jlsKCxDcDPIxXtfxL+Mk2u+DY9N1nWhaWd7eLBcm3lNvDGwIJAIP3hncAxZiQBgDIrFUefVtnRzSg+VW1PafE0ljpViugWc2mandWkarHNd7Ta2n8JYRA4Zs55YuWPUgcV+Sv7YVh8PrPRp9btVgu9Ut4if9IllhhuLnP7xYLSF40kOR880mQoO1Rgcewj9sH4V+DtDmT4X6Hda/dtOtkl75sUYaVX2JuuLhmbAIJLDpy3HFeseFfHfwO8fNZa38VfDOlWOqPG7pLcSxzJGGbb5hkckfN95BhsIQcjJJ7Fe1tiIS5Xdo+Zf2Xf2//CuiaPpXw0+NEEel6xCot2lRIorDEjlYgWh2KgCbVPIB654r6i+Jn7YHwj8OeCzqr6nE51W0maxt4wHZj5ZxtwxOO3J69zWD4p8NfCbxXc3drDpfh/U4rl/LtNQDJLJuC8MrOnZM8Rj1yxJxX8/n7V/gXxp8F/iWmk+LdStotHnCXGmXs+5JDHI3COGLBMEY68DHTOKiqpxjdFYejRq1Ox1g+KF3qOoX/wBk8+2tphLJbbWBG7OQxbvnutZGq+ME1LQkkeNBeoxR5VAHmL2JA4/GvC3+LPg221V9BuLu084QiYOBmNi/8Kt0ye4rttC1bSdVk3QkqMF9oGQcdga8t1JbM+jVOK+FF/e94gVyVcjPHet/R5GFo1qMlhnLVyf9tE3DPHCQBnLH+EetZc/iO8tSYISxWU/eXg1KlqacrPS9Lvb+zmkAkwuPmDZIIqHUddfCralcOflPbNcXouriaKW3MhKhTlz1/Ws06lp5j+yW00ckgYspJ+7V+0M5Qvqeo6fJqVwvk3UoUE59Ktv5sN55aSrleSa830vxHLCBaTjc2cFv6g112FismnEpffysqjOP/wBVUpXMnGx1JvJc/wCuNJ9sl/57NXnKySEZ+1y/98ml3yf8/cv/AHwaYj//0Pg34YeEJrn4f2+kWqO8PkiaJo5kEk0+0YkYRlJGjQlsIGbg5bB4HA698K/HpVdP1SL7NZybhbxB4oEiihhyxJgCgBieMcnuwya+uv2YLXQ/DfhKK71mG2uZR8889tvurWLdnCuDMJG2/d2RgEkncMDnU+KvjGz1kt4o0+W5m+zw/wCiL9iaGOMIMea8jeWGIOBwgGTyw7+HOCsfQ06zUrJH5xeMvDM/he3hstMsgHkAEIndIQkaEAySFygjD/eywLEn6CvN/Atjpem6h/wk+o3CXV4xMcaWcotoIWYsN4kl2soYcjagZsFixzmtHxHBrfjPVtSRZVMcczia5lfzvtUkXCb22qPIjBI3YCknAzkZ9Z/Z9+D8fiKOfUtespzFbrue5ZFgtoZBwp3FpGklkQNhFXcAFB744OS+x6qqKK1P1e/YZ+Gt/ffC2bxRqCxWtp9pea3tlZgLtTnb5s29pXRnYbsspbB69K/ZP4aWf9j+HrfT02G5md2naKIqyRgn5iAgCDHUA5A68nFfB/wD0+/8M+DDAoMl0THcb7jywJIoowkMiRkiOOCMHEYAAO0uTyBX27Yazq2j+EYriRo8vbmK3WN9xVImDO/mN8xC5JYr/Ec8nOO+nTSR4WKqOUm2ZHjyWye+awMMbzbSySXZwqg52s4UHA6YRmBOecV+fOv6FP4j8bSSX15pMNpEGDiG1jkbjPHmuuM44brg96vfGX4swaPCfCnhxriZbq6d5ZYUy07vh3Pmk5ZRwCd23jHtXyl4s+I/irS9MXTJrS0sormVIkaaUF5Uzzt7tkDooVFH8XeuCqk3do7sPBqOh9vaZrugacY9H0+WIErm1DqnmTNnGVA2rsHPue3c13mmzwxJNe3eqTtDaohu7mUIiCQtlYkXd82MYyTwDxmvlf4caWk0yapdus8FvEyiSBwQ7PwS0hZQzIeOCQOFBPIFzx/4m0zU9Qg8L2s1ytlGiAvaAeYzggsZNrdc8c549OawrNs3hDU9N1XxE/jm6u7TRZZ/9Yy3DQ2/mL8xO0bGcscDJxgA/jXovhj4b/2TaLPqN2ssbRgYlVI3BAwTtHAJ65B4/DNHwt0bTNK02MIl8w2gmSZt3PsCSOvXFevQeHNQ8Z3/APZmkwGQ5HmuVXCJnlicccUUMvT95ozxGNaXKfMHjr4Rap8W4Lyx8CzeTDYRbry8DMoj3dAGiJLOwBwMda72T4eN8IPhVH4b0iO4mvp4Gkm1G3WNJCXUBSg6rgtjdgkHntX3hf2PhzwL4Th8PaREipggJCoDPNJz87AfNlsAmvnD4u3Vx4E0C8kjc3N5MTcM0kwyqZBWNFbPA/8ArjFZYuirOKHhMRzSTkfm7p/ha20nXbPSvEM41HUJ97gXB3MZCesZZgS+3BDc7dpJPevck0X/AIVPdjxJds189xaMbSS23ySrj71uFyikRgAkp8rZ3DJOR438CPhnHrnii6+Nvx1mCafbrcPY2cjskfkFsLnZkO0j4UBc5zgA81598ZPj7c69Zw+D9Gkm09JY3eMGfabP7NLcbJl8zPJEfKknKvtPavNglCLckevK85JR17n2D+who+v/ABq+IN544vId32mdJLoXkUCfJDI3lt5iKrFwrbAyHooJPNfvfrHijRfBWiDT4CkccaFV3uSR9CTX5ff8EztH1bRfg2L7VHhk+0Fbm3YW6RbITGuOUVc5IJ5A5JxXv/xL8Max8TvGx07UHEWhW9tslk3EbpmYPuQr825CAPx7ivqsuh7OjFJas+WzCp7SvK+yPlf40/EDx18dPElxoXwptJZZVUxXN252CPYflZFbIkXPUAZr82vjN+xX8TvgNYTfHrwV4yuBrtrG02ptcKGs7uOUZuYZUZSysTnYyEAcZGBiv6HPCHw80TRfD0el+GdtrbxKyz38qYlkfPQZKFiRkZJJ9ua/Or/grQuoaN+yPrtl4fnNqskJkuXZUZmjwPvEMrxg46Akn0r0IV1FOyIVaU5KF7Lax8V/B7/gop+3Fpnwtfxj8PPBdnqlvpyRtcWMkri+njMSsRbRug83PLDax3Z4BOBX034R/wCCvHjHxj4IXxJrfw38R6VLbOsF8NSEWn7ZnA/1f2x4i/zcfLkqMZ5wK/H79mn9qD4iv+z1p/in4vPa2VsLT7LbRwqYzJawOYoZtzDcDMqhxnqD6Gvzb/ax/aK8S/EuSCz0i8ng02082dXEhCs+7CnHUgDpX53guKMZjMbLCworki9X2t+D8j9dzvgPLcFl8cTUre+17qX2vXtY/rZj/av+Hv7RngW5g8m+gWUCOWwu43jkmj2kkgj5GDdNyEjBya+NfGPwE+BHxMsodZ18MtvozPDawIQPKYLvYbmLHa2d3IOeM96/GL9i79sXXvBngKf4ea47SyANLpi3/SKZgATvBwA8fBXOMgelfZ3xH/aN0Sx8G39veymS7trBNWuIndVG1nCKDggsWBY/L8o9Sen1fK1JpM/LfYpH0to2taP8GtEks9B1Q2NsZZL1UaZWKwyAjdj7rMMFPkIYPjjHFcP+0d+2De2PhayfR7vNvf3dpc2unPE32kgKPMnfzGEiOW+UkqcORtQYJr8qNe/aVvfiDrclhC93PZT2sV5KkjeVbqkeXjjfHVQp3kDChjjByKoeDPC3xp+POqWsR026k07TCI7K+uZzb2/nt88ReWVgAF3ZfCvIyjaRjIHoxSWjOGVOTfMz9AfC3xf8ZX+p6LaOLKKB7G8NvBaGSMKhj8ye6uZdiOGw4RSWK5yFJJr6N8NftNWPh+HTI/FVjoy6XDFE0EW55/OdmIaZSAqPLlPlUNznGemPg648OeA/AzXsHxW+L/hvS9V1ERW1xZ6b5l5tWAgoGd3U7cg5UKF6da9X8MfDHTvio8V54K+I+leKU08borSPyY4lKgEB1XzW7YYjAxhe+Qp2toKMNbs/Vb4XftN/D74j+IoNE8MaVJBbef5ttqDE6fNavtKHdETsIXjaAGLDjg5I7/8AbA+E2l/E3wvbaZ4s1dZLNrUBpLwNsicgHzJGMiIqRg72XJyccLX59+Flk+E0cV9qFpKssbiW51NZyyGR4ydkCRuipt3coFYIM/U918Q/2yItc+F8vh7V9VvEF3HLaJYiyk+zXkK4YgzAl2Yg9CRnB5PSs+f3bMcKbc04H48LbS6V4jvPDlvaQ6lYpeGO0vN4WPCNnEZPLHYMkZxjDAsCCfpo61b2FqqWltIIzEjIyjau3AyT15zXO6m9r8SdGFhotnbT3tjM2p27RF42hjAAWMJGSuyVSNzsWYEADHGG+GpIrrR3QpOJxNtkj8zej8ld4OARnGMHPTrXl1qdtT6GjU6HWnWXitkvNPVuCDJngEdxzU+oSvrMf2i13RIoyyjjB9ax7u9tA8tksJ3xYDLyRnrz6VJoV3O07zSgoAQuyNSykCuc6OZ7jrFXuInsYiUbJ+ZDksPertlo91eW/lQx42Hb5gTBP1qazvI45TOojji3OCz4XJzRqmui3tZbXRppGlOCAG759KAkeiaXoNrb262Us4eRPmXfxjPUZ71s2kWopZGwmjBQt+6dDuz9RXCeBtQn1ZhDfqzXIfapYcZx2Ne22umy6asl5dyHzIyBGgO0jI9O9bQehyzVmc2mg6mEA3hf9kpyKf8A2Fqf/PRf++K6dbi4nHnF4lLc4ccj680u6f8A56Qfl/8AXqiT/9H4O/Zj8d6JF4Rih1H7XfS2bmIaZaW5aF4wQxmupoT5Y+cgfu8ytgLlecfRSzXfxrv7vwbotrbW2nNIZrm3songEkUZBM9xdu+2ONSSBHuboFB35z+Wvgnx3rPgXWZ7GwhjNqqxvcj7WyRwQMd6oGbYiFlzkgFicgdSa+/tI+M/i/UPBDaVoFjcO82qW7PFYbJLeS3cMZAHVdoUYA+bPljI3Esa8SElJHuyp8sj5m+M/hO60jxU1holnBc2kNybqaeRvKgeKMAYKqQyqWVhEAG53cHBK/WPwXuorI2URs973V3H5A1Et9njs4VG4pH8ojDYJwys2xVZyC3zdBrVvoVpZS69c6Vbyf2lJ5MD58wSTAbXEByVSGMdHIZm4/iO0a+ky2U0VraSxH7bZHyFuQyQW9tcgeY2+YZykCb5JAv8SsSd2TShTUdTZ1OZJH3nba9Yf2BeQ+Nri3F3cSwxaRpMC+TJcQu42wwwkfIqxgqC4BAcEgGqr65rfif+1NYuXa8ktvKisrK2lfy4lRt6QR9CVQkBt3DOcn5WAr8stP8AjzMPE1zr2hFLi7vHvNO0zWZRIy2GnWvE10qDOx5VDfMRlY8c7yK9Jk/aYt9E8Ez+G9DtJLS0kllZbuYFbieeUYLvgBgkQwHIOF3bV+bcRSkmZfV5LQ0fiF4/v9N1ZoNJa2juUK29xeLC9xBaSyEZKLuLSyE87sgHGcBcVP4Z8HrJq7+J9TefWbi7CraXOrYIkZQoJgtmzlRk4LFtwAwSOni9lrOj+fpUWopc5uY4b60sMjzJk2tsknjjGI42GXKcs3GWXPP2h4PhtdY1dVadprtjsu3uF2tEZBmK1jYBAmBywj24APTPPK6dztc+VWR3U/jq8tdDTwloUF1bSeWHkkkw8sjgY4KorIo7YUjjAwOad8Nfh3Fe6q/iDxXcRGaTazoyks59SZMn0GAabeXml2kTWGnXkwFqXE0e8ShGc5+cqQEOBhQdx555Fa/w/vIVRtTDfuWLCNCrER9yXce/cn0xyRWfstRc+jS0ufc/hDQbGeOO2WVvLx8piRWOO+1T6+pOO/Ir3i28X2PhnS5NL0G3jtnY7A4HmEseOw+Zjxk5x2HFfLXgvxUJbfzJ7J7aJAYftJjeMygcBgGPK5PUkEjoDnFdrF4vvWvIYtNlhkvppwLOGVCjFsA/NtDbUA6jP1I6Vu6llocDo3d5Hq2r6xNZ2w8V+MXt7aKM5CXDCNRJneoI4JOABhfXHXivkLVJvG/xw8eyalpMKDSdOIdbvYV3su4GMMQMrjoFAO7HPWvpJfhpba7F/bHxFv1vnD7pC8my3VwdziNWwoC5wO/qa81+M/7Qfw3+E3gptC8GX2lSajuWFLWF2YK4fG0mJJDkkEE47Zrjqxt7zZ00r3tA+Uf2jPGGhHxUnw08N3U9toenIbzW3iBZJDaDcIpFUqPLDglyc8qMDnn5G0X4X6r8S/Hdj4g0+1gureW/W4mhvLW6tmlhd9zFmWIeU3cY3jqHH8VaugeMpdQ0K/8AFF3qZ8QXt7PNeXdraWx2O7FVCCSZ1KwB8bvlw3Ix1r9Sf2aPhtaQ6Tb6lfaMJrmYJcXt1dRyTxCaTG4rIoit1DEZC7j7ivLdNTkmz1uf2UWkfdvwm0FNI8IWmjaeVENvAsaiLbGgXpwqqAPpiu31GGOC2bTtM8pZ53AjNwPugj5pGHJJAJwBx6961bP+z9L0YyXUltbpFDvxCQdoXnqqqv4An618m/Ev4lxad4G1T4rEz3Qi8y2sNNj2xecImO9VwcAk8ZBJPXBxX0dWtyQ5UfJwi6k3Jnq934zS+1k+F7i+je1s3iinmiMckspwCIlVB8m4gbiMt2B5JH5Gf8Fkdf1GT9nG5021Bb7VqsNgqAhoZJJZEVEdFAZwB7YGehzx7b4f+Ifitvh7pHiPwZZ6VpWveJdRE+r2F3MXEcM7FVEZyXMpiTdnb1OAFHBh+L3w70PxD4d/s7xhE80K3H28BT/o6OrboVBl3yFy4DFgAOPoK41TaV2z0YTSmuXofxP/ABu+Nfxd8X+Imj8XRtbfvktmSEFbfy1BCRRx7gAnHXBP8q0Phd4cXxjqX2fWrdVTaWiknLN8yKflVcfNkleemODxX6n/ALSXwi8I6r4/uLKw03yDdTSSRXXlbgJDJlFAUbVP06ZxzzXz94M8AWWlalLaW29pIN6ROhUzKmSdqsxYH7hA6YA56gVo4wowVOnDlXkejPFVMRN1KkrvzOP034FtoiXDacSkuxpYU3KQhQn7rE5IXGAvr9MV6D4Y8J6drfhjU9W8QRPNqk1kulXCRsBK0ahwHJPBC7t3IU/livYktrjR7g2s4SC1cyMbiYM28qVYhiSpxglcEE8HDHAre8B6VbFpdYeDzP7T3TqrblDRhgEdW3AHIIxuHUHrk1wKrLmuOoly2Z+YP7OOoaP8F/H17B8bo5LZLeSOJG1ENtuwzHyGjwP3gMceT2PA4OK6n9pz9pz4l/tK+MIvA3wPurnQ/B+mMyi8tAY5Lyb7rsuMHauSu7I5yB0r9Hf2oP2Mbf4/fsxXtz4F81/FHhm1n1HSZ0G2SYOoka1ccNuIA8s54PGME18T/sUeHvBuqeGfD1zexrDBDamC8Dx5eO6tQwkhkXGQ3mJhgRnnNZ5lmHsVGqvtNLXZeZywScZWWyv/AMA8e8DfsH+EtUgFx4u1C4lndVJZJGDFm9XJzz6jvVfx9+zb8Uv2YoE+Of7P2sahNFpMqSarYs4M0MLHG4MMCWIdJFcHA5z3r1L4lePtZ/Zt/aXu0uLW7l+F/ifVXFnNckyraLcuzNHIR8sMsTsuMbVkj56/d+otd+LHwu8KfCbxbpuqXNtcSatptzpOiaVFJ9pnme4iMcZ6khUyCT+WTXl5jiMVRlTxGGqe1i7bapq9mvJ/8Oc+WY+NSboVYWb6nsHwn/atvf2gfg7pGo2tmH1jyPsOp2kx2xW0iHawVSAWEnXbnkfLnivnv4y/s+/Gywv11KbWLq0t9Rka5gtZJZjhX/jVVLbMYA6cngdBX3P/AMEmv2KPFvg74Zy/Eb4w2lzFHqE/2yxWceZdXG0AIEgTMjK7DkghR2zX2L+0B4OsPGlxNpXh+zvtFdMzOw+zR31xMq4wX/elFB6kAfd5PAr6+MG7yMqmIjGfLBH5i/s6+FtF+Cek3fiHxxrE92z28wsrS0EjXD7c4UmKSV8bgcoY1Ixk4Ga1vBOkjVdJ/t+6SG2F1KZY45CUIikJJyzMckAA7jg/pXSeJLPw/wCFLu2j8Qy+H5J7a6Xdepf/AGqRTHhAvGIlIAAI3MOrbQea9X0P9mrxX4w0v+3vgZrvhzxBFKZL86Bpl3AuouxXIiEUgTzkBbGIyW46Y4rnxMHJWSPQw84Ru5Pc8quE0e9spLjw9drcbFIfYCrYJwM5wDj1Has7Qr24t45LW1dmILDYF4wOpYntSx6h4i0/UW0HXvD1zYXdmxtruG/h+zNbzIPmidThgQc8Hp9DXefDT4VfEX4r68/hvwRpczFZPMubhvmj2llG3eM7QM88enWvOSd7HfOooxuzxPxAL1bBrLWru3hDu0iKVMnHoCvT61Q8GiWS+SxMsNxLK5SMBsFkI64J5Ir9B/ip+wZ8f9F0G5uvCNnHq88cjubSODcjRJgFlkYglznAGOa/Pu++E3xD8G+KWsPGWjtpl5YzBmSZWi743KzbTgHjim4NatCpV4TWjPVdI0nVtOvEm8udVQYLlsbfQkZrpLzxJcWSNczu19K42MigqsY9WJ/mK4e3m8SLdNJeTf6OY9vkg/MyO3JLH25BpfFOrP4O1COKwZLmOWMZmncrtR+AvoTninGVhHrVt4isYrdIyqnCDlVLDp645qb/AISaw/uf+OH/AArxGP4hzWka213b3kUiKAyJCHUccYYHnin/APCzF/55X/8A4D//AF6vnRnyM//S/GDxD4Jn1GO8Gwt5t3b20ryxF4fOjUDdG79Y0BQLGi4ZsABuTXQfCr4py+A4/wDhBdcuRaxzw+ZdXFqVEsULk/IHkdgoxk7kiLc4GS1EXjzT/HEa6bBbpp8lqGtYPOk/eCKNhulwrKY0c5OGc9QOSSa8a8YaXd6hcvouiwtA8EkM0175kbkKMJHCoKkNI4QuzZKx4PLHAPy9Gq0fV1YXR+rls/h290SLxTdyPZi3s1a2t4kP2iQR/O6+dJKzQYAOCVG08ryATn+MtPutT8AnRtMeCJ57Yfb3tct9jhmUs+WOMvIOMMcKm5pCGIRfgKD4pa5ouiNY+LbqK1gFrFYxfZ493l2YYocoBkyOSz4KmRmxuwRmvX/C/wAe7bxJG/hPw7jStPiszLeTxt5jq27Ku6LuLyMg2gHOC3AUlVr0lZq6OGMXFlDSfhe2nX+qahtdo7S3jW1hjZxE6ysC/nSDDSgErwMsS4Ubd5Ych4x+Kd/rNxBot/D9reArbnTjtVZHbKnziAdqrvZVHGN2Ad2SPXk8TWMWkXfgrQbmSO5dIZbi9uJEkkjluZ0eOJgSw3jDPtPQ5LdK+SvCMWma3rMscTTCzgkczsVMrTMHKRqqY+YRt8zBuHIbcQg2vnyI6Yt7s+zvBXhK91O/bW/t815evFGqS2a/uZWddqwRO2FWKM4OQuBhdhOBX6B+H9Ei8FaXdS6u0x11rGO61CeIBls/MTMqjBYKqDaMsVLNkggEV81fs32bTastxqhllubJ1MdrOwml3ugESkuMLtAXOfn3sCwVRhux+NnxPGj2T/DHwsJbjU55na6YhjD5hUqzhFB3rGytktjkZJJbipU9LmMptysi3oviFNX0gabpEV7Gtzfb52WMuM42AMyKqmUpyTyEUrgHrXtOiX15pWl2Ul8ZrmFWjNrZ2SlHYHhUEnzHALfeBZ+pzjJHi3ws8CT+HvAt5NruqzSQ3U7SEzAxiQsseMLgH+Lc+Sqljj5sYPQ2Pi+C1dLnR9T/AH8sszyX3mNFK0Ctjy4FVSqeYfkXA3bRweiVzTjZXNVJNtH1fZeNLW+judJilufMSUASFH6oAPLTexdguSxZjuPyjIyTX0p8P4o/AekL4l1ufzLy9jAhjitZJmghk4j5HTPLOc4PHUdfizwH8R4tGRvEmtG5uCbiVbC1s2CL5jMoEeSSPl/jbn5uSSx5k8ZfE7xX441R7me6E7WyLOulvM/2eHexBkklJ+ZgAQpI5wNozWbdldlOm5aXPbvjN8TDqdp/Yd1c3tvZzTOz+bc29o7ug3AKW81xucgYVfY5A5+RdJ8OfC2bVJIr6SC5uLdJLiZfIur4MxGGwZ3tom6soO3BYk4wTjrNI+E/iXxVZ/2rLFFpcNxOZre+v28szbsgOkYUzyMoDEFVKjgBuCap+PfEfhj4GaSs0KW+p3cyKjX+qE+XJkbYkjtEYmQgHcd8jgDlgTgHgqtvV7HXQSWkXqelfBPVYdeJ0vwZpMtnZ2CsY5LlIfssCyPkB1hWCziP8QEokb1Jzmv0k+GEVvBGLvWb+W/RSMFp2FojdAsZYIhHH/LOLHYGvzS/Z78J/FHx14fiufFWq+dHdXLBLiIiHT8yn5IbSKFEZnQfKYoATxlmA5H69/CLwT4b8Exx2fhqzW41Jox596QszR49GLuox6B3A7uelefSTqVVZ6I1xcowpvTV/P8AE6LxvY+J/EmijRPDtomn2jp5l7qs6m3jVMjIXcDM5PQbQo9xXx98cPhInxR8QWt7rGpXlvovg8RXl3bW6tbWbwW43eR5Kk7/ADBncZWbI7YNfffxWm8VQ+HW03w9MLS4miDvfT/M0S4wXRTwNoOdxHH8IB5r8rvjN8TfEmn6Wfhz4JVotBs1J1TUbo7Z9XvHyI4RuG5EdyZJZDxsGByVNe4lepbc8OErQ7H5nT+Ntd/aJ/auT4s6XNqOg2eiGSFtK3FA1qeIWjjQMUEqfPliGwR6190/H74t+H/C2iRxXTtczxqrtDLMygyOdoOc7nYZwRkHPA2185XbP4Lg1PxXZxxanNGFfULeLgXNwzBpXlaOIY3SfKqqzEDIY8EV+anx8+Kes3n2qzmNw01ypEVskSzmC1kkJx9rUSryclec4XkBcGvSnRvFIUKi6HUfEjxJqHxF8QW158LPEOlvFbnOpW17buPIjG4okbEgHbtKDIJJPQ45mvPg1qKT/wBuaXeG6kdgLs26CQiaRVYB1VVTyl/5aAgEEZORX4p+Lv8AhbXh7xPB4u8LwXUdzZKt5Gtqxw+CSQwIJK7RjGflr+iz9lHwrq3xI8A+FNY0y/i1DT9TjW5juGjMkwlIBbd84DEMWBJ28ggAjmsq1K6SbubU6jjdo8kv/AGoad9m1i8uLkWUd0kNxNC7W5IlGchOUcYxkLuGAMg5rAvTo2hXsv8Awj08cb2EjXg02eR5bZljjYyFZYwS8Z3EuRGWz0BCmvtnxR4Iu5ra78LaPIq3TtIHlMbxBk2kbgJBsMceQXKOWwMMBjI+Ktevn8H6c2oy2v2fTxkKYwESYW8fkTh5jlAEmxhVGXwTxkYxeE2aIeJbZ9SfBv4unQfE1nqmvXFm8F5KsWp6Uu2OOLcVBKoRk7A4O4kkj2211fxc/wCCWHwn+PviCT4w/s5+ObrwRreqSxy6lZ6XKJNLubgpzI8AH7uR1HzMuMnkqTmviXwXqdpruu6HqWoJaW9pqVsl7eDU5GWaFrbak8bQSSNI8UsfEZOMblywxg/pn8NfHCeAvD8uq+HrqO2ttO1b+zrmRY3MUiOA8XmMwO793JyQoIKkc8mplQjy+8ro5vbTTvHc+Z/+HOGr3McelfHT4ra5Javj7ZZSCFbeZeoQEqMknHOM9xX034M/4J3fsjfs+aCfHGh26eI9SiVZre+1WN51EyjGViKSSOuSCFQEZ69cV7v8cPB1t8ePhnPod3rs6idY7q3n066KxmZ0DIwdR5kZHVDgqR2PWvwm+G3xy8Vfs3/HC58AeK9QubqOJkOo2GtNJJCyBiY5VcuRKGXkME4OQ3IrTD0qcNIx0Jk5zTfNqfbPxa+P/wAU28ZXkegTa8dKhtUtYWt7AadKRD85B8xPMUnBUlyCBnAAGK43wt8TrPw74htfEWsQn7HJbAQLcaf9rnk8wDcypMisI+ybTsPJxk8/S3jE+GvixpX2jwh4g8IaS91HFNGuqaexRJWXcWF3bytGBkHaHVd3O7OMV4FqXw28XeAb9Lq3Nlq6CMXCXejIJbNtrA/up1Mh4BPCKqjoSOtbzg+a5VGUeXl2OX/aD8M+Ete+Fdz4wsbCd3VDLZ2doo0Vc/e3ow3qWP8AGC6DbyQQQa/GH4S/GrxH4Ou31OFZrd0vZo1lLgCIMpKrFLGDvIO0+mBkYxX7j/tNWh1f4Jf2Jca7Np02oCO2ksXuYbKBfXzEEkZkBHTy1dwMZ3A18O+Bf2Z9L8Paf/beqwJ9gjl2X2qapObVHQH5jbxMC7lkDY8sOSO4zXmY6bUrRR9pw3hac6TdTufa/j74teGvGv7KXh39o3xol+utaBeQeGdY8WW6/aZprO6TMNxcRrsebySfKJIeQIoCltu2v09/4JUanpkOla7puoX8N22pTWuradFGoMc9sIx/pkLLhHWTdzjuMHBBx+T+h+PdG8Mpb+GfhbpupwaXpp+02srAjFyy75LnyH3guqFcmRiEXjaCST22jftR/Hzwlq0eq6B4ovtSCbzHZ6nbx3WE3bgvzo7jA4yrL+Fc9TF8n7ycXZdUvzHiOGqlam6VJpPXRv7kf1aSwpZv9pFms80bKEn3nZIHPGIwcrtPB7V+U3/BTP4OeCfEnhpPidCY7bX4CsTpuZkmhwQV+Y4XHfnk4pn7PP8AwUq07W9JttK+MthdaddF2U6npw8yBnUgbZIAWlj9ThiMc7SK+Nv29vif+0F44sru/wBR0U3fgj7S8Vve+HiLqHyEJG+e5iH7qTA/1cgR+vymuqdWM6fNB3TPkKGX1aFflqrlt+Pp3Pz18Mw2t2t7oUtylutssa+YG25G75ow2SuB1GDkc5qe98LRXt7/AGbqoe4trNGYXnLlEY5BDKu1x7dfesL4b3Pw50K5bT7y+iMN3NEUEkU06OZWOAZYgQChbB+VW65zkV6lqNy2i6zJp3h+5uH+yyLKrtJHJbLJMOUw33gAflBPfnGK4Ue7NvocjHZXdjGLS1vfNjQYSRoyCVPI4zx7U/bqX/PyP++D/jRKNE1B/tupveW88gDSQxw3BVTjt5YZMEc/KxHpxUf2Lwt/z83/AP34u/8A4iqvHsR7x//TzfiN/wAEk31mx1bxDaeKIpfF+qXctxfW9nZ5sInlOdrKHXMFtGQNm52YgfKTxX48QeH4vgT/AMU7Zw28kNj9ohMawSAyyklGuJpNu52YDdtYgLkJxtIH9Uv7Wv7QHhz9lH4aT2GgX1nJ411ZNtgjsZnt1bcWuhG2cANkIzYBJyBgZr+Tb4zXHiTUJwrLKP7RiFyJbzbJJiXJaVgj5VWILIN3IJYjnNfIrex9DhJTknKW3Q8Ov59M8a6wtvFvbfIUu8ymXBRDIWSUEiMtuXPGF6LzXA+Abu/8NHUr6wk+zxNqFysvlSuFmjhBCrCuRlwN2w9clmYgAKdSOHX7fSJPFlr5cOl2s5t7Syfast2EI3s6tjKjnbgg4ycGt7xL4UlvNNW7sHTabZJbmytkCwx5bcYkcFyeW2KoO5sHAA5rupuxpUjdHRx/Ei2VMafeSLfXF5HeS2VoDvVV3QwoJGA3jOVDhcFTuGFOR6p8DvFeleFxCdcuUnOJLmEBkiZEPzPhQOQxGAqklVAAy0mK/P7xV4V1ezvx/ZyXEbeeIgWZ/kiZQsgLZAwmcM/yjJyPSvP9fvta8N2VzPb3csguJC8u5/MZ3XBAUc4BbBCkEdOOBjvjFPVM4XVa0sf0US+M79fB9xP4amig06SJbu3tdNYrcTmJlJQTKWJ3SFUd1bru+bKjGV4R0TUNJ0yXxjLdNJfTosz3IAmuFuJMk28MQIDSr3Jwozu3FfvfhB4H/ae8eeGLaGy1p5hBIyXV95S+Xtto0ZbeFmzlgpZ2WMEAF2ZmZyGX9R/hz+0Lo3iiD7VZ2RzIiyXGjrKkcFnbIFUefIxT552wSJQxxk7furV+z1CFXQ++/EPjODwl8PINL15pbS9uTHBGZpSSN6iSUxBR8qKhxvUcEu5O5hXk3wzS5+IWpAX26w8PrOmxBEy/2lcKWPmLvPmLAqgFUJHTLFQSa8Ps3n+I3iA+OdZN3eW1sjAolw0QuL12O1QXBbylUZVY0JChS2QcV9s+EvBGl3vhu28C395pGlXdxbLPqdpaAlreyjQlllbLMyjB8xiw81yE6ZrnrR6G8ZJHp1nr2vfEqeXTvhyunxaZAkdpc6nJtEOm26jbuDgFXc8FVjGSW+QZr3PQ77QPCCR+EfB0vnahEyT6jrt/EjYd8KiwQEtGjlQArMzOBkgAHFfM2r+NbHVhD8LvgnZzzwROsbTJEqgFWWOW4mKHy4QSGwzvwAApVQM/R/hfwZ4U8CaSZvFV29/JaGS9u47aTbAq5P3p2G+V3Y7SY1AxwH7njnA05+VHdLHdX11/pF087La5mDSHfGhbcxmncqEUoN8skjKMYUDnFeRfDPwZpfxD+Js/j17hNbayhlXT7KVJYtAsrdR+8uJrh4la4ZW/u7IzwAZeAfm/xB4r8cftXfEe8+D3gS6/sbw5HcC51OZY5Lexjs4yqsrAZ35l6sxeR5Nirz0/Tq38D6fpXw/j8G+GZL3R/DelrGbq4UgS3TqMJ5nIMkzjiOJTsjHcfMx8vFLTU7cO7eVz0z4WPL4v1o6R4b3yQWkAgvNZnhjgQxnrDBCgVbS3yPlijG+Tq3XC/qN4C0bT9K0xEik8uJQoZnHLt2JUdvRR0/Wvzp/Zls59d1jz3gjtdLt2K29pFK0jtMAMyzsyjzZWHV84H3VCjivub4lfEmy+E3geTXA0Md08bCFmkAjRzjHGdzEeuMDkk1jhIuOpjmE1K0EUfjb8TfDeiabLobZmu3iYzyFtsNsg5Z7htw+XGdqqRuIx0Ga/HL4r/G/4deHNTm1CFXFzpkEt/DNfSmSLy5JN0twREGRnbbhW42gBRgDBtfE74pnR/hpNqE1ywstWvWvbzVtSVle5VzhvJ3jLxFuQ2AqgBdxIxXwB4h1SbxH4YmJ09o7G+SeOK9iVY7aY4LxlonLSPKE5YZEYJGQ205+gwnc8upSseVftFftGLqthDZRSiSxvFlvGMjpLvkYkYcQYJxwwZjGAABheQfiP4OWutftB/EYaVdrdW2i+HVSTV7u+zDbw7UKeWoVgoLgA5b5emAcEn0fxv8PbG0WKXwpeTajDq0Kppct0vmNNdTyiEQlVY5UnLbsYO1QGwMV4d+3P42g+BPhzSf2P/gzcXdnqMsKX3inVrVvKmnaYHzDIyYZmkb5UBHCgY4Az0V5+7a9iqCV7I5r9vn9on4E6PoUnww8DXj3uqjZBM+l5yNjABfNTgg85BwW7GvT/APgjR+3Vd+E/iGn7P2uWttBpetTF9NilTc9veDgBS3IMqZ+XoWGQckivMP2a/wBijw7ceH1v/E+gJc/bNsjXF0A82B1bLfdJPb14rh/id8DNC/Z0/aU8E654DWRoNW1qwmaF5Gkki+yX0LyKrk8AKx55I9cV8zgeIcNPEfVOR83R9GevLDSlC6kmu3U/re+PPwpbTrPS/iBolzD9oupWeaG5c26zRP1JIO1WHKsCMEN1GSa+ItV+EOqalrOo6XDp989rbW009+mSFeWTch+zo0iPI6xkFhESsgC/xdf108a6XpHjHwDpmi2zLDPY7LvTrhjsAKEBeSjBi5/h6kdM9K/PT9ofwxq+j+LLTxKt9eWvkXUSa1p1vAiqY5onVpUWRG/fdArFlZlDKoBwK+rqysfNRd9Ln5VfEZbf4fapdTeP3s49KvbOTR9LufLkYeRKECTq058xZFKhST0HysQQDXq3iP8AaE1ey+G0dwftDywxWmp6oHiSSNxGhiM0fmL0b5W2rgnPyqD8zcz8Y/C/wu1mLV4dX1DUoLDRLhZTY6jFJBJHFMjPNIsLyzlUdiWHzrnPA4zX48ePPiZcaVYt4D8Fapo0kkNwZ9Ev55PNtNYtLeV9ljfRSYaKdRnYSqof4Seo5oUeZ2Ovnskz+gv9mj9tzT/iFaQeFbLULeCOaGzksfK+Q+XMHYwwNkkqjKSVZcg/KSd2a+df+CmfwX1i/i0P4r+Dre1N1aFYJ7m2lEiSqQxZUBAZcHPysCVOVOOM/hf8WrPxL4B8OeGfj58MhPHAZ86zbo0gks78N5hZkJLKquGTIIwVwR3r9Yvgj+3r4I+MHgSx8NeN5huuYJtOkub1IzI92m1QjlTiRZAV2MUzxgn5gV09g4pEc6bvE1vgh8VLPTdHtbXVLJYr0wrbxSahCJNPuIyckSkfNGeCC6MGQkHBGa/RnRNU0DwvewaHpdpqWhJd/NNH5pdoJEG8MpkYb1CM3IJyAQSQAx/OTw1pnhbQvEttrHg/U7OVy5stR0xrdokmBfZFcuGHlqV4hkIYh8glhzj2XRPjP4Q1jxTfaUmoajqGnWiCxuNPvC8stnLblI91u+4kmIdTuDYxkHFZglds/Rjw7ofhHxnAt7ZatoK6pAPKtLh4t6zRsdnycJISeTgNgH+LBzWLrHwu8IrqlvbxzaDcI88i3lwD+9iuETa7bXaTc/yjH8EYBO0uSR3/AMMfBHw61DSo9Re3giRdywX1rG0qqSMEvFmORZl/5aIELD7yqVxiefw82geM9N1fQ44dcmVnfTbi3Zb+2CqeC20x7mTgrHIwxhSfmAA5asbs9jA13T+GTQ/xH8FfDngz4dL4g1mSXT7Ce386O1m+e/1xz+8i2xD/AFNuGJc7yFz+8lbdjHjUdinhS2tdV1rStOsWvMeVaW6ZLRfwh3/ikI5Cru5IJbByPvm20XUtdebxLd6RJ4m1ZpBHa3GqlfJS5jIWIRZ/doEOSzsMIAdqMxFXfDvwq8J6Trr/ABA+OGoWviTxFPM0NjpmnhUtFuQRvjjBZc28G7Mjn5GPX0LWEU48smejHOHTXdnzfa/AXRfHPhSLXdU06XSo9QKtp0OSk8jqMK3ATCZON+Mf3c151pvh344fs9a9DqngPUZL/SLlnN7aXEnmjbggnLLtKuo24YHJbJJA5/Um/wBOl+Je4pJDa2ciLEl66FxIqptC2/O4ooyEYAAr93BkBF/xn8Mx4pgtPDPh2JI7e3CRSNKQWLBl3GVhwXJTDYBwAwHB4by9Urui7O33/I8qebOr7uIV1+XzPzDX4Gfs2ftL3DD4f3MHgrxS0hll063iSXRNSuQBIXubeKMm2bccebbnaPvGOvzn+Jvwq+Mfwk+JuofDH4m6FptnfQwPdQtCWCXVvuHl3NpMcJNGyN94EY/iAPFfvHrf7IK+GPElv448GXyWF/b3C3EKQxFjPBGSGUAZKl2yeAoYnk4BNe4fFD9nvw1+1B8D00D4yfZ4dU022abQ9d05St9ZFVy4ZiRvhmIPmR8BuvLDdUwo+1hJ2tKO5nUxnsZxV7xlt3X+Z/L/AHGqyaJL/ZOvtFb3duqxSQwSRbFAA2YxOOq4J4HNQf8ACU6V/wA/J/7+x/8AyRXoXiH4VTWWs3Fpc2egzyRvteW8uMTsQBzIBbvhvUbjg8Vjf8K0X/oHeGP/AAJ/+5a5lSfY7PaLuf/U/Mz4jeO/FHxG8XDV/HeoXeqT6lEbr+1EjVpZJlAVsKW2oFwOM4HJ2/KcfPvjyW/8ceGdNTS4bcLBaiztEDPLc+aflJEgILIpAPzEjB2jrVDxRq+pQ2MEuoQfZ71w7XgBZlj3EgrtXf5hjyem71OAcU3TPE2oXHBmWVJ4rkMkcSIyQjYFCCQHZg4GdnOSQeufjz68xbDwJPe2UXhma2MEtmj29xqE0eTFcxj55CkbsSoBAJyuc454p2vWklpYOul3kNwilSkkpLIqPgF3U7sY2Hafm2gZ5IwOtuNGXfHrNjcCNSZRcBpJUT5W2SQHcFVOSC7gZyMKckkcT4htbm81g+HoZlmgfa5KM6B7cZYq2RvJKsdow2AeM5FaxkzFs+aNcfU2ubm7h8siGfYGjchpGjLLIgYhQyBScHHIzxWHL4ch8U6ZGbCNbi5+0+bOsRAljmjGMRg7VlUAbhjL5HToa9g8SWVpBfLeWeSoQG1WWPGHAVnG/IGFdtp+UYJAzXKPZiHSbvQI3LW1giSSbwrxrclQdithtzHcTkkqgznrXfCpaxzVIJnyjrvg+aS5k/tSObiNrggRvDINnyqoVlGAM/X2q78NtW+I+h6zFYeDdHmvbVsSyWUFrO8bybx+8fyyGkkAG7c78ewAx7zqN94mXSmX+2NRt3iVxcLZyTbYCJXAUHdtweMbAcDjHIFcXL4j8bSQx2unXupyC63ebdSXUkksZHTPmNsRXJ6Db+PQd0Kuhx1Kdj9ifAup6p4l8NPcRppukxkLLfQ3IVZ1KoqYMVpukU7cnMjgk4BHU19B+FdOh1LwjqE3hC0uL9hNBHPc6472enLCd24pbxOZHA8tf9ZKQSFHXKV8A/sSfFrwvoVpD8LfHCWt1fCQ3IhtbcyvgsQZpZnClRkAk/MWOMfLgV+3XgW38I2Wn/vbmF9NVg89siM1vG8bBkJj2jzGXICKgAzkkgA4ynrqXz2SVip8IvBT2XhyS+8STzGMwIoZYxEkKZz5cFsmI492cDI3DOOxFcH+1HrXi+18IJ4F8DxuNW1q5+zJ5DJF5ESgth7mQbYkjjBd5CPlAYgcHH0PrPi/wnpdtDealOY4FikuLCzbCR7ocM0sgB2blB3MDlixCDnivzT/AGlfipc6h4gk8N6FLO+s6wqx3Sl3/wCJbp0oDR2SqBua7vNyvIijKqVRgArA5SjoVRu5XZ9p/sN+FNKOkyWHhOdp9KiZLnVPElwjE6jcRfK06NIPM8kEmO0iKrkfNnLSNX1v8UPGT3es6Z4WjuRpkDM7W8KOjtHGvLSNvA3M2Muxb2AwAK8++AWg3fg/wJpfw6hR5mtvn1K6jm+eXUNoMqsoAOLdT5ak4xgn+I18u/H/AMcS+HvHd4NLu4YPs9o8b3UrM0oLEfu0JIG4Y3M38K+5FebXp30OyjO8rn6p+Hv2ktH0yyg8NeC0tbu4ldYLWOZtstxcFtuI4sI5weWfBAz6V3HijwN43+KAuJvGdzbw2Glwxw43Fg8ow12ecqMOdikAkKvAGdx/ML9lj4Y2/iLXLH4geM4LmS/sYJNQhefy2a5dQTFsAx5cIkZP9YWL54x1r9jtMgim+Gq2F1fzF2iBkjUiSSTzuSSxyCzc8kE8Egd61o4LmVmcmIxHI7xZ+Qvxh8Can8ZvEstnqV4lvoGnIbho7lm2zSQDdDEVY5eMBVLLkkdCQMg+FePoB4i1iw0A3cYt7O0l82CBDbMTIDnycjb5ahVjXeeu5yPkY19aeONTur++1nxTZ7LaS1lmsBLcsGjhkZWKRqgyXkwwLADPzAEcV+U76J468U6lreu2d7DdX0lwthLa6pg29j50RZdzOAZWO3e6qNoY4OQCK7qMVBGVR8zuer/Cgr4g+OFpAXtLfRvCGlXWtSpbxn7O8igraoC4O58OXMhGeduAy4H4+fA7wtpH7UX7T3jbxr4+u8PJLqd1YRNOkQ32wkMILTH/AFMaqQVXLliiqBuLL+137OPw407wb4K1+71G5/tie90ySCWQZ3CRkYxsw42o5fd0GNyrjOa/AH9k/T7u98Wa/wCCtyLqVrq0rTQHAlTDt93nBBJIP0Armx+NWGh7aceZLoaYfC+2Uqadm+p9ieBv2t9O+Dv7T95+z34su0v/AA8b77NpmtyRmDZHc5e2++A5jKlFJOSCeGIWvoj4FfDyL9q79sfTNVCmbQfCtlOwluGCgy3TFEYE43MUDOB/dQE+/wA2/tJ/CHwB4uXRPCWu6TFq3jErHNp8Ns3l3scMbeYzzyqRth7bW4PUetfqr+xr4S0v9l7whpVh8QoJJNc8e63IurzWYCLpljbW+6Qu5+4R80IBwdzbRyMV5OW0KOMqLHwpcsno109V5GdKM6EXG700Vz7n+J37bHg34e/Gy1+Ct3thlsrSOdb24VmtYIYwVBLpggBhjHzZGMcV6l8Q7C48c6HFrOm6rE0d9FDNJeXCmaAqFDO64O3BRgsi5JI+YDIr8Kv+ChegeKrzx1pnxf8AD8bxxavpcsK/IjBFnyq4RgAAXV2Bb+8MYFej/sN/toH4heF5Phb4zuXs77Tsl2OIzCGGxJCrDb5eSqkDnaea+qjStozmlblUkfC3/BTz4aePfAXjCL4taXqMzRX7RQxXVvcyyRyC33qsdw/BCDooz90kEmvgb4cfs6a58dY1muLfT1huHjkbVLGf7NdEkM6LLlZIyd4wsjKOeCSeD/RP+1Z4N8J/GXwzLaa7Jp1jeXulpe+fbYW2uLi2OyRHGArh8kFWAOOVJwQf5ZvCnxY8XfAf4vawngGFZ7Ge4dIkiUp5DAq6lVUooKuuOMZHpmrp01EJybR9T/DS01Tw9q9z8E/i/ahoNba4t4nv5IJYoL7yiRIk0JIHmbVbawwJNpGc4Pxb8RvgN4ttPFF42kyW9psYTw28W63ikZV3boTkoJGAJKgj5s7flIx9RfGHxlJ8ZrOx8V3Ph0aZq1xaJHqOovPJHZ+fuKokm4DYXGWiLO2CMq3ykV0fwe8d2Go6DD4b8eRrezRXI06S8kdXt5SoeNFmdmCec3TOSMrke0ubWrDlT3NL4S3eoLotvrd7LLqxvYI7e0mjZ0WZpF2HftcY3gkOGGQ5DdCc+yeEvHGnWN9ba8lpMt7p91DBeW14DHMHWPZKshhf99FNgSKxTzI3yCCpOPkWx1KX4R+N4vAGm29yltda1BBps8d2GENyjEwy7kABRJAEkQ4+UkdNprZ+J3xMu/D/AIhhvSEKX04vpYVO1d6kKQuOQSVOFJwVweprnnB7m0LXP3t8B/HzUNMltvDPh7US8V9GIZ7K4YiEmJSNh85SPJYfMgf5R0+XGT9W+APiTNpkb38j2uiareRPHJ/aRLwzCTC4jb5mj3cDa5KnO0soAFfzzeAP2+fh94d0qXRE8KSvdRvFLY39vOq/6SgY8gxlx5mSrrkhkYqw4FfRfhv/AIKb+HdCtYbHQPANrC1huk0+3k1GXyoGmxvVPlGFYf3MY6Y6VzO3VHfA/pm+HXjV9H0Q2N7d20eobDA9ndQiPaj/ACqXPzMYV4KrHsjxyxYAA+5+G9I8LyyC91C5gvdqpC90WDW0+OXUMT8wOFUIN3T5hkk1/Nz4O/4KX/FDxJHJZ2PwkguLQxG8dLzU7pYxAgwz26bCVO4kk7CrH7wOOPQNU/4KGfF+1tJdO+G3hDwhDmNJbjTbsXJ1O1YgOzKgaPzAR8xeAZH3jGqnJiNePVmzpSex/Sb4b13wPdSGe6u/OUsixyu+IBljmIJGCCdw5A6nAzgYHrT63omj2hn0aKaeTeJFeAKsckp4JDSkbmxxn7oH3V4zX8rtx/wUl/ae1Oyk/wCEf8Q+GNFneOAPbxabIsuZFI+SadpwwRhgHG09yCQD4t41/al/ai+Idrfafq3xE8VXw064El3a6Ht06GSNFBIEaRKo2HJk3gKyZYchgMqlaLW5McI73P6uvHv7SvgP4dGTVvih4p0XRbe3tpLvULDTgLvVWiRcMFEJZwFBGcR4Uc+4/IP9pX/gpJ4k+Mn2j4MfBTTr/wAN+FmSCe68RyGKXUL+yZyPMMZYCOJiNrF383HICjIP4weEdG+IttcajrXh+a3gs5NMa/upby9864sJ53yiZYHzoZs7HaOMnD7WDIFr134W+PPh3FYR2LeGbcXlvIWuZbe7NrHNCUZ5jDGI0JimUEbJYCqk8bcgHOWKlbljomVHLoKSm9Wjs7eea7i+1XV1r1w8hZ/PjupYlkDElWVBLwCMYqbC/wB/xD/4HTf/AB6vZPBnwXvPEXhey1uz8SfDm9t7mLzba5v7WKW4aAk+UJXcAs6phWOByOABxXT/APDP2qf9Br4X/wDgDB/hWF2dFz//1fwbbQdM8V28nhNpb+SaOMXl1LEoLm3mZJVeRiR5QAGApGcc4PSvVW8N6JYQ/aI3azWNntS8UsbmSFipkVnYkhpGGVICnuOhFbt9Ja6UIfsEluWmRRFCpjChwPLaRg7bmZshUUt93HAqDWr+OXQVsdR2mc3LxXEQkDSXO6QFPNO5gpC8DBX5QOuOfjz6u3Q818S/ESziuW0OyllAsvMkktLYCWKIeYowCQASQwI3DdlT078f4T19tD16y1TWbNroykv5UpVI0imYbQ7Pux0BUkfz4gi0zULmHTorWxVYm8/VL+/O4IRCMRbyoVipKgAEkDHOCRUaaSrytbXEwjncEw/YpAhhSNVA3NKUbOHzu6gdQSSa2iroT0ehteNdN0GFIdPtlW0j+1OGSIrIWU/vD5agksNobJzhsZGeBXj19ZXFtqi22nGCK2SKRoo7cldkQIeSYncVHPIBK4zt9q3PEVjqI/1Ylle2tCs6zeXIu9/LXKEAAlfmJVDkLjG6o/Dthd21x85LhhPDDO0iCKRi2TGB8wPyjCrjbu6knNdFLRGUtWcOrzxKt8jQiJL1bhRMVZY4Y9uGYfN827ODkjvngU5b6zudatm0yONJLd2IlMaS+bI7hy0aMSAXOCAc7MDivVdW/wCEq1HQNO8OvqMv9lWMTf2dpk7hYLTzRuuWjV2YBXeMZYEnp07Y8/gR7mzi8S3Pmq8Sn7PbSukcnkOnyOqMzMrSJGACVwOw61pCtfcmVMwI9a0z4azS2WmX0d1qmozbria3lG1fNO/JmXnjHyABm5Z8B2Xy/Sb79r/4v2EptJLyaK0aKO28l12gbAxIXlnIJALFmZjtxzkmvCJtCOrKulzGYXMM7LaybDFb2sbM7htioGKrnG8kYYbRwauxaLZJrL2msDEkoijsrYA7S+PnJ3Ek7wRtxnIG08muh1G9Dk9nqfpf8E/iBf654ffx7qt/JqVno8cV3aWt7y1zeNuFpb7SxEcLEPLIMb3QSE8EU3w7aX1l8QLbxTeStPcNPdazfX2SZJ7qKGW4zHypcl1AP3gTnjAyPiHxOlx8PbnSfhnYXqStpskt54gi3Ya91SSMGeLchA2xKqW6rz9zCqdz11et/tJ3t3Hpxnxa3enRoYZUh3x27FwNsSFj5su3jDLggcjGDRFGil3P33/ZnvNTHgCzutXlYzXEDKIYW3Ft5LF5AhVhucguec9AAAWrwr4gaRYav8c7Hw7aaV9rjnkJle5G+Hadod5AXDAegHzMQTgD5jT/AGOvjBa3PhqE6LHa2UxjYXDRzK5CscPmBixZlHBIJGehxmtm21rUvBnx3k8V3phnN4HWC23L5g4ZW8sSnauWOGdyCecAgYonSvqYxm48yP2F8FeC4NP8B3CXIM1uEtrUF4QyShcylI4oyI1VdqDjOPrXVy6wbTwtNp1ots00luyLOGREjVXKs7F9xB428dsbQODXzdonxs8Rj4dwapqpiDC4uLy+jt3bybeKKBWDMzbRuy+1B0PXkDjltd+O+kXukSXkvkytHpa6gwX/AF8RdtkAEb4+dufLDAndycZGd1GxwLU5L/hAtf8AEdpNa6PGXd5prlb+9iKyi5nbAZIMEYbaCiqAQqbm4BNfnZafAq48I+L5NP1We+uLgztKdQnd5IUhaQFnBYj94ygr/dAY8Hca/RvQ/i5FoNvBceIL+3s0l06XcZrgB4cgk5Kc4O5eeGYYUYywFfxJ8QPD01xb232e0if7JFPq0t4AjW8CL5iwO2SRK6lWYHG0cE9qUoJrQ6FUlrpufMN/4k0L4d+C9QstLeW2he5jEq3TKtwz7C6pI6cnIBZz/wBM85JJr8SLv9jvx58Xf2m7vx18B9Ym0t5UNxql/p++E28rvhsBeCzE425Ykk45r2b9s74/R2XjifwF4Sni1CC7uVSVrBspM0iRooHyhgI1+Xqedx4zX2T+y38VW8E/DhLPwFaLDfTzLILmWPzrya7lIiidUztRQ5wmTwodjyDt5JUee8XsddOp7OLaWp7N8CP2UdG/ZR0O51nWblPFPxO1FZn+26s3niyfZujNy7Bj8rDAj6DBLDpXyl8QvGCeD9W1Cx1HXr2dAkt3o63nyW+oXOlSI8qxMxLFXlEzjaQXZgM5Bz9z+MPF/wDwhvhLOoX5uLiZ70a1q9xlTNcOIogokHAjClyEVQXI+XAxX5nfFuO08ayw/FEaY1tpdhqXk2nHmEgXD7GByArATD5MYJJxnFdfs4wiowVrGVNynJym9z63tPE+j+N/2KfBtx41vvtGp2V6/mXdxKGLxeZPAIGdyCNxzsYk7TtA6CvzT8ReArz4MfG+bxK3n2VleGS2iSNmDSoVUb9wQheSj/NxyOcHI9b1e/1KD4eSfBe704oLgpNpThG+ZJLsuXJTOyHaNrDkqdpOK9w8Kab4j1U6HpvxLt5LJtiILuaLItCsPkOGRyVZS+w8ggK3HBBrojNuxlKPLftcfofxU1GH4c3X2K9s21iKQzaQ1/CTb3oVR9os3BbCF0525/1seMgMa/En4t+N/E118WLzxN4Z8NQR6leOkss9tmXTruCRgAwtnTlWAYSd1fkAMCW/SP4xa58P4NYtUug2ntZNNDO2PKtL24jfEiK6k+VuA3htuAcgkKK+G/iv4W16Xw5L4ut47OKRVb+yba5nEkdxbxbldVbzRHyjsrEsD6qSFIqTuzOMbanVfFSfXNe+Bsesf2QJBpMI1CcaOiuSnmBWguF3HMYYmSPMZA5yAea+NUvBp+knT9WtFK3EMOuadMsUUaTurfvUjf5VMy87AAdwBXDEDHp/hrx14g8Q/CiSy0l7rw9qmn6dMWe7Z54Z7eRh5qhJFLuCe7AhW5Vhk5+WNVF1b3ktjrNs18LiJL3TriGXfFaXaE+apVDtdSwYgAblzkdCKnlvoE3bU9UsNT0/4tCawsLe5stUiupdY0qNynkXbQKG2iTYRv6qVAyeMjsOA8V+IrzxxrtrJ4Zt43jmtoYppbv95JC0S+VIeTlQDxznHYmud8M+O9b8P26XWivHaXjXDXMMfzHbI+0Op3dFI5APze7KcV9c/s7+FbTw09tL4i0aG/nlnkuNQgliCARMGAkimDLvDMVA2FgG42E8HKq+S7Lox59EzF+G3wttNNszfa/d2zNFFvuY0kibcTnYclkXIYBWAbcM5APNfWPgu38D6RG8em/YdXne2muILCzslt9Tba4VmUTLKsm1CWKDy34V13YFdtp+m+CPFF9cN4heyQRNFIsu2KO4jjwvkyxyoVWY52sxdiSBtKRODnzq8kazvE1zQtdl1DUop4+b9pGhSMMu+M3cK74DgAfJGDtXaSCSK8uo3Lc9ilBR0R7PdNZWHiK6t/iNF/ZVtNZpcWk1xJcWWoQrc8OQiSFJtq8ktIVz0HISl8Qf8JZHqE6eGJ01qxtrq2ttKv4beS6MMkQBgTzQN0ZjRsMrHcUyVAIWo7hPHGoaJa67YXUqorhJraJ22TW4RnCxSso808YACMSvJ7iok0rxN4hkt9AjWbUFnkuLqwv3LOs4fLkKbGNp47hcIJYZiG2lec4NcfJ0udafRnrHhjXtS8UNc6T8SdJ+y6les1vYapZFIr1JkwduJWUXfBJUFxKBgb+gOTB4W+LJv5tWSS51HRNOimTUdRjntrO4Cj7rzGdWnTyhtOZFP+yXGCeR8O3viK40drfVhLHewbrwWuiagoaB02x+UlrcIOZN2dsDlxhuAc59quNe8StK+qXun3Meqi3giSbzRdbS20mJlURjbIgOIvNDkZKkuMVLRdk9jz+41KJddvvF9tf6RMFS1+y3A1ENJLbBxGVlzA0xG9B8wK7Q+U3KDj3zUNV8YeJNW/4Q3QmvrsXAsb2BbmOBp7WaFGGYLovbvMIDuAlEh+Vjuxg1w+i6joPiS7ubdZobU6whNjPYWLSW73Dx7vLktUg2K/JZlLO+0kESFiT2+jaZYwRroGtavqOlm0lEVv4c1Sae00++h2hTJayNHuityfnRo0ZUGN0aNmsqhXQ8s03V/FUtr5l14b1CaRpZS09lo4eGT942HVop1Q7hySAMknPNX/7T8Rf9Ctrf/glf/wCSK9ta18ZzsbjS7rS5baQmS3lbX5iWjflTlSAcg9QBnrgdKb9g+IX/AD20n/wfz/8AxVRoVY//1vxqufBWoCP+07+X/QFnigF3ZujXDyMfk8v5WMaytyEyPukrzk1fk8J6rdai1vLGLeO3Z9Se7uvmhllcBNqmFkZiC2A6gZOOpajV9L1u+1GM6f8Aa9Msor1PLt4ttoszR4y8aqhUgFvLxjcMccMSNbxJ4X8RaldzabFcW8scsZjCc28iHcUhMqyHOWTGW3Hn0HNfHN2PsLGRodxqvieDUtK1ObTBFZxho4rt2gMMckiiRSshYF3UHfwDtXOOmOP10W11qXlQpBO81q9ppso2pEImZkEiowywTIJbbj5cF+BjpV8HXun3F03iK0s7vbcea0ckavNPJATHtEZZ0EYbjeSFboB0zSvba7SSS61OSzjjA23jxhhCIDhjFaIEIk5+V8KDkZ3AEU1LqiJnGyTTal4ht9PiupLjy4oxDtRAtw8QaKVsybgJGCnYW+bqODgViatbadcXXl3MYtIUOExBI1zcb2IZUPmAfK2Q5XHzY4xiuqkv7jTIvt0io7SxymebcCYYI5cmNBLnggduV5HGCBm+I5W1iG4trGGCO4kl3xKZ1gk8tFTDSLjJJUEkFAM4yT26U9TI5jSrD7Ukt9oMEt39mIdg4MzyEkE7CdqoNwHyknBb2NWtTvYpbmcXaxrCJYZpYEZZMqwZljZ3IPmK2N6Ix4PU5rvdJs7RdOtbeBvOgj3fZrhX8yOSZcZklYgF40A5VFZXZhzwaim0mGRTKdRht0tN1zYQRs8v3WVy7IgG50Kn+HngEYpqVgPONf0yRo7u5SFVcKI5HjRCd2P3fmFCUC7QvBOSCSc4Iqz8O08P3N3cePNfiRv7Bsl1aZmHmo94riOx2M2FUGQrJjpiM4yM1oWa6VeXifaZCNPS3uJJIbdJJJZMthXO/awdmO1gcc9BXSarod1p3wosdJgFsranevq+osQ0wEVkRb2qSsW/esrGXChgeOw5rWMroynHsfNllo08+rtdXYdvtF4Jb66BMs75ByzfMozJu42j72RxnNUPEvhKdbl9R1qUWpcefbWaopuTEgGGMZ/dxMdpbMhLAkHYeK9lg09dMmuDZBFjtoTPPd3Dr9qmQ4wgdj+7hPURxgZ4DMcVy0txJqiwadr/AJDDyxJHGp2iKJfvgiCNXRV2n5mLcDphq2jK5nOB6l+yP+0NqfhXxLHoNnpK6ba3KLGkjy5mOWA33M7gyNI4ULsUKg/uha/UrTtV0s6JJr99exSX0yPJ9oKb4rSD7ykGX7xTl938TZPKgA/iJY6Te2dymoSmNJ/ITVFihAzDahm8synB5J+9ubJ6ADJFfXPwF+MEJv7Dwf4mkEETSLb3stywkN3uIlKsv3liJG1VUEsOMjOa3ozT0Zy1IWPov4ifHzxrF8I7zw5p9xcXUEOtWsVzaXMeWe1uoGETsuAFVvJUEtkAE4wa+bLjxR8dbLXZfFllJBNDLZPaWtrAERnLotxHIyjOXJJw3LcEgAcn728O+GNDvvEviW2tyj2t3Ym6t4FYPIZLGQy7SSNjqD5iFVAx8wzgZrxX4h+HNIh1Y3VpfR2txh/s5fIjUTxkqsbA9EyPmHBZTgZxjeUepnF30sfOTfFr4gu40/Xblo7u1s7fd50Rci4R0KMrOTuGcD5sl2BJCotZ2t/tAfErW9E1XSLq/uls/tkl6hGd90/lmMNIw/1gyWIPOcE+9dnrupaVbw2dx40sJbWGW3tVmgVHklZYXYpGjcmNCoG4gYy+BwN1Vb34feBPiGllqnh67axuLywZmgdyF+TG4sWCAb3IUJ91C2CT0qLXNbpbnyJ4V8OXvxP+Ka6lZq8w01FuL0gjzHX5UVIk5LFUyM4564r9EvgV4pfwz4wa7vJIZLW3MosLVWHzSsoRJH4O8kyyKnPTgYrjvCvh7wV8ItA1vU9N1q2OoXkkSRbCGmjMTguNq/M+5EIVQeCwz0NO0i3utOi1O80tZLk30kNhaJEEkuILdI0uZWCrjHlLjJ5OSO2cpLVIbV0fTHxv8UW2t6Xb+B5Yd0kdtLqEEcBzm5ck3MjgH5WjaRI9p5VfpwvxJt9MsbW4+GWhhI7fw5Z2zRRMS63V3sS8aWUEEEo25WU5wuD7Vj+CtHmufHEnjfxSkMFkiXBtwzCRdkfy3UjAfMQ7rFu3Y3bTgZAzd8P2r+LdC1P4pmKSNYJdSs42KmWVldpvs0hXBLEAbCCAcMQelbN7itpcYuijRdAsLnT2huIEvDaacQrJLBPI4D2+7qPJkVQP7wUleRhsL4v+P7I+B9FuvE6rZPcvPPChlQtatbLBFcWdz8n7xJWO5HYLjgFQMbffNNtx4x8OHxR4VhmsNHfTzdypOfJdmhuZZpJI17vG5WOPAG7BPU14d8bLfwnrdvo2geIZUMN3/ba2upOdkGZ2i+z5JyPmAZQMjBBGMnFDlYztqfn14y8Tavc+J79vCFjJeaVBp6mO31holczynETxSoNjsAdw3ZYFhhV+6fnbwrqXjPw3NPqi3EqabYI9qtnrAWaR/NySsojUBgCcNkqSGyApGK+yvjXdabL4cm8YWscStpy/adRm8lo3guzGsbfK24mJgq/IcDAByMV+R158YNZubuXUtOktog8cxmjtF2fNIdoyiEKduBg7fvdc9alTb2G0lqz6o8ZfEH4US6/HeJC9tqDRG0uoIBNPaAsvzJDHIMMnDIVKuMgHdg4r4J8X3PhePWLjR/BMVzBDFeF7dI5ikK3GQHeFjnYCOVxwBkEHANYGqf2hqfil7i2mnknTCMEQqynoM7SCWBJO7r6mu+8D+GJhrD2lzY3N20wbzbmBG82HK58wvt+Ugkb+c9c1bdtbmLXNoj074f8AwL0270qe512Ga91RoFuIwZNmJmH+pZCwk5GNp784I5FfS/hvwdqXh7TIY/Ctjp7GZ/Igi1CZpDCtxmRg9u0jiNFbzBHIiu+R83XI8rsrIGaaO7v57Z7m8VbK3tnI8q4WIOkbzFz8jkYYtjHOM4BHbyam+u6T9p1S2gtGjmSd5r5XuGZo12yeW0jqGySN5QFw2GOD14KspSep20YJKyR189zpzaxb6D4v0qPSfLkhuZW02WWSWOXCFHMEj/ZwrZUS8bZPvDB5r0WTXL/Rb0WNjqd1eXLK10L2KV4IfKicfLMsUgn8wDagABjIPy5yWHmXhf8A4SPU2fT4dZspTK8ksAlmcxguuWRWu4TCSDu6ud2MMwxx3Wh6fdwWEOox2sh1FVjUGQJHH5cZVydzlI+ckYQSAjoWIAGElY7IN9T2yxuE8Tabbx3yQ3t7HKLia0kmSwuE8zoLW7GVbbJuK7yylsqVOTVbSY9U8M6iII9heO4a5m+22unx6ppEqYZri3k3pHOpQb18qMblUldp5rwu81J11FdQ1JooniKzxWstqZLCGTI3IJT/AMe4ZzxIpCqC24H5a697bWr5tM0e5ttR1CxshJc6PcanePBNYyAnzYYJUH75Sm1guwqxAI3A5PNKmdKlc+nNQgm1iRNXDyzs8Lyw3MEU08+5SJgkktnJDKC4YmITq43ZTI21zVz4jtJ/N0O5t9V0y5uLcXMCgSRhIkkDt5drP5vLyIAx/fAkbiYwMDwqy0Ow8OXzxayupeW1sXldPKk3FhloJZfKSNjkKzRtnb1+bnPpun+NGd73QtQifTLYyAzXliIlmhdWRvmgRhG5xgt5O35eGAbNZOPYuNTQ7IeGYNfln1uW5vEu9QnWS9062FqlrcIsZfzpI4JmCFnAc7YicMXXd0Glo3jjxVpL2uhyabb2NxdXci6bBcag2p20jpt2JIrs7DbFkZDBieXVRXnltrj2OsG+W7h1CZdTFxJLp1vLp11Na4wWiuWwk0hzvaGcb3VcIdxWvcbnW5rvQ7GTwt5h1uSCRZkvbqCzkkt2LmH7Fcm3gCzCTf5tvMoKjBUlVyJaBNlrTV+KlzZrcWcPxAsI3LMLSws5rq1QljnyJo7nY0THLJt+UKQBwKvfZvi9/wA9viX/AOCu5/8AkmvGD421qzY2uq+I9etbmNik9te6Ub+aJweUNzb27xTBeiujEMuDx0pP+E/uv+hq1T/wn5//AJEpWQuddz//1/yU1h9f0zw2bOxhgi1OZEt4YYHK3EwDOWcRqzqpDMQild4GDhRmm6Rpmi2WmXSQrqc15ZSLDezmOSPc85EWFZOpBKqzNgA4Gc4pdF+JWt+ML8aX8PNDL6rbpNZRNpkbTLBGGBJEcKkE7j8rlM7TnIANel2Hw3/aisfDNzdR6BrEuiy3D2iTJD86yR7vuqAWZsqzOWGc5PTmvjXzLc+uUkeYWF3qmo6LLrGqpOw+2m1tpJ8yJ5DMivh8kBncL8nIGMkZ5rgND8Jxxa9PeXlxd6dNdXS2WnwSl55MxhjLslQuoIjcglgWzgYxmuuuPG3im5v5PDPia8vY9OtIRFLp1wBta4DBoUSFYt24OATu5xjno1ZVgRa2ep3ES3FvcQ26Ty3wuMPGpSNpAiKNqu4XaNzkHHvxSbsUaLeHtK1i+sb+GK5uEMPm3uoDaVjcAbi7427CjZdAd244ZSc54max1S7MtxdJPG5uxusIljhjhihKq8twsqqqM5QEqACVOQucmtt9R1a9eOGGS4t0EsN0kEl80ayghQkk0f8AqmI2gFcrnGCCeata1eQR29lfKl03ktvMly6yy3Ei5Y+YozwJCGVg4IA/izinGTRg/MnsNHs31SM6Z5d2Ps8srMXVRFFGhEm1IcKSvyhS2Ay9BgmuE103J0O0srO3KySOsNmkIQZG0nBJGMwqQ204HzcHpXoVxqUlppdnZJePJJPm5u5VikSJZXG1olJBU7gygtkcjoRxXmHl2kl0ZbuBkSJfPijhQytbpglUkkdOCy84xuHCcdRcVfViGaJ4bubjTra0vv31pFcmCO4nhIjlyNs0+WDY2MQAOgcMc5xn1jxpb29tbaFp/h6RpUt9HtxpvnqEg877TMrPMwLL1LEDJB6jJOR502s2+pWwstIZreWe3KOUZo9iFi5RI2YENuOCDnnLcggHqrrT7vxR8N/7S04mS50ZxFGIyIpPJmdWjcMwCjynUhlHzZcDA4BTerG4vc8j1LZFfSWiGVIbaV47pSgWWUofkZz82QC2AOvQ44rjJ7SPyrvUIJXhNmscuowKSJJLc8wxoF+ZVwMEE5PHAGa9itBo17dGOKBmk0yd5754SqtJMy/PGem5pMkZYqcscE84pxafPBqEy61brCIsXUsasJFklcFljYRx4bys7mO4lRgEn7tbwqkSjqcjFrduuipDqkMllcCZLm7eLa2ZFQCGCFMYG1SC55A5z7eEeINXvtM1ePWdKYSC1niurmQE7VcEldsq4ZlQgMpz3B6V9J/2faWsLtEou3W2bzJYpA32i7kBZxkYwEUqigbcBNp4LE+cSeEUjs7pbrbN5NlJLOxjJHLhnSUZPROF24BXPDYIrppTW5lOl2PSvgn+1nNZeIbG28QTLZS6e0DiwGY0uo4cmQAjOUKAKwY5OWxyefoXx58Qz4D8drf2NvEbWScXVvcyZZvInO+F9oOOAygKRw4IOBmvzZ134ZSaxfK06yW0kamTdbMpkRQMEjbhuhxjIQD6Vhaf4r8fyeAf7MjuDPc6DIbqK0uWYCTTJJMuJACctbMfMGDna7c4AruU1JWTOJ3Tuz7x1/U4dfihu7yFnWO5zJIZF82dmkyznuFVSpCjOOOB3808Q63oTX0EpurZJY1KKkKhVG3MqKrScZL43MQSRz0IFfHll8dtfijvdO1C1fzsbPJjBxKqYziT7vz5J45xjPQY8z13x34Y127ea5S4hnIle3hJYIuST16sWCjHIyO9NUtSlUR+itz4W8Wz+Bp/iHoMLiDy5C8rRtMZJpijyK5kwobaxLsBwBjPJrwfRPih8SPBt/Yvp924nu7ySWedsHMsrRqxBHJXESDjrt9zX6VFNO8P/sB+Fk0SOe6bUnub4ytlmmDJs3nDjYgYkgHgBcg18P8AwV+EviDVvEWm6j4q3X1usswRhlxH5K8oTz918qBj0x2rnxMuSPMz1sopKtJpo9LsP2ovGGk6HP4bvo4bi1sWM17IECzXVtGSWjVcj5nba+f74Y424FfffwH+Mum6t8LrSx8HW633iLVij36krJFZTyHcrvsYgIsRLMAMjcewXP52S/DPS7z4syWVmXaCeQeRC8RMsgl5IWI4wF5yzAqPQ1+wHwL/AGa9N8EeDjpWmw+TdagWASA77mUSZBLkdFO0qMYBGcYAGMqeJ5lZHRjsJCByvjTXta1nRtM0jwtcSR2elxxWcnlZXzQHcea5GD8zBWA7kZI618V/EdLq61ey8DXT3C20ii/XTbd2RjcakzTM0BYckBc+UT93coJLLX6Sp8MjauPDcUqW9pExNzdZ3BkX5XljYZ3LGrEDnlyevBr5A/a48J+HbbVPDN9pUEkl9fOiSQQxfdthIIIVOcZZIyvljhiy+jCt4xdvePMsuh84/tRZ8H/sp61Z6sRLqV/LHpUUU6m3upbK2aMy3AYoQ6gSRBSQxJyuTg4/CDxT5vgywh0vyka5vI2kYIRkOCRkheQSOccflxX77/8ABQPXoI/jL4d8A6qm2zufBxT98yyF574PJGUbAIHmKny568dRX87Oq6hc/EDxJJeL/osafu4om+YxgHknAxnnnNb0Gm7nl1+50HhOGS012GSV+VthO5P3VdlJIH+1xyemK+ifCk8c0kc935sMMEk08EiSsc+XhRI4D5IPfG1TkcYya8f01dOhnkt0R/KsoIyjxBVR2Zu74I5C4PT8eMeqeC7uxspvPhNwgFs0BhUAFmlGcO2fmQgHr69RUVZXLoRsd74Wsbq7FpqEUDJcw28rO6xKXVmOwkKhOdqMrcEnByxGDXf+GEvbrXP7JaZbnTCywTQFhtVHRt6RKx4LqdpxnaDxnArT8G6Dps+rTjTHWziaVhBdqG8pPL2lY/LRZECH5jnfknG7IGK9c0Lwlp19qdrqdleRm9CyohgXZAA4UookZnVULK20bFxwe5Fck5dEdkIXMm08O2sVkbmSd5riZJRA00qFgpHMc0i7sbQAAV+VhngE07RtReK8WCyEEm6UfZovP8mNSqsGYJgDOQcFlB+bbwOK2YZVs9J/sO7WWynjF81qkwcyQORk/O2WwzYKqVOCCQDkVStota+xh9TlsrSX7MrPbsWdyX+VlVST8rHJIVGzjPHbJnYUvEum3MeqSa14ltbcQXlwHhvpZJXiXJJCb4DvRs8FeNxyuDzXcafol9osia1d6dIbWYOLTxBplzLJHDBGdvl3WIY3jCru2kxhVLkcEkia50WKZrMyPbw2z2rwyyPYymxu4W+Yi4j2HCqAWDunIGckjNbfhO30mx01NI1B77SVdzLJ/ZNnCbMugfejFW2SiQJlGxu2nBUZzWUnoNFqK48RFbK91iaUw3atK0W+SaOSUYfcwL7ZCFKkBtpxz82as3J8XeHmmTSGntp0YNbQHyZHg3r86RGUOCctggDoRgE81R064uY7f7XoUmnz28z+TFb3kdvH5IB+TapzIihVyBu4PDejd1pv2jUydTmigjglZIprh2jiWUAcNtUgjJQY45JyQCMVk1rc26HG2U/irWdPWz12yV7a1be07LPA9q4TAkR4Z4iihW+famMfeBIzXdWuk+OL+wbw9puoXmoabFFhH1aSG/gkhPKmzMhMrLDIn3pZAwwob+JS+HQ4kh1G2sLOdLfyiLiR7h7m5t2UMWJgCMoVhkbvu7fTIrlJvCTPpwfSo7W5jt45FWa3kCLbmTO6OWG4z5L525kGFDYGexzuTdI9Z0fxD8WtK0uDTbOe2tIoYxHHbf2dcjy1HQf6FeJb5x1MShT1wK0v+Ex+Mf8A0ELb/wAF+p//ACdXz5qHg6S5vpZp7HWbpy5DT3F1DFIxHHK+Ww4xgMDhgAwwCBVP/hB1/wCgTqf/AIHQ/wDxmq17B7RH/9D8wf2d/jJ4m/ZX8QWl5o3hbTdQu31R73UtalBlklhmQILVXK5t8D5twz0HA5r+ij9nz/gol+zb8bbS38O3d1D4V1mzid49O1QxhEkVgZtlw22MgjO7JVipGRyRX87dx/x7L/11l/8ASmCvmTxL/wAlAvf+vCX/ANGNX57g8yqTajLU/R8wyKjJaaO5+5//AAVA+APgbwRqWlfEHwTaJaQeSz30yybzcPuRlxtwodgxbJfBPWvx2uPib5GiTaY13bzWUVz5axzwK7efyBJhMoQF257hvxNfrP8Attf8mKeA/wDr3t//AEWtfhtoH/Is6X/u6h/6Nr0mlzyXZnz+Fb9mrns2g+K4jcfYp5Lh5D5cZmigKmOLliq4xsDEggg/QZJq54g1aw0zS7MSQwtqcjJHCmzZMyzOcCaXJB3Kd24jow5zxWX4Y/5Bepf9fL/+ilrI+In/ACM6/wDXlB/6KWklqdG4zSfh/c6voQ8TstrbW13c7cg/aHeZJHDNuKlh5QXgnueg6Vh6zZ+ILe4js4GuSZLlgiOyuZ5U+8F+bI+VSGILdcYHQ+zaF/yIGkfSH/2pVq7/AORy0v8A34//AEMVSk+Zofs0lc8P8O6G3hm9Gl2cYeK78ya5WUkQB+uw/wAZZANoIOM469+p8OzzSTjVJo/Os7h5NPigDOf3IxGdyr8oCvtYnYPmGdo4r2jxn/yAH/6/7j/0TJXn3w8/489R/wCvu9/9FLSTFLYxrDwpDbXUul20sZj07bI8qMii5uZ2PzYbAdtgILj7vIXnNb9vb6b4YupYVtIruJJ5Yre46mSV1JlcLuKhVyoIPTaw2k9JfD//ACCdH/6+pv8A0tjqfUv+Rxk/3br/ANGGi5geZaxo63s7Wt2JZ7LTYJb+SaVfJdppmAC7lTcoXcGCkBuhyoya5fXbXU9a8mxS3MGntDLNLJ5QVrqO3YkM7IfldipLZlB24GDnNdfff8eeuf8AXWH/ANkqp43/AOQ5/wBw6L/0jFdEHsVbS55DaeGLvUtGmudQQA3UjM7pIHdo85ywhO4qCw4z/jXD2m1vFz37wtPa26f2fILnhJRhludo/iUg7MnGQM5JGa9R17/kTIP+vO1/9CSuJP8Ax5an/wBeVr/I11UpO7OapBNo8b8X/DnQNL1aW0jlWGBD+5l2iUyx4LK7DgYbIz0x2zXz/qXwsjnsXulk2bXZocnIAk6LtI5JYkgDOzI5r7K8Y/8AIN0//sAp/WvLNa/5E6f/AHov/Qq7lUaRxSindW2Pr39k74yWOi/DzXP2ZfjgZk0dLKXVPDd+VN1JaP8AeuIhgndGysQcYwCwwQSK+zV8C/Dv4aWNrq3hPxNFdRsXa6/stizXPl/vHh8vc2wlvldjgcAdRX4y/Df/AJDyf9eWs/8ApFLX2n+zv/yJw/66/wDsprzsyxLjT2PoeHsJz1W+ay/4B9j/AAW8Mp4q+It38UPFVszRRgSxWQkIEwQBYkYL0VQOScg84A61946R8VvFMVjNPZiJL2/k2SPGi+akQ+VLe2hGAgIADSNlVUY5Cla+VfhD/wAi1q3/AF6j/wBCNexaN/qG/wCvMf8ApPDXoYGmuZadCs0pq0pdnY+p7W7lj0GF9baCa5vGBuDD+6hWNckRZ5JQDA68jOByTXzX8a/AEPivU7H/AImFtD9llju/PdSI4Z4Fe4TAAPIYA57YwOcCvoLXP+QpH/uj+UVfPnjD/kVNZ/7Cln/WjETuzy4wtBn4Yf8ABXbxZNp37Tmm21rKnnaXo+kOI4v4BCPOA+U5DBsgjuMGvzN8caDpuleNb9dM2pb3Miajp+wYikiuwJUzjttfHfkfl9s/8FYv+T4vEf8A1xs//SZK+UfGf/MD/wCxZ0/+Rq8OvcuebP4kv62KOk2V+DDFCSvnSFCSo8vy15bJwQRkdB3/ABr2bwLHc2WoQxveNEtxO4EiwxoVA+cMCepXHJJX1ziua8J/8icP9/8A9laun8Pfdg+kf/oJqN0awVtT6G8O6Nd3Om20erWl+8zRzJbsZY0zPlsqJAwBLjadgRt3TOMg+seFNQ1vRfFTQPBJDZPb5EcgdzbTEFlCcksxPy4bjIznkYjT/kP6L/11tf8A0aa9C1n/AI/df+mkf+iFrgcrux1xVkmek/Aj9nDxb8bvFb6i2n6gdMgmibVrwJHOrzSrzG3lTRyABM7wgLRZLMGBAr9dpP8Agn7b6k8dp4IuxYW929zYarqjWg8uKFEWaNrKFkBtU3Ljb5khbJJKnINf/gjx/wAeni7/ALG1v/RRr9vz/wAhmy/7Ckn8lropUU1qedjMXOMny9D+Sv8Aa8/Yk8YfC+2m1jRLu51HQY3kYQ6gRLcQmMlAJCjIoSUMTgK2xcDua+CY9LufDVqkWitJAYYHknhUqUz5jEb3mRthmX5cpwdoBUBcn+w/45f8kh8Uf9gi+/8ARkdfyeap/rfHv+/c/wDoyssTS5Hoz0MHVc46nMXUOrwQwXRtmic2UU00UPkSH5xh2yoXIkYK2FJbkFcj5a9l8FaD41e4ubmyNxcCezQRXCyfZraNzgyL5UgjjL7QVY5woOWzXiHw5/5Asf8Avx/+gw1976X/AMgG++n/ALLLXFPY7eY8sig0iR1s5NL1iHVYy0Fuke5wS2P3hKRtHIGJCFWygwCCRkjH19okvv7XnTxJuMe2VL4xR2iOhbbbuIlUzZPI2ELjkngGun+E/wDyKOq/9f1h/wCjJK6T4af8itf/APX2n/oq5qEuo1qj5x1aPQtF1GTTJbnULd4yN8IhuLgKzAMf3lsXhbJOfkYqOg6Vnf2j4e/5/wDUf/AO/wD8K9V8Lf8AIv2v/XP+prfrZtjsj//Z", + ], + "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": "932EBF18-9F5F-C245-A499-C2EB430024C4", + "docVars": Array [], + "evenAndOddHeaders": false, + "zoom": 100, + }, + "styles": Object { + "docDefaults": Object { + "runPropertyDefault": Object { + "runProperty": Object { + "fonts": Object { + "asciiTheme": "minorHAnsi", + "csTheme": "minorBidi", + "eastAsiaTheme": "minorEastAsia", + "hiAnsiTheme": "minorHAnsi", + }, + "sz": 21, + "szCs": 21, + }, + }, + }, + "styles": Array [ + Object { + "basedOn": null, + "name": "Normal", + "paragraphProperty": Object { + "alignment": "both", + "runProperty": Object {}, + "tabs": Array [], + "widowControl": true, + }, + "runProperty": Object {}, + "styleId": "a", + "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", + }, + }, + }, + Object { + "basedOn": null, + "name": "Default Paragraph Font", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a0", + "styleType": "character", + "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", + }, + }, + }, + Object { + "basedOn": null, + "name": "Normal Table", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a1", + "styleType": "table", + "tableCellProperty": Object { + "borders": null, + "gridSpan": null, + "shading": null, + "textDirection": null, + "verticalAlign": null, + "verticalMerge": null, + "width": null, + }, + "tableProperty": Object { + "borders": Object { + "bottom": null, + "insideH": null, + "insideV": null, + "left": null, + "right": null, + "top": null, + }, + "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", + }, + }, + }, + Object { + "basedOn": null, + "name": "No List", + "paragraphProperty": Object { + "runProperty": Object {}, + "tabs": Array [], + }, + "runProperty": Object {}, + "styleId": "a2", + "styleType": "numbering", + "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", + }, + }, + }, + ], + }, + "taskpanes": null, + "taskpanesRels": Object { + "rels": Array [], + }, + "themes": Array [ + Object { + "fontSchema": Object { + "majorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游ゴシック Light", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线 Light", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Times New Roman", + }, + Object { + "script": "Hebr", + "typeface": "Times New Roman", + }, + Object { + "script": "Thai", + "typeface": "Angsana New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "MoolBoran", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Times New Roman", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "游ゴシック Light", + }, + "minorFont": Object { + "cs": "", + "ea": "", + "fonts": Array [ + Object { + "script": "Jpan", + "typeface": "游明朝", + }, + Object { + "script": "Hang", + "typeface": "맑은 고딕", + }, + Object { + "script": "Hans", + "typeface": "等线", + }, + Object { + "script": "Hant", + "typeface": "新細明體", + }, + Object { + "script": "Arab", + "typeface": "Arial", + }, + Object { + "script": "Hebr", + "typeface": "Arial", + }, + Object { + "script": "Thai", + "typeface": "Cordia New", + }, + Object { + "script": "Ethi", + "typeface": "Nyala", + }, + Object { + "script": "Beng", + "typeface": "Vrinda", + }, + Object { + "script": "Gujr", + "typeface": "Shruti", + }, + Object { + "script": "Khmr", + "typeface": "DaunPenh", + }, + Object { + "script": "Knda", + "typeface": "Tunga", + }, + Object { + "script": "Guru", + "typeface": "Raavi", + }, + Object { + "script": "Cans", + "typeface": "Euphemia", + }, + Object { + "script": "Cher", + "typeface": "Plantagenet Cherokee", + }, + Object { + "script": "Yiii", + "typeface": "Microsoft Yi Baiti", + }, + Object { + "script": "Tibt", + "typeface": "Microsoft Himalaya", + }, + Object { + "script": "Thaa", + "typeface": "MV Boli", + }, + Object { + "script": "Deva", + "typeface": "Mangal", + }, + Object { + "script": "Telu", + "typeface": "Gautami", + }, + Object { + "script": "Taml", + "typeface": "Latha", + }, + Object { + "script": "Syrc", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Orya", + "typeface": "Kalinga", + }, + Object { + "script": "Mlym", + "typeface": "Kartika", + }, + Object { + "script": "Laoo", + "typeface": "DokChampa", + }, + Object { + "script": "Sinh", + "typeface": "Iskoola Pota", + }, + Object { + "script": "Mong", + "typeface": "Mongolian Baiti", + }, + Object { + "script": "Viet", + "typeface": "Arial", + }, + Object { + "script": "Uigh", + "typeface": "Microsoft Uighur", + }, + Object { + "script": "Geor", + "typeface": "Sylfaen", + }, + Object { + "script": "Armn", + "typeface": "Arial", + }, + Object { + "script": "Bugi", + "typeface": "Leelawadee UI", + }, + Object { + "script": "Bopo", + "typeface": "Microsoft JhengHei", + }, + Object { + "script": "Java", + "typeface": "Javanese Text", + }, + Object { + "script": "Lisu", + "typeface": "Segoe UI", + }, + Object { + "script": "Mymr", + "typeface": "Myanmar Text", + }, + Object { + "script": "Nkoo", + "typeface": "Ebrima", + }, + Object { + "script": "Olck", + "typeface": "Nirmala UI", + }, + Object { + "script": "Osma", + "typeface": "Ebrima", + }, + Object { + "script": "Phag", + "typeface": "Phagspa", + }, + Object { + "script": "Syrn", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syrj", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Syre", + "typeface": "Estrangelo Edessa", + }, + Object { + "script": "Sora", + "typeface": "Nirmala UI", + }, + Object { + "script": "Tale", + "typeface": "Microsoft Tai Le", + }, + Object { + "script": "Talu", + "typeface": "Microsoft New Tai Lue", + }, + Object { + "script": "Tfng", + "typeface": "Ebrima", + }, + ], + "latin": "游明朝", + }, + }, + }, + ], + "webExtensions": Array [], + "webSettings": Object { + "divs": Array [], + }, +} +`; + exports[`reader should read line spacing docx 1`] = ` Object { "comments": Object { @@ -11787,9 +12933,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 1, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -12212,9 +13359,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -14835,9 +15983,10 @@ Object { "hasComments": true, "hasNumberings": false, "headerCount": 1, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -17011,9 +18160,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -20224,9 +21374,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -21664,9 +22815,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -25089,9 +26241,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 1, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -44038,9 +45191,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -46118,9 +47272,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [ @@ -50674,9 +51829,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], @@ -51770,9 +52926,10 @@ Object { "hasComments": false, "hasNumberings": false, "headerCount": 0, - "imageIds": Array [], + "images": Array [], }, "fontTable": Object {}, + "images": Array [], "media": Array [], "numberings": Object { "abstractNums": Array [], diff --git a/docx-wasm/test/index.test.js b/docx-wasm/test/index.test.js index 1147d8d..b6b827b 100644 --- a/docx-wasm/test/index.test.js +++ b/docx-wasm/test/index.test.js @@ -124,6 +124,12 @@ describe("reader", () => { const json = w.readDocx(buffer); expect(json).toMatchSnapshot(); }); + + test("should read image inline and anchor docx", () => { + const buffer = readFileSync("../fixtures/image_inline_and_anchor/image_inline_and_anchor.docx"); + const json = w.readDocx(buffer); + expect(json).toMatchSnapshot(); + }); }); describe("writer", () => { diff --git a/fixtures/image_inline_and_anchor/image_inline_and_anchor.docx b/fixtures/image_inline_and_anchor/image_inline_and_anchor.docx new file mode 100644 index 0000000..e5c6fce Binary files /dev/null and b/fixtures/image_inline_and_anchor/image_inline_and_anchor.docx differ diff --git a/makefile b/makefile index c754d9d..e2ee5ef 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ test: cargo test -- --test-threads=1 lint: - cargo clippy --all-targets --all-features -- -D warnings + cargo clippy --all-targets --all-features -- -D warnings -A clippy::derivable_impls -A clippy::large-enum-variant vrt: node vrt/index.js && reg-cli vrt/screenshot/actual vrt/screenshot/expected vrt/screenshot/diff -R vrt/report.html -I