abstract-document 6.8.2 → 6.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +127 -127
- package/LICENSE +21 -21
- package/README.md +45 -45
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/group.js +90 -90
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/header-and-footer.js +69 -69
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/hello.js +51 -51
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/letter-dimensions.js +51 -51
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/mixed-hyperlink-and-textrun.js +115 -115
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/mixed-textrun-and-images.js +169 -169
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-images.js +141 -141
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-tables.js +467 -467
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-center-alignment.js +97 -97
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-end-alignment.js +97 -97
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.js +96 -96
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment.js +96 -96
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/page-numbering.js +102 -102
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-colSpan-and-rowSpan.js +498 -498
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-without-rows.js +20 -20
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/simple-table.js +167 -167
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-hyperlink.js +70 -70
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image.js +97 -97
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment-that-linebreaks.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment-that-linebreaks.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment-that-linebreaks.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun.js +68 -68
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/world.js +51 -51
- package/package.json +3 -3
- package/src/abstract-document/__tests__/hello-world-abstract-doc.ts +245 -245
- package/src/abstract-document/__tests__/markdown/export-test-def.ts +10 -10
- package/src/abstract-document/__tests__/markdown/export.test.tsx +15 -15
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-bold-italic.tsx +31 -31
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-bold.tsx +31 -31
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-empty-keepTogether.tsx +54 -54
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-header.tsx +38 -38
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-italic.tsx +31 -31
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-keepTogether.tsx +61 -61
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-subscript.tsx +45 -45
- package/src/abstract-document/__tests__/markdown/test-defs/markdown-superscript.tsx +38 -38
- package/src/abstract-document/__tests__/model-builder._test.ts +48 -48
- package/src/abstract-document/abstract-doc.ts +19 -19
- package/src/abstract-document/atoms/atom.ts +14 -14
- package/src/abstract-document/atoms/hyper-link.ts +27 -27
- package/src/abstract-document/atoms/image.ts +21 -21
- package/src/abstract-document/atoms/link-target.ts +15 -15
- package/src/abstract-document/atoms/text-field.ts +36 -36
- package/src/abstract-document/atoms/text-run.ts +25 -25
- package/src/abstract-document/atoms/toc-separator.ts +18 -18
- package/src/abstract-document/default-styles.ts +145 -145
- package/src/abstract-document/index.ts +89 -89
- package/src/abstract-document/markdown/markdown.ts +142 -142
- package/src/abstract-document/markdown/types.ts +78 -78
- package/src/abstract-document/numberings/numbering-definition.ts +17 -17
- package/src/abstract-document/numberings/numbering-format.ts +7 -7
- package/src/abstract-document/numberings/numbering-level-definition.ts +42 -42
- package/src/abstract-document/numberings/numbering.ts +3 -3
- package/src/abstract-document/page/master-page.ts +23 -23
- package/src/abstract-document/page/section.ts +27 -27
- package/src/abstract-document/primitives/font.ts +37 -37
- package/src/abstract-document/primitives/image-resource.ts +27 -27
- package/src/abstract-document/primitives/layout-foundation-color.ts +37 -37
- package/src/abstract-document/primitives/layout-foundation.ts +37 -37
- package/src/abstract-document/primitives/length.ts +11 -11
- package/src/abstract-document/primitives/point.ts +11 -11
- package/src/abstract-document/primitives/rect.ts +15 -15
- package/src/abstract-document/primitives/size.ts +13 -13
- package/src/abstract-document/resources.ts +101 -101
- package/src/abstract-document/section-elements/group.ts +28 -28
- package/src/abstract-document/section-elements/page-break.ts +14 -14
- package/src/abstract-document/section-elements/paragraph-numbering.ts +6 -6
- package/src/abstract-document/section-elements/paragraph.ts +32 -32
- package/src/abstract-document/section-elements/section-element.ts +17 -17
- package/src/abstract-document/section-elements/table.ts +34 -34
- package/src/abstract-document/styles/group-style.ts +30 -30
- package/src/abstract-document/styles/page-style.ts +76 -76
- package/src/abstract-document/styles/paragraph-style.ts +49 -49
- package/src/abstract-document/styles/position.ts +8 -8
- package/src/abstract-document/styles/style-key.ts +5 -5
- package/src/abstract-document/styles/style.ts +44 -44
- package/src/abstract-document/styles/table-cell-style.ts +59 -59
- package/src/abstract-document/styles/table-style.ts +46 -46
- package/src/abstract-document/styles/text-style.ts +77 -77
- package/src/abstract-document/table/table-cell.ts +31 -31
- package/src/abstract-document/table/table-row.ts +14 -14
- package/src/abstract-document/types.ts +3 -3
- package/src/abstract-document-exporters/__tests__/docx2/export-test-def.ts +10 -10
- package/src/abstract-document-exporters/__tests__/docx2/export.test.tsx +67 -67
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/group.tsx +114 -114
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/header-and-footer.tsx +110 -110
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/hello.tsx +70 -70
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/letter-dimensions.tsx +74 -74
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/mixed-hyperlink-and-textrun.tsx +137 -137
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/mixed-textrun-and-images.tsx +212 -212
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-images.tsx +182 -182
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-tables.tsx +553 -553
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-center-alignment.tsx +119 -119
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-end-alignment.tsx +119 -119
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.tsx +121 -121
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/multiple-textrun-with-start-alignment.tsx +118 -118
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/page-numbering.tsx +123 -123
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-colSpan-and-rowSpan.tsx +587 -587
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table-without-rows.tsx +45 -45
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/simple-table.tsx +210 -210
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-hyperlink.tsx +89 -89
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-image.tsx +137 -137
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment-that-linebreaks.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-center-alignment.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment-that-linebreaks.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-end-alignment.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment-that-linebreaks.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun-with-start-alignment.tsx +88 -88
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-textrun.tsx +87 -87
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/world.tsx +70 -70
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Group.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Header and footer.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Header → footer.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed hyperlink and textrun.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed hyperlink → textrun.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed textrun and images.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Mixed textrun → images.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple images.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple tables.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Center alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with End alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Start alignment that linebreaks.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Multiple textrun with Start alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Page numbering.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table colSpan and rowSpan.docx and b/package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table colSpan → rowSpan.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table without rows.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Simple table.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single hyperlink.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single image.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Center alignment that linebreaks.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Center alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with End alignment that linebreaks.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with End alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Start alignment that linebreaks.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun with Start alignment.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single textrun.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/hello.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/letter-dimensions.docx +0 -0
- package/src/abstract-document-exporters/__tests__/docx2/tmp/world.docx +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/export-test-def.ts +10 -10
- package/src/abstract-document-exporters/__tests__/pdf/export.test.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-group.tsx +77 -77
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-header-and-footer.tsx +205 -205
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-paragraph.tsx +51 -51
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-section-in-group.tsx +96 -96
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-section-in-table.tsx +145 -145
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/absolute-position-table.tsx +117 -117
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/date.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-no-keep-together.tsx +1287 -1287
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-paragraphs.tsx +1291 -1291
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-tables.tsx +1314 -1314
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/group-too-big-for-one-page.tsx +272 -272
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/header-and-footer.tsx +162 -162
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/hello.tsx +45 -45
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/hyperlink-intenal-link-target.tsx +831 -831
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/hyperlink-internal.tsx +811 -811
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/margins-header-body-footer.tsx +1008 -1008
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun-no-underline.tsx +114 -114
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun-with-underline.tsx +114 -114
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-hyperlink-and-textrun.tsx +113 -113
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/mixed-textrun-and-images.tsx +104 -104
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-images-overflow.tsx +75 -75
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-images.tsx +71 -71
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-center-alignment.tsx +98 -98
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-end-alignment.tsx +98 -98
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-start-alignment-that-linebreaks.tsx +116 -116
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/multiple-textrun-with-start-alignment.tsx +98 -98
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-row-that-doesnt-fit-page.tsx +317 -317
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-single-row.tsx +227 -227
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-group.tsx +500 -500
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-header.tsx +1555 -1555
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-header2.tsx +824 -824
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-bottom.tsx +455 -455
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-top-single-table.tsx +354 -354
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-margin-top.tsx +455 -455
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-rowSpan-multipages.tsx +1567 -1567
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-break-table-with-rowSpan.tsx +545 -545
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/page-numbering.tsx +97 -97
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/pagebreak.tsx +102 -102
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-all-auto-cell-widths.tsx +119 -119
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-all-fixed-cell-widths.tsx +119 -119
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-background.tsx +182 -182
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-cell-padding-image.tsx +200 -200
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-cell-padding-text.tsx +338 -338
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-center-alignment.tsx +114 -114
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-colSpan-and-rowSpan.tsx +425 -425
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-mix-auto-fix-cell-widths.tsx +119 -119
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-padding.tsx +115 -115
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-right-alignment.tsx +115 -115
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-row-alignment.tsx +297 -297
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-text-alignment-in-cell-wrapping.tsx +491 -491
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-text-alignment-in-cell.tsx +248 -248
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-default-colored-borders.tsx +223 -223
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-header.tsx +482 -482
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-multi-colored-borders.tsx +236 -236
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-with-single-colored-borders.tsx +236 -236
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-figure.tsx +323 -323
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-center.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-no-underline.tsx +70 -70
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-right-aligned.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink-with-underline.tsx +70 -70
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-hyperlink.tsx +65 -65
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-hex.tsx +272 -272
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-name.tsx +272 -272
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-color-url.tsx +97 -97
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image-svg-dasharray.tsx +85 -85
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-image.tsx +70 -70
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-alphabetic.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-bottom.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-hanging.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-middle.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-baseline-top.tsx +46 -46
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-super-subscript.tsx +98 -98
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-center-alignment-that-linebreaks.tsx +81 -81
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-center-alignment.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-end-alignment-that-linebreaks.tsx +81 -81
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-end-alignment.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-justify-alignment.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-start-alignment-that-linebreaks.tsx +81 -81
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun-with-start-alignment.tsx +66 -66
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/single-textrun.tsx +45 -45
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/table-of-content-separator.tsx +81 -81
- package/src/abstract-document-exporters/__tests__/pdf/test-defs/world.tsx +45 -45
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position group.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position header and footer.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position paragraph.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position section in group.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position section in table.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Absolute position table.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Paragraphs.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Tables.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group no keeptogether.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group too big for one page.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Header and footer.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Hyperlink internal linktarget.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Hyperlink internal.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun no underline.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun with underline.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed hyperlink and textrun.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed textrun and images.pdf and b/package/src/abstract-document-exporters/__tests__/pdf/tmp/Mixed textrun → images.pdf +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple images overflow.pdf +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple images.pdf +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Center alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with End alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Start alignment that linebreaks.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Multiple textrun with Start alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Page numbering.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table row that doesnt fit page.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table single row.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with group.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with header 2.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with header.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin bottom.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin top single table.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with margin top.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with rowSpan multipages.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Pagebreak table with rowSpan.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table all auto.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table all fix.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table background.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table cell padding of image.pdf +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table cell padding of text.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table center alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table colSpan and rowSpan.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table mix auto fix.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table padding.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table right alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table row alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table text alignment in cell with wrapping.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table text alignment in cell.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with default colored borders.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with header.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with multi colored borders.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table with single colored borders.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single date.pdf +14 -14
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single figure.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink centered.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink no underline.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink right aligned.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single hyperlink.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color hex.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color name.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color url.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg dasharray.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image.pdf +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline alphabetic.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline bottom.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline hanging.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline middle.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun baseline top.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Center alignment that linebreaks.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Center alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with End alignment that linebreaks.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with End alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Justify alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Start alignment that linebreaks.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with Start alignment.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun with super and subscripts.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single textrun.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Table of content separator.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/hello.pdf +2 -2
- package/src/abstract-document-exporters/__tests__/pdf/tmp/world.pdf +2 -2
- package/src/abstract-document-exporters/docx/document-container.ts +18 -18
- package/src/abstract-document-exporters/docx/docx-constants.ts +46 -46
- package/src/abstract-document-exporters/docx/docx-document-renderer.ts +1084 -1084
- package/src/abstract-document-exporters/docx/ref-container.ts +53 -53
- package/src/abstract-document-exporters/docx/string-utils.ts +39 -39
- package/src/abstract-document-exporters/docx/xml-writer.ts +333 -333
- package/src/abstract-document-exporters/docx2/render-image.ts +159 -159
- package/src/abstract-document-exporters/docx2/render.ts +496 -496
- package/src/abstract-document-exporters/index.ts +5 -5
- package/src/abstract-document-exporters/pdf/font.ts +76 -76
- package/src/abstract-document-exporters/pdf/measure.ts +418 -418
- package/src/abstract-document-exporters/pdf/paginate.ts +434 -434
- package/src/abstract-document-exporters/pdf/pre-process.ts +389 -389
- package/src/abstract-document-exporters/pdf/render-image.ts +217 -217
- package/src/abstract-document-exporters/pdf/render.ts +847 -847
- package/src/abstract-document-exporters/pdf/update-refs.ts +163 -163
- package/src/abstract-document-exporters/shared/get_resources.ts +71 -71
- package/src/abstract-document-jsx/index.ts +86 -86
- package/src/custom_typings/@textlint/markdown-to-ast/index.d.ts +1 -1
- package/src/custom_typings/json-diff/index.d.ts +1 -1
- package/src/custom_typings/markdown-parser/index.d.ts +1 -1
- package/src/custom_typings/pdf2json/index.d.ts +1 -1
- package/src/custom_typings/remark-parse/index.d.ts +1 -1
- package/src/custom_typings/remark-sub-super/index.d.ts +1 -1
- package/src/custom_typings/svg-to-pdfkit/index.d.ts +1 -1
- package/src/custom_typings/unified/index.d.ts +1 -1
- package/src/index.ts +5 -5
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.js +0 -149
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.js.map +0 -1
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.js +0 -149
- package/lib/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.js.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.js +0 -83
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/group.js.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.js +0 -105
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-auto-cell-widths.js.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.js +0 -104
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table-fixed-cell-widths.js.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.d.ts +0 -3
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.d.ts.map +0 -1
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.js +0 -104
- package/lib/abstract-document-exporters/__tests__/pdf/test-defs/simple-table.js.map +0 -1
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-image-png.tsx +0 -138
- package/src/abstract-document-exporters/__tests__/docx2/test-defs/single-image-svg.tsx +0 -137
- package/src/abstract-document-exporters/__tests__/docx2/tmp/Single image svg.docx +0 -0
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group Paratraphs.pdf +0 -912
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Group.pdf +0 -123
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer1.pdf +0 -640
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer2.pdf +0 -609
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer3.pdf +0 -1188
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Margins header body footer4.pdf +0 -1188
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table auto.pdf +0 -133
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table one auto.pdf +0 -133
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table padding1.pdf +0 -133
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Simple table.pdf +0 -133
- package/src/abstract-document-exporters/__tests__/pdf/tmp/Single image svg color.pdf +0 -179
|
@@ -49,504 +49,504 @@ exports.test = {
|
|
|
49
49
|
react_1.default.createElement(abstract_document_jsx_1.Paragraph, null,
|
|
50
50
|
react_1.default.createElement(abstract_document_jsx_1.TextRun, { text: "Hello 11" })))))))),
|
|
51
51
|
expectedDocxZipContexts: {
|
|
52
|
-
"word/document.xml": `<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14">
|
|
53
|
-
<w:background w:color="FFFFFF" />
|
|
54
|
-
<w:body>
|
|
55
|
-
<w:p>
|
|
56
|
-
<w:pPr>
|
|
57
|
-
<w:spacing w:before="0" w:after="0" w:line="1" />
|
|
58
|
-
</w:pPr>
|
|
59
|
-
<w:bookmarkStart w:name="" w:id="*" />
|
|
60
|
-
<w:bookmarkEnd w:id="*" />
|
|
61
|
-
</w:p>
|
|
62
|
-
<w:tbl>
|
|
63
|
-
<w:tblPr>
|
|
64
|
-
<w:tblCellMar>
|
|
65
|
-
<w:bottom w:type="dxa" w:w="0" />
|
|
66
|
-
<w:top w:type="dxa" w:w="0" />
|
|
67
|
-
<w:left w:type="dxa" w:w="0" />
|
|
68
|
-
<w:right w:type="dxa" w:w="0" />
|
|
69
|
-
</w:tblCellMar>
|
|
70
|
-
<w:tblBorders>
|
|
71
|
-
<w:top w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
72
|
-
<w:left w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
73
|
-
<w:bottom w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
74
|
-
<w:right w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
75
|
-
<w:insideH w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
76
|
-
<w:insideV w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
77
|
-
</w:tblBorders>
|
|
78
|
-
<w:tblW w:type="dxa" w:w="7000" />
|
|
79
|
-
<w:jc w:val="left" />
|
|
80
|
-
</w:tblPr>
|
|
81
|
-
<w:tblGrid>
|
|
82
|
-
<w:gridCol w:w="100" />
|
|
83
|
-
<w:gridCol w:w="100" />
|
|
84
|
-
<w:gridCol w:w="100" />
|
|
85
|
-
</w:tblGrid>
|
|
86
|
-
<w:tr>
|
|
87
|
-
<w:trPr>
|
|
88
|
-
<w:cantSplit w:val="true" />
|
|
89
|
-
</w:trPr>
|
|
90
|
-
<w:tc>
|
|
91
|
-
<w:tcPr>
|
|
92
|
-
<w:tcBorders>
|
|
93
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
94
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
95
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
96
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
97
|
-
</w:tcBorders>
|
|
98
|
-
<w:vAlign w:val="center" />
|
|
99
|
-
<w:tcMar>
|
|
100
|
-
<w:top w:w="0" w:type="dxa" />
|
|
101
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
102
|
-
<w:end w:w="0" w:type="dxa" />
|
|
103
|
-
<w:start w:w="0" w:type="dxa" />
|
|
104
|
-
</w:tcMar>
|
|
105
|
-
<w:shd />
|
|
106
|
-
<w:gridSpan w:val="2" />
|
|
107
|
-
<w:tcW w:w="3000" w:type="dxa" />
|
|
108
|
-
</w:tcPr>
|
|
109
|
-
<w:p>
|
|
110
|
-
<w:pPr>
|
|
111
|
-
<w:spacing w:before="0" w:after="0" />
|
|
112
|
-
<w:jc w:val="start" />
|
|
113
|
-
<w:ind w:left="0" w:end="0" />
|
|
114
|
-
</w:pPr>
|
|
115
|
-
<w:r>
|
|
116
|
-
<w:rPr>
|
|
117
|
-
<w:color w:val="black" />
|
|
118
|
-
<w:sz w:val="20" />
|
|
119
|
-
<w:szCs w:val="20" />
|
|
120
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
121
|
-
</w:rPr>
|
|
122
|
-
<w:t xml:space="preserve">Hello 1</w:t>
|
|
123
|
-
</w:r>
|
|
124
|
-
</w:p>
|
|
125
|
-
</w:tc>
|
|
126
|
-
<w:tc>
|
|
127
|
-
<w:tcPr>
|
|
128
|
-
<w:tcBorders>
|
|
129
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
130
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
131
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
132
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
133
|
-
</w:tcBorders>
|
|
134
|
-
<w:vAlign w:val="center" />
|
|
135
|
-
<w:vMerge w:val="restart" />
|
|
136
|
-
<w:tcMar>
|
|
137
|
-
<w:top w:w="0" w:type="dxa" />
|
|
138
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
139
|
-
<w:end w:w="0" w:type="dxa" />
|
|
140
|
-
<w:start w:w="0" w:type="dxa" />
|
|
141
|
-
</w:tcMar>
|
|
142
|
-
<w:shd />
|
|
143
|
-
<w:gridSpan w:val="1" />
|
|
144
|
-
<w:tcW w:w="2000" w:type="dxa" />
|
|
145
|
-
</w:tcPr>
|
|
146
|
-
<w:p>
|
|
147
|
-
<w:pPr>
|
|
148
|
-
<w:spacing w:before="0" w:after="0" />
|
|
149
|
-
<w:jc w:val="start" />
|
|
150
|
-
<w:ind w:left="0" w:end="0" />
|
|
151
|
-
</w:pPr>
|
|
152
|
-
<w:r>
|
|
153
|
-
<w:rPr>
|
|
154
|
-
<w:color w:val="black" />
|
|
155
|
-
<w:sz w:val="20" />
|
|
156
|
-
<w:szCs w:val="20" />
|
|
157
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
158
|
-
</w:rPr>
|
|
159
|
-
<w:t xml:space="preserve">Hello 2</w:t>
|
|
160
|
-
</w:r>
|
|
161
|
-
</w:p>
|
|
162
|
-
</w:tc>
|
|
163
|
-
<w:tc>
|
|
164
|
-
<w:tcPr>
|
|
165
|
-
<w:tcBorders>
|
|
166
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
167
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
168
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
169
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
170
|
-
</w:tcBorders>
|
|
171
|
-
<w:vAlign w:val="center" />
|
|
172
|
-
<w:tcMar>
|
|
173
|
-
<w:top w:w="0" w:type="dxa" />
|
|
174
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
175
|
-
<w:end w:w="0" w:type="dxa" />
|
|
176
|
-
<w:start w:w="0" w:type="dxa" />
|
|
177
|
-
</w:tcMar>
|
|
178
|
-
<w:shd />
|
|
179
|
-
<w:gridSpan w:val="1" />
|
|
180
|
-
<w:tcW w:w="1000" w:type="dxa" />
|
|
181
|
-
</w:tcPr>
|
|
182
|
-
<w:p>
|
|
183
|
-
<w:pPr>
|
|
184
|
-
<w:spacing w:before="0" w:after="0" />
|
|
185
|
-
<w:jc w:val="start" />
|
|
186
|
-
<w:ind w:left="0" w:end="0" />
|
|
187
|
-
</w:pPr>
|
|
188
|
-
<w:r>
|
|
189
|
-
<w:rPr>
|
|
190
|
-
<w:color w:val="black" />
|
|
191
|
-
<w:sz w:val="20" />
|
|
192
|
-
<w:szCs w:val="20" />
|
|
193
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
194
|
-
</w:rPr>
|
|
195
|
-
<w:t xml:space="preserve">Hello 3</w:t>
|
|
196
|
-
</w:r>
|
|
197
|
-
</w:p>
|
|
198
|
-
</w:tc>
|
|
199
|
-
</w:tr>
|
|
200
|
-
<w:tr>
|
|
201
|
-
<w:trPr>
|
|
202
|
-
<w:cantSplit w:val="true" />
|
|
203
|
-
</w:trPr>
|
|
204
|
-
<w:tc>
|
|
205
|
-
<w:tcPr>
|
|
206
|
-
<w:tcBorders>
|
|
207
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
208
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
209
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
210
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
211
|
-
</w:tcBorders>
|
|
212
|
-
<w:vAlign w:val="center" />
|
|
213
|
-
<w:tcMar>
|
|
214
|
-
<w:top w:w="0" w:type="dxa" />
|
|
215
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
216
|
-
<w:end w:w="0" w:type="dxa" />
|
|
217
|
-
<w:start w:w="0" w:type="dxa" />
|
|
218
|
-
</w:tcMar>
|
|
219
|
-
<w:shd />
|
|
220
|
-
<w:gridSpan w:val="1" />
|
|
221
|
-
<w:tcW w:w="3000" w:type="dxa" />
|
|
222
|
-
</w:tcPr>
|
|
223
|
-
<w:p>
|
|
224
|
-
<w:pPr>
|
|
225
|
-
<w:spacing w:before="0" w:after="0" />
|
|
226
|
-
<w:jc w:val="start" />
|
|
227
|
-
<w:ind w:left="0" w:end="0" />
|
|
228
|
-
</w:pPr>
|
|
229
|
-
<w:r>
|
|
230
|
-
<w:rPr>
|
|
231
|
-
<w:color w:val="black" />
|
|
232
|
-
<w:sz w:val="20" />
|
|
233
|
-
<w:szCs w:val="20" />
|
|
234
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
235
|
-
</w:rPr>
|
|
236
|
-
<w:t xml:space="preserve">Hello 4</w:t>
|
|
237
|
-
</w:r>
|
|
238
|
-
</w:p>
|
|
239
|
-
</w:tc>
|
|
240
|
-
<w:tc>
|
|
241
|
-
<w:tcPr>
|
|
242
|
-
<w:tcBorders>
|
|
243
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
244
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
245
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
246
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
247
|
-
</w:tcBorders>
|
|
248
|
-
<w:vAlign w:val="center" />
|
|
249
|
-
<w:tcMar>
|
|
250
|
-
<w:top w:w="0" w:type="dxa" />
|
|
251
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
252
|
-
<w:end w:w="0" w:type="dxa" />
|
|
253
|
-
<w:start w:w="0" w:type="dxa" />
|
|
254
|
-
</w:tcMar>
|
|
255
|
-
<w:shd />
|
|
256
|
-
<w:gridSpan w:val="1" />
|
|
257
|
-
<w:tcW w:w="2000" w:type="dxa" />
|
|
258
|
-
</w:tcPr>
|
|
259
|
-
<w:p>
|
|
260
|
-
<w:pPr>
|
|
261
|
-
<w:spacing w:before="0" w:after="0" />
|
|
262
|
-
<w:jc w:val="start" />
|
|
263
|
-
<w:ind w:left="0" w:end="0" />
|
|
264
|
-
</w:pPr>
|
|
265
|
-
<w:r>
|
|
266
|
-
<w:rPr>
|
|
267
|
-
<w:color w:val="black" />
|
|
268
|
-
<w:sz w:val="20" />
|
|
269
|
-
<w:szCs w:val="20" />
|
|
270
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
271
|
-
</w:rPr>
|
|
272
|
-
<w:t xml:space="preserve">Hello 5</w:t>
|
|
273
|
-
</w:r>
|
|
274
|
-
</w:p>
|
|
275
|
-
</w:tc>
|
|
276
|
-
<w:tc>
|
|
277
|
-
<w:tcPr>
|
|
278
|
-
<w:tcBorders>
|
|
279
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
280
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
281
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
282
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
283
|
-
</w:tcBorders>
|
|
284
|
-
<w:vMerge w:val="continue" />
|
|
285
|
-
<w:gridSpan w:val="1" />
|
|
286
|
-
</w:tcPr>
|
|
287
|
-
<w:p />
|
|
288
|
-
</w:tc>
|
|
289
|
-
<w:tc>
|
|
290
|
-
<w:tcPr>
|
|
291
|
-
<w:tcBorders>
|
|
292
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
293
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
294
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
295
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
296
|
-
</w:tcBorders>
|
|
297
|
-
<w:vAlign w:val="center" />
|
|
298
|
-
<w:tcMar>
|
|
299
|
-
<w:top w:w="0" w:type="dxa" />
|
|
300
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
301
|
-
<w:end w:w="0" w:type="dxa" />
|
|
302
|
-
<w:start w:w="0" w:type="dxa" />
|
|
303
|
-
</w:tcMar>
|
|
304
|
-
<w:shd />
|
|
305
|
-
<w:gridSpan w:val="1" />
|
|
306
|
-
<w:tcW w:w="1000" w:type="dxa" />
|
|
307
|
-
</w:tcPr>
|
|
308
|
-
<w:p>
|
|
309
|
-
<w:pPr>
|
|
310
|
-
<w:spacing w:before="0" w:after="0" />
|
|
311
|
-
<w:jc w:val="start" />
|
|
312
|
-
<w:ind w:left="0" w:end="0" />
|
|
313
|
-
</w:pPr>
|
|
314
|
-
<w:r>
|
|
315
|
-
<w:rPr>
|
|
316
|
-
<w:color w:val="black" />
|
|
317
|
-
<w:sz w:val="20" />
|
|
318
|
-
<w:szCs w:val="20" />
|
|
319
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
320
|
-
</w:rPr>
|
|
321
|
-
<w:t xml:space="preserve">Hello 6</w:t>
|
|
322
|
-
</w:r>
|
|
323
|
-
</w:p>
|
|
324
|
-
</w:tc>
|
|
325
|
-
</w:tr>
|
|
326
|
-
<w:tr>
|
|
327
|
-
<w:trPr>
|
|
328
|
-
<w:cantSplit w:val="true" />
|
|
329
|
-
</w:trPr>
|
|
330
|
-
<w:tc>
|
|
331
|
-
<w:tcPr>
|
|
332
|
-
<w:tcBorders>
|
|
333
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
334
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
335
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
336
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
337
|
-
</w:tcBorders>
|
|
338
|
-
<w:vAlign w:val="center" />
|
|
339
|
-
<w:vMerge w:val="restart" />
|
|
340
|
-
<w:tcMar>
|
|
341
|
-
<w:top w:w="0" w:type="dxa" />
|
|
342
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
343
|
-
<w:end w:w="0" w:type="dxa" />
|
|
344
|
-
<w:start w:w="0" w:type="dxa" />
|
|
345
|
-
</w:tcMar>
|
|
346
|
-
<w:shd />
|
|
347
|
-
<w:gridSpan w:val="2" />
|
|
348
|
-
<w:tcW w:w="3000" w:type="dxa" />
|
|
349
|
-
</w:tcPr>
|
|
350
|
-
<w:p>
|
|
351
|
-
<w:pPr>
|
|
352
|
-
<w:spacing w:before="0" w:after="0" />
|
|
353
|
-
<w:jc w:val="start" />
|
|
354
|
-
<w:ind w:left="0" w:end="0" />
|
|
355
|
-
</w:pPr>
|
|
356
|
-
<w:r>
|
|
357
|
-
<w:rPr>
|
|
358
|
-
<w:color w:val="black" />
|
|
359
|
-
<w:sz w:val="20" />
|
|
360
|
-
<w:szCs w:val="20" />
|
|
361
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
362
|
-
</w:rPr>
|
|
363
|
-
<w:t xml:space="preserve">Hello 7</w:t>
|
|
364
|
-
</w:r>
|
|
365
|
-
</w:p>
|
|
366
|
-
</w:tc>
|
|
367
|
-
<w:tc>
|
|
368
|
-
<w:tcPr>
|
|
369
|
-
<w:tcBorders>
|
|
370
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
371
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
372
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
373
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
374
|
-
</w:tcBorders>
|
|
375
|
-
<w:vAlign w:val="center" />
|
|
376
|
-
<w:tcMar>
|
|
377
|
-
<w:top w:w="0" w:type="dxa" />
|
|
378
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
379
|
-
<w:end w:w="0" w:type="dxa" />
|
|
380
|
-
<w:start w:w="0" w:type="dxa" />
|
|
381
|
-
</w:tcMar>
|
|
382
|
-
<w:shd />
|
|
383
|
-
<w:gridSpan w:val="1" />
|
|
384
|
-
<w:tcW w:w="2000" w:type="dxa" />
|
|
385
|
-
</w:tcPr>
|
|
386
|
-
<w:p>
|
|
387
|
-
<w:pPr>
|
|
388
|
-
<w:spacing w:before="0" w:after="0" />
|
|
389
|
-
<w:jc w:val="start" />
|
|
390
|
-
<w:ind w:left="0" w:end="0" />
|
|
391
|
-
</w:pPr>
|
|
392
|
-
<w:r>
|
|
393
|
-
<w:rPr>
|
|
394
|
-
<w:color w:val="black" />
|
|
395
|
-
<w:sz w:val="20" />
|
|
396
|
-
<w:szCs w:val="20" />
|
|
397
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
398
|
-
</w:rPr>
|
|
399
|
-
<w:t xml:space="preserve">Hello 8</w:t>
|
|
400
|
-
</w:r>
|
|
401
|
-
</w:p>
|
|
402
|
-
</w:tc>
|
|
403
|
-
<w:tc>
|
|
404
|
-
<w:tcPr>
|
|
405
|
-
<w:tcBorders>
|
|
406
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
407
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
408
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
409
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
410
|
-
</w:tcBorders>
|
|
411
|
-
<w:vAlign w:val="center" />
|
|
412
|
-
<w:tcMar>
|
|
413
|
-
<w:top w:w="0" w:type="dxa" />
|
|
414
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
415
|
-
<w:end w:w="0" w:type="dxa" />
|
|
416
|
-
<w:start w:w="0" w:type="dxa" />
|
|
417
|
-
</w:tcMar>
|
|
418
|
-
<w:shd />
|
|
419
|
-
<w:gridSpan w:val="1" />
|
|
420
|
-
<w:tcW w:w="1000" w:type="dxa" />
|
|
421
|
-
</w:tcPr>
|
|
422
|
-
<w:p>
|
|
423
|
-
<w:pPr>
|
|
424
|
-
<w:spacing w:before="0" w:after="0" />
|
|
425
|
-
<w:jc w:val="start" />
|
|
426
|
-
<w:ind w:left="0" w:end="0" />
|
|
427
|
-
</w:pPr>
|
|
428
|
-
<w:r>
|
|
429
|
-
<w:rPr>
|
|
430
|
-
<w:color w:val="black" />
|
|
431
|
-
<w:sz w:val="20" />
|
|
432
|
-
<w:szCs w:val="20" />
|
|
433
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
434
|
-
</w:rPr>
|
|
435
|
-
<w:t xml:space="preserve">Hello 9</w:t>
|
|
436
|
-
</w:r>
|
|
437
|
-
</w:p>
|
|
438
|
-
</w:tc>
|
|
439
|
-
</w:tr>
|
|
440
|
-
<w:tr>
|
|
441
|
-
<w:trPr>
|
|
442
|
-
<w:cantSplit w:val="true" />
|
|
443
|
-
</w:trPr>
|
|
444
|
-
<w:tc>
|
|
445
|
-
<w:tcPr>
|
|
446
|
-
<w:tcBorders>
|
|
447
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
448
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
449
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
450
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
451
|
-
</w:tcBorders>
|
|
452
|
-
<w:vMerge w:val="continue" />
|
|
453
|
-
<w:gridSpan w:val="2" />
|
|
454
|
-
</w:tcPr>
|
|
455
|
-
<w:p />
|
|
456
|
-
</w:tc>
|
|
457
|
-
<w:tc>
|
|
458
|
-
<w:tcPr>
|
|
459
|
-
<w:tcBorders>
|
|
460
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
461
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
462
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
463
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
464
|
-
</w:tcBorders>
|
|
465
|
-
<w:vAlign w:val="center" />
|
|
466
|
-
<w:tcMar>
|
|
467
|
-
<w:top w:w="0" w:type="dxa" />
|
|
468
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
469
|
-
<w:end w:w="0" w:type="dxa" />
|
|
470
|
-
<w:start w:w="0" w:type="dxa" />
|
|
471
|
-
</w:tcMar>
|
|
472
|
-
<w:shd />
|
|
473
|
-
<w:gridSpan w:val="1" />
|
|
474
|
-
<w:tcW w:w="3000" w:type="dxa" />
|
|
475
|
-
</w:tcPr>
|
|
476
|
-
<w:p>
|
|
477
|
-
<w:pPr>
|
|
478
|
-
<w:spacing w:before="0" w:after="0" />
|
|
479
|
-
<w:jc w:val="start" />
|
|
480
|
-
<w:ind w:left="0" w:end="0" />
|
|
481
|
-
</w:pPr>
|
|
482
|
-
<w:r>
|
|
483
|
-
<w:rPr>
|
|
484
|
-
<w:color w:val="black" />
|
|
485
|
-
<w:sz w:val="20" />
|
|
486
|
-
<w:szCs w:val="20" />
|
|
487
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
488
|
-
</w:rPr>
|
|
489
|
-
<w:t xml:space="preserve">Hello 10</w:t>
|
|
490
|
-
</w:r>
|
|
491
|
-
</w:p>
|
|
492
|
-
</w:tc>
|
|
493
|
-
<w:tc>
|
|
494
|
-
<w:tcPr>
|
|
495
|
-
<w:tcBorders>
|
|
496
|
-
<w:top w:val="none" w:sz="0" w:color="" />
|
|
497
|
-
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
498
|
-
<w:left w:val="none" w:sz="0" w:color="" />
|
|
499
|
-
<w:right w:val="none" w:sz="0" w:color="" />
|
|
500
|
-
</w:tcBorders>
|
|
501
|
-
<w:vAlign w:val="center" />
|
|
502
|
-
<w:tcMar>
|
|
503
|
-
<w:top w:w="0" w:type="dxa" />
|
|
504
|
-
<w:bottom w:w="0" w:type="dxa" />
|
|
505
|
-
<w:end w:w="0" w:type="dxa" />
|
|
506
|
-
<w:start w:w="0" w:type="dxa" />
|
|
507
|
-
</w:tcMar>
|
|
508
|
-
<w:shd />
|
|
509
|
-
<w:gridSpan w:val="1" />
|
|
510
|
-
<w:tcW w:w="2000" w:type="dxa" />
|
|
511
|
-
</w:tcPr>
|
|
512
|
-
<w:p>
|
|
513
|
-
<w:pPr>
|
|
514
|
-
<w:spacing w:before="0" w:after="0" />
|
|
515
|
-
<w:jc w:val="start" />
|
|
516
|
-
<w:ind w:left="0" w:end="0" />
|
|
517
|
-
</w:pPr>
|
|
518
|
-
<w:r>
|
|
519
|
-
<w:rPr>
|
|
520
|
-
<w:color w:val="black" />
|
|
521
|
-
<w:sz w:val="20" />
|
|
522
|
-
<w:szCs w:val="20" />
|
|
523
|
-
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
524
|
-
</w:rPr>
|
|
525
|
-
<w:t xml:space="preserve">Hello 11</w:t>
|
|
526
|
-
</w:r>
|
|
527
|
-
</w:p>
|
|
528
|
-
</w:tc>
|
|
529
|
-
</w:tr>
|
|
530
|
-
</w:tbl>
|
|
531
|
-
<w:p>
|
|
532
|
-
<w:r>
|
|
533
|
-
<w:rPr>
|
|
534
|
-
<w:sz w:val="0.000001" />
|
|
535
|
-
<w:szCs w:val="0.000001" />
|
|
536
|
-
</w:rPr>
|
|
537
|
-
<w:t xml:space="preserve">.</w:t>
|
|
538
|
-
</w:r>
|
|
539
|
-
</w:p>
|
|
540
|
-
<w:sectPr>
|
|
541
|
-
<w:pgSz w:w="11900" w:h="16840" w:orient="portrait" />
|
|
542
|
-
<w:pgMar w:top="0" w:right="0" w:bottom="0" w:left="0" w:header="0" w:footer="0" w:gutter="0" w:mirrorMargins="false" />
|
|
543
|
-
<w:cols w:space="708" w:num="1" w:sep="false" />
|
|
544
|
-
<w:docGrid w:linePitch="360" />
|
|
545
|
-
<w:headerReference w:type="default" r:id="rId5" />
|
|
546
|
-
<w:footerReference w:type="default" r:id="rId6" />
|
|
547
|
-
<w:pgNumType />
|
|
548
|
-
</w:sectPr>
|
|
549
|
-
</w:body>
|
|
52
|
+
"word/document.xml": `<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14">
|
|
53
|
+
<w:background w:color="FFFFFF" />
|
|
54
|
+
<w:body>
|
|
55
|
+
<w:p>
|
|
56
|
+
<w:pPr>
|
|
57
|
+
<w:spacing w:before="0" w:after="0" w:line="1" />
|
|
58
|
+
</w:pPr>
|
|
59
|
+
<w:bookmarkStart w:name="" w:id="*" />
|
|
60
|
+
<w:bookmarkEnd w:id="*" />
|
|
61
|
+
</w:p>
|
|
62
|
+
<w:tbl>
|
|
63
|
+
<w:tblPr>
|
|
64
|
+
<w:tblCellMar>
|
|
65
|
+
<w:bottom w:type="dxa" w:w="0" />
|
|
66
|
+
<w:top w:type="dxa" w:w="0" />
|
|
67
|
+
<w:left w:type="dxa" w:w="0" />
|
|
68
|
+
<w:right w:type="dxa" w:w="0" />
|
|
69
|
+
</w:tblCellMar>
|
|
70
|
+
<w:tblBorders>
|
|
71
|
+
<w:top w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
72
|
+
<w:left w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
73
|
+
<w:bottom w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
74
|
+
<w:right w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
75
|
+
<w:insideH w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
76
|
+
<w:insideV w:val="none" w:sz="0" w:space="0" w:color="" />
|
|
77
|
+
</w:tblBorders>
|
|
78
|
+
<w:tblW w:type="dxa" w:w="7000" />
|
|
79
|
+
<w:jc w:val="left" />
|
|
80
|
+
</w:tblPr>
|
|
81
|
+
<w:tblGrid>
|
|
82
|
+
<w:gridCol w:w="100" />
|
|
83
|
+
<w:gridCol w:w="100" />
|
|
84
|
+
<w:gridCol w:w="100" />
|
|
85
|
+
</w:tblGrid>
|
|
86
|
+
<w:tr>
|
|
87
|
+
<w:trPr>
|
|
88
|
+
<w:cantSplit w:val="true" />
|
|
89
|
+
</w:trPr>
|
|
90
|
+
<w:tc>
|
|
91
|
+
<w:tcPr>
|
|
92
|
+
<w:tcBorders>
|
|
93
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
94
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
95
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
96
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
97
|
+
</w:tcBorders>
|
|
98
|
+
<w:vAlign w:val="center" />
|
|
99
|
+
<w:tcMar>
|
|
100
|
+
<w:top w:w="0" w:type="dxa" />
|
|
101
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
102
|
+
<w:end w:w="0" w:type="dxa" />
|
|
103
|
+
<w:start w:w="0" w:type="dxa" />
|
|
104
|
+
</w:tcMar>
|
|
105
|
+
<w:shd />
|
|
106
|
+
<w:gridSpan w:val="2" />
|
|
107
|
+
<w:tcW w:w="3000" w:type="dxa" />
|
|
108
|
+
</w:tcPr>
|
|
109
|
+
<w:p>
|
|
110
|
+
<w:pPr>
|
|
111
|
+
<w:spacing w:before="0" w:after="0" />
|
|
112
|
+
<w:jc w:val="start" />
|
|
113
|
+
<w:ind w:left="0" w:end="0" />
|
|
114
|
+
</w:pPr>
|
|
115
|
+
<w:r>
|
|
116
|
+
<w:rPr>
|
|
117
|
+
<w:color w:val="black" />
|
|
118
|
+
<w:sz w:val="20" />
|
|
119
|
+
<w:szCs w:val="20" />
|
|
120
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
121
|
+
</w:rPr>
|
|
122
|
+
<w:t xml:space="preserve">Hello 1</w:t>
|
|
123
|
+
</w:r>
|
|
124
|
+
</w:p>
|
|
125
|
+
</w:tc>
|
|
126
|
+
<w:tc>
|
|
127
|
+
<w:tcPr>
|
|
128
|
+
<w:tcBorders>
|
|
129
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
130
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
131
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
132
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
133
|
+
</w:tcBorders>
|
|
134
|
+
<w:vAlign w:val="center" />
|
|
135
|
+
<w:vMerge w:val="restart" />
|
|
136
|
+
<w:tcMar>
|
|
137
|
+
<w:top w:w="0" w:type="dxa" />
|
|
138
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
139
|
+
<w:end w:w="0" w:type="dxa" />
|
|
140
|
+
<w:start w:w="0" w:type="dxa" />
|
|
141
|
+
</w:tcMar>
|
|
142
|
+
<w:shd />
|
|
143
|
+
<w:gridSpan w:val="1" />
|
|
144
|
+
<w:tcW w:w="2000" w:type="dxa" />
|
|
145
|
+
</w:tcPr>
|
|
146
|
+
<w:p>
|
|
147
|
+
<w:pPr>
|
|
148
|
+
<w:spacing w:before="0" w:after="0" />
|
|
149
|
+
<w:jc w:val="start" />
|
|
150
|
+
<w:ind w:left="0" w:end="0" />
|
|
151
|
+
</w:pPr>
|
|
152
|
+
<w:r>
|
|
153
|
+
<w:rPr>
|
|
154
|
+
<w:color w:val="black" />
|
|
155
|
+
<w:sz w:val="20" />
|
|
156
|
+
<w:szCs w:val="20" />
|
|
157
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
158
|
+
</w:rPr>
|
|
159
|
+
<w:t xml:space="preserve">Hello 2</w:t>
|
|
160
|
+
</w:r>
|
|
161
|
+
</w:p>
|
|
162
|
+
</w:tc>
|
|
163
|
+
<w:tc>
|
|
164
|
+
<w:tcPr>
|
|
165
|
+
<w:tcBorders>
|
|
166
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
167
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
168
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
169
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
170
|
+
</w:tcBorders>
|
|
171
|
+
<w:vAlign w:val="center" />
|
|
172
|
+
<w:tcMar>
|
|
173
|
+
<w:top w:w="0" w:type="dxa" />
|
|
174
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
175
|
+
<w:end w:w="0" w:type="dxa" />
|
|
176
|
+
<w:start w:w="0" w:type="dxa" />
|
|
177
|
+
</w:tcMar>
|
|
178
|
+
<w:shd />
|
|
179
|
+
<w:gridSpan w:val="1" />
|
|
180
|
+
<w:tcW w:w="1000" w:type="dxa" />
|
|
181
|
+
</w:tcPr>
|
|
182
|
+
<w:p>
|
|
183
|
+
<w:pPr>
|
|
184
|
+
<w:spacing w:before="0" w:after="0" />
|
|
185
|
+
<w:jc w:val="start" />
|
|
186
|
+
<w:ind w:left="0" w:end="0" />
|
|
187
|
+
</w:pPr>
|
|
188
|
+
<w:r>
|
|
189
|
+
<w:rPr>
|
|
190
|
+
<w:color w:val="black" />
|
|
191
|
+
<w:sz w:val="20" />
|
|
192
|
+
<w:szCs w:val="20" />
|
|
193
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
194
|
+
</w:rPr>
|
|
195
|
+
<w:t xml:space="preserve">Hello 3</w:t>
|
|
196
|
+
</w:r>
|
|
197
|
+
</w:p>
|
|
198
|
+
</w:tc>
|
|
199
|
+
</w:tr>
|
|
200
|
+
<w:tr>
|
|
201
|
+
<w:trPr>
|
|
202
|
+
<w:cantSplit w:val="true" />
|
|
203
|
+
</w:trPr>
|
|
204
|
+
<w:tc>
|
|
205
|
+
<w:tcPr>
|
|
206
|
+
<w:tcBorders>
|
|
207
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
208
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
209
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
210
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
211
|
+
</w:tcBorders>
|
|
212
|
+
<w:vAlign w:val="center" />
|
|
213
|
+
<w:tcMar>
|
|
214
|
+
<w:top w:w="0" w:type="dxa" />
|
|
215
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
216
|
+
<w:end w:w="0" w:type="dxa" />
|
|
217
|
+
<w:start w:w="0" w:type="dxa" />
|
|
218
|
+
</w:tcMar>
|
|
219
|
+
<w:shd />
|
|
220
|
+
<w:gridSpan w:val="1" />
|
|
221
|
+
<w:tcW w:w="3000" w:type="dxa" />
|
|
222
|
+
</w:tcPr>
|
|
223
|
+
<w:p>
|
|
224
|
+
<w:pPr>
|
|
225
|
+
<w:spacing w:before="0" w:after="0" />
|
|
226
|
+
<w:jc w:val="start" />
|
|
227
|
+
<w:ind w:left="0" w:end="0" />
|
|
228
|
+
</w:pPr>
|
|
229
|
+
<w:r>
|
|
230
|
+
<w:rPr>
|
|
231
|
+
<w:color w:val="black" />
|
|
232
|
+
<w:sz w:val="20" />
|
|
233
|
+
<w:szCs w:val="20" />
|
|
234
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
235
|
+
</w:rPr>
|
|
236
|
+
<w:t xml:space="preserve">Hello 4</w:t>
|
|
237
|
+
</w:r>
|
|
238
|
+
</w:p>
|
|
239
|
+
</w:tc>
|
|
240
|
+
<w:tc>
|
|
241
|
+
<w:tcPr>
|
|
242
|
+
<w:tcBorders>
|
|
243
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
244
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
245
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
246
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
247
|
+
</w:tcBorders>
|
|
248
|
+
<w:vAlign w:val="center" />
|
|
249
|
+
<w:tcMar>
|
|
250
|
+
<w:top w:w="0" w:type="dxa" />
|
|
251
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
252
|
+
<w:end w:w="0" w:type="dxa" />
|
|
253
|
+
<w:start w:w="0" w:type="dxa" />
|
|
254
|
+
</w:tcMar>
|
|
255
|
+
<w:shd />
|
|
256
|
+
<w:gridSpan w:val="1" />
|
|
257
|
+
<w:tcW w:w="2000" w:type="dxa" />
|
|
258
|
+
</w:tcPr>
|
|
259
|
+
<w:p>
|
|
260
|
+
<w:pPr>
|
|
261
|
+
<w:spacing w:before="0" w:after="0" />
|
|
262
|
+
<w:jc w:val="start" />
|
|
263
|
+
<w:ind w:left="0" w:end="0" />
|
|
264
|
+
</w:pPr>
|
|
265
|
+
<w:r>
|
|
266
|
+
<w:rPr>
|
|
267
|
+
<w:color w:val="black" />
|
|
268
|
+
<w:sz w:val="20" />
|
|
269
|
+
<w:szCs w:val="20" />
|
|
270
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
271
|
+
</w:rPr>
|
|
272
|
+
<w:t xml:space="preserve">Hello 5</w:t>
|
|
273
|
+
</w:r>
|
|
274
|
+
</w:p>
|
|
275
|
+
</w:tc>
|
|
276
|
+
<w:tc>
|
|
277
|
+
<w:tcPr>
|
|
278
|
+
<w:tcBorders>
|
|
279
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
280
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
281
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
282
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
283
|
+
</w:tcBorders>
|
|
284
|
+
<w:vMerge w:val="continue" />
|
|
285
|
+
<w:gridSpan w:val="1" />
|
|
286
|
+
</w:tcPr>
|
|
287
|
+
<w:p />
|
|
288
|
+
</w:tc>
|
|
289
|
+
<w:tc>
|
|
290
|
+
<w:tcPr>
|
|
291
|
+
<w:tcBorders>
|
|
292
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
293
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
294
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
295
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
296
|
+
</w:tcBorders>
|
|
297
|
+
<w:vAlign w:val="center" />
|
|
298
|
+
<w:tcMar>
|
|
299
|
+
<w:top w:w="0" w:type="dxa" />
|
|
300
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
301
|
+
<w:end w:w="0" w:type="dxa" />
|
|
302
|
+
<w:start w:w="0" w:type="dxa" />
|
|
303
|
+
</w:tcMar>
|
|
304
|
+
<w:shd />
|
|
305
|
+
<w:gridSpan w:val="1" />
|
|
306
|
+
<w:tcW w:w="1000" w:type="dxa" />
|
|
307
|
+
</w:tcPr>
|
|
308
|
+
<w:p>
|
|
309
|
+
<w:pPr>
|
|
310
|
+
<w:spacing w:before="0" w:after="0" />
|
|
311
|
+
<w:jc w:val="start" />
|
|
312
|
+
<w:ind w:left="0" w:end="0" />
|
|
313
|
+
</w:pPr>
|
|
314
|
+
<w:r>
|
|
315
|
+
<w:rPr>
|
|
316
|
+
<w:color w:val="black" />
|
|
317
|
+
<w:sz w:val="20" />
|
|
318
|
+
<w:szCs w:val="20" />
|
|
319
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
320
|
+
</w:rPr>
|
|
321
|
+
<w:t xml:space="preserve">Hello 6</w:t>
|
|
322
|
+
</w:r>
|
|
323
|
+
</w:p>
|
|
324
|
+
</w:tc>
|
|
325
|
+
</w:tr>
|
|
326
|
+
<w:tr>
|
|
327
|
+
<w:trPr>
|
|
328
|
+
<w:cantSplit w:val="true" />
|
|
329
|
+
</w:trPr>
|
|
330
|
+
<w:tc>
|
|
331
|
+
<w:tcPr>
|
|
332
|
+
<w:tcBorders>
|
|
333
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
334
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
335
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
336
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
337
|
+
</w:tcBorders>
|
|
338
|
+
<w:vAlign w:val="center" />
|
|
339
|
+
<w:vMerge w:val="restart" />
|
|
340
|
+
<w:tcMar>
|
|
341
|
+
<w:top w:w="0" w:type="dxa" />
|
|
342
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
343
|
+
<w:end w:w="0" w:type="dxa" />
|
|
344
|
+
<w:start w:w="0" w:type="dxa" />
|
|
345
|
+
</w:tcMar>
|
|
346
|
+
<w:shd />
|
|
347
|
+
<w:gridSpan w:val="2" />
|
|
348
|
+
<w:tcW w:w="3000" w:type="dxa" />
|
|
349
|
+
</w:tcPr>
|
|
350
|
+
<w:p>
|
|
351
|
+
<w:pPr>
|
|
352
|
+
<w:spacing w:before="0" w:after="0" />
|
|
353
|
+
<w:jc w:val="start" />
|
|
354
|
+
<w:ind w:left="0" w:end="0" />
|
|
355
|
+
</w:pPr>
|
|
356
|
+
<w:r>
|
|
357
|
+
<w:rPr>
|
|
358
|
+
<w:color w:val="black" />
|
|
359
|
+
<w:sz w:val="20" />
|
|
360
|
+
<w:szCs w:val="20" />
|
|
361
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
362
|
+
</w:rPr>
|
|
363
|
+
<w:t xml:space="preserve">Hello 7</w:t>
|
|
364
|
+
</w:r>
|
|
365
|
+
</w:p>
|
|
366
|
+
</w:tc>
|
|
367
|
+
<w:tc>
|
|
368
|
+
<w:tcPr>
|
|
369
|
+
<w:tcBorders>
|
|
370
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
371
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
372
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
373
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
374
|
+
</w:tcBorders>
|
|
375
|
+
<w:vAlign w:val="center" />
|
|
376
|
+
<w:tcMar>
|
|
377
|
+
<w:top w:w="0" w:type="dxa" />
|
|
378
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
379
|
+
<w:end w:w="0" w:type="dxa" />
|
|
380
|
+
<w:start w:w="0" w:type="dxa" />
|
|
381
|
+
</w:tcMar>
|
|
382
|
+
<w:shd />
|
|
383
|
+
<w:gridSpan w:val="1" />
|
|
384
|
+
<w:tcW w:w="2000" w:type="dxa" />
|
|
385
|
+
</w:tcPr>
|
|
386
|
+
<w:p>
|
|
387
|
+
<w:pPr>
|
|
388
|
+
<w:spacing w:before="0" w:after="0" />
|
|
389
|
+
<w:jc w:val="start" />
|
|
390
|
+
<w:ind w:left="0" w:end="0" />
|
|
391
|
+
</w:pPr>
|
|
392
|
+
<w:r>
|
|
393
|
+
<w:rPr>
|
|
394
|
+
<w:color w:val="black" />
|
|
395
|
+
<w:sz w:val="20" />
|
|
396
|
+
<w:szCs w:val="20" />
|
|
397
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
398
|
+
</w:rPr>
|
|
399
|
+
<w:t xml:space="preserve">Hello 8</w:t>
|
|
400
|
+
</w:r>
|
|
401
|
+
</w:p>
|
|
402
|
+
</w:tc>
|
|
403
|
+
<w:tc>
|
|
404
|
+
<w:tcPr>
|
|
405
|
+
<w:tcBorders>
|
|
406
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
407
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
408
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
409
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
410
|
+
</w:tcBorders>
|
|
411
|
+
<w:vAlign w:val="center" />
|
|
412
|
+
<w:tcMar>
|
|
413
|
+
<w:top w:w="0" w:type="dxa" />
|
|
414
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
415
|
+
<w:end w:w="0" w:type="dxa" />
|
|
416
|
+
<w:start w:w="0" w:type="dxa" />
|
|
417
|
+
</w:tcMar>
|
|
418
|
+
<w:shd />
|
|
419
|
+
<w:gridSpan w:val="1" />
|
|
420
|
+
<w:tcW w:w="1000" w:type="dxa" />
|
|
421
|
+
</w:tcPr>
|
|
422
|
+
<w:p>
|
|
423
|
+
<w:pPr>
|
|
424
|
+
<w:spacing w:before="0" w:after="0" />
|
|
425
|
+
<w:jc w:val="start" />
|
|
426
|
+
<w:ind w:left="0" w:end="0" />
|
|
427
|
+
</w:pPr>
|
|
428
|
+
<w:r>
|
|
429
|
+
<w:rPr>
|
|
430
|
+
<w:color w:val="black" />
|
|
431
|
+
<w:sz w:val="20" />
|
|
432
|
+
<w:szCs w:val="20" />
|
|
433
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
434
|
+
</w:rPr>
|
|
435
|
+
<w:t xml:space="preserve">Hello 9</w:t>
|
|
436
|
+
</w:r>
|
|
437
|
+
</w:p>
|
|
438
|
+
</w:tc>
|
|
439
|
+
</w:tr>
|
|
440
|
+
<w:tr>
|
|
441
|
+
<w:trPr>
|
|
442
|
+
<w:cantSplit w:val="true" />
|
|
443
|
+
</w:trPr>
|
|
444
|
+
<w:tc>
|
|
445
|
+
<w:tcPr>
|
|
446
|
+
<w:tcBorders>
|
|
447
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
448
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
449
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
450
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
451
|
+
</w:tcBorders>
|
|
452
|
+
<w:vMerge w:val="continue" />
|
|
453
|
+
<w:gridSpan w:val="2" />
|
|
454
|
+
</w:tcPr>
|
|
455
|
+
<w:p />
|
|
456
|
+
</w:tc>
|
|
457
|
+
<w:tc>
|
|
458
|
+
<w:tcPr>
|
|
459
|
+
<w:tcBorders>
|
|
460
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
461
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
462
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
463
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
464
|
+
</w:tcBorders>
|
|
465
|
+
<w:vAlign w:val="center" />
|
|
466
|
+
<w:tcMar>
|
|
467
|
+
<w:top w:w="0" w:type="dxa" />
|
|
468
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
469
|
+
<w:end w:w="0" w:type="dxa" />
|
|
470
|
+
<w:start w:w="0" w:type="dxa" />
|
|
471
|
+
</w:tcMar>
|
|
472
|
+
<w:shd />
|
|
473
|
+
<w:gridSpan w:val="1" />
|
|
474
|
+
<w:tcW w:w="3000" w:type="dxa" />
|
|
475
|
+
</w:tcPr>
|
|
476
|
+
<w:p>
|
|
477
|
+
<w:pPr>
|
|
478
|
+
<w:spacing w:before="0" w:after="0" />
|
|
479
|
+
<w:jc w:val="start" />
|
|
480
|
+
<w:ind w:left="0" w:end="0" />
|
|
481
|
+
</w:pPr>
|
|
482
|
+
<w:r>
|
|
483
|
+
<w:rPr>
|
|
484
|
+
<w:color w:val="black" />
|
|
485
|
+
<w:sz w:val="20" />
|
|
486
|
+
<w:szCs w:val="20" />
|
|
487
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
488
|
+
</w:rPr>
|
|
489
|
+
<w:t xml:space="preserve">Hello 10</w:t>
|
|
490
|
+
</w:r>
|
|
491
|
+
</w:p>
|
|
492
|
+
</w:tc>
|
|
493
|
+
<w:tc>
|
|
494
|
+
<w:tcPr>
|
|
495
|
+
<w:tcBorders>
|
|
496
|
+
<w:top w:val="none" w:sz="0" w:color="" />
|
|
497
|
+
<w:bottom w:val="none" w:sz="0" w:color="" />
|
|
498
|
+
<w:left w:val="none" w:sz="0" w:color="" />
|
|
499
|
+
<w:right w:val="none" w:sz="0" w:color="" />
|
|
500
|
+
</w:tcBorders>
|
|
501
|
+
<w:vAlign w:val="center" />
|
|
502
|
+
<w:tcMar>
|
|
503
|
+
<w:top w:w="0" w:type="dxa" />
|
|
504
|
+
<w:bottom w:w="0" w:type="dxa" />
|
|
505
|
+
<w:end w:w="0" w:type="dxa" />
|
|
506
|
+
<w:start w:w="0" w:type="dxa" />
|
|
507
|
+
</w:tcMar>
|
|
508
|
+
<w:shd />
|
|
509
|
+
<w:gridSpan w:val="1" />
|
|
510
|
+
<w:tcW w:w="2000" w:type="dxa" />
|
|
511
|
+
</w:tcPr>
|
|
512
|
+
<w:p>
|
|
513
|
+
<w:pPr>
|
|
514
|
+
<w:spacing w:before="0" w:after="0" />
|
|
515
|
+
<w:jc w:val="start" />
|
|
516
|
+
<w:ind w:left="0" w:end="0" />
|
|
517
|
+
</w:pPr>
|
|
518
|
+
<w:r>
|
|
519
|
+
<w:rPr>
|
|
520
|
+
<w:color w:val="black" />
|
|
521
|
+
<w:sz w:val="20" />
|
|
522
|
+
<w:szCs w:val="20" />
|
|
523
|
+
<w:rFonts w:ascii="Arial" w:cs="Arial" w:eastAsia="Arial" w:hAnsi="Arial" />
|
|
524
|
+
</w:rPr>
|
|
525
|
+
<w:t xml:space="preserve">Hello 11</w:t>
|
|
526
|
+
</w:r>
|
|
527
|
+
</w:p>
|
|
528
|
+
</w:tc>
|
|
529
|
+
</w:tr>
|
|
530
|
+
</w:tbl>
|
|
531
|
+
<w:p>
|
|
532
|
+
<w:r>
|
|
533
|
+
<w:rPr>
|
|
534
|
+
<w:sz w:val="0.000001" />
|
|
535
|
+
<w:szCs w:val="0.000001" />
|
|
536
|
+
</w:rPr>
|
|
537
|
+
<w:t xml:space="preserve">.</w:t>
|
|
538
|
+
</w:r>
|
|
539
|
+
</w:p>
|
|
540
|
+
<w:sectPr>
|
|
541
|
+
<w:pgSz w:w="11900" w:h="16840" w:orient="portrait" />
|
|
542
|
+
<w:pgMar w:top="0" w:right="0" w:bottom="0" w:left="0" w:header="0" w:footer="0" w:gutter="0" w:mirrorMargins="false" />
|
|
543
|
+
<w:cols w:space="708" w:num="1" w:sep="false" />
|
|
544
|
+
<w:docGrid w:linePitch="360" />
|
|
545
|
+
<w:headerReference w:type="default" r:id="rId5" />
|
|
546
|
+
<w:footerReference w:type="default" r:id="rId6" />
|
|
547
|
+
<w:pgNumType />
|
|
548
|
+
</w:sectPr>
|
|
549
|
+
</w:body>
|
|
550
550
|
</w:document>`,
|
|
551
551
|
},
|
|
552
552
|
};
|