thinreports 0.8.2 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CONTRIBUTING.md +2 -0
- data/.travis.yml +3 -3
- data/CHANGELOG.md +98 -1
- data/README.md +0 -9
- data/Rakefile +1 -2
- data/examples/character_spacing/character_spacing.tlf +293 -1
- data/examples/dynamic_image/dynamic_image.tlf +661 -1
- data/examples/dynamic_style/dynamic_style.rb +4 -4
- data/examples/dynamic_style/dynamic_style.tlf +1835 -1
- data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
- data/examples/eudc/eudc.tlf +180 -1
- data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
- data/examples/list_events/list_events.rb +1 -28
- data/examples/list_events/list_events.tlf +361 -0
- data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
- data/examples/list_page_number/list_page_number.tlf +254 -1
- data/examples/page_number/page_number.tlf +215 -1
- data/examples/palleted_png/palleted_png.rb +2 -0
- data/examples/palleted_png/palleted_png.tlf +47 -1
- data/examples/password_setting/password_setting.tlf +45 -1
- data/examples/report_callbacks/report_callbacks.rb +1 -18
- data/examples/report_callbacks/report_callbacks.tlf +147 -1
- data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
- data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
- data/examples/tblock_styles/font_size.tlf +383 -1
- data/examples/tblock_styles/tblock_styles.tlf +889 -1
- data/examples/text_align/text_align.tlf +241 -1
- data/examples/typeB_page_size/B4_ISO.tlf +45 -1
- data/examples/typeB_page_size/B4_JIS.tlf +45 -1
- data/examples/word_wrap/word_wrap.tlf +297 -1
- data/lib/thinreports.rb +0 -1
- data/lib/thinreports/config.rb +3 -0
- data/lib/thinreports/core/errors.rb +0 -3
- data/lib/thinreports/core/format/base.rb +4 -4
- data/lib/thinreports/core/shape.rb +1 -9
- data/lib/thinreports/core/shape/basic.rb +3 -3
- data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
- data/lib/thinreports/core/shape/basic/format.rb +2 -14
- data/lib/thinreports/core/shape/basic/internal.rb +2 -2
- data/lib/thinreports/core/shape/image_block.rb +3 -3
- data/lib/thinreports/core/shape/image_block/format.rb +0 -2
- data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
- data/lib/thinreports/core/shape/list.rb +3 -7
- data/lib/thinreports/core/shape/list/format.rb +37 -24
- data/lib/thinreports/core/shape/list/manager.rb +1 -36
- data/lib/thinreports/core/shape/list/page.rb +0 -15
- data/lib/thinreports/core/shape/list/page_state.rb +1 -1
- data/lib/thinreports/core/shape/list/section_format.rb +14 -12
- data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
- data/lib/thinreports/core/shape/manager/format.rb +0 -2
- data/lib/thinreports/core/shape/manager/internal.rb +1 -1
- data/lib/thinreports/core/shape/page_number.rb +1 -1
- data/lib/thinreports/core/shape/page_number/format.rb +9 -6
- data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
- data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
- data/lib/thinreports/core/shape/style/base.rb +11 -13
- data/lib/thinreports/core/shape/style/basic.rb +4 -4
- data/lib/thinreports/core/shape/style/graphic.rb +4 -10
- data/lib/thinreports/core/shape/style/text.rb +36 -69
- data/lib/thinreports/core/shape/text.rb +3 -3
- data/lib/thinreports/core/shape/text/format.rb +3 -13
- data/lib/thinreports/core/shape/text/internal.rb +2 -2
- data/lib/thinreports/core/shape/text_block.rb +3 -3
- data/lib/thinreports/core/shape/text_block/format.rb +9 -6
- data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
- data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
- data/lib/thinreports/generator/pdf.rb +0 -1
- data/lib/thinreports/generator/pdf/document.rb +2 -2
- data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
- data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
- data/lib/thinreports/generator/pdf/document/font.rb +3 -8
- data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
- data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
- data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
- data/lib/thinreports/generator/pdf/document/page.rb +1 -1
- data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
- data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
- data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
- data/lib/thinreports/layout.rb +3 -3
- data/lib/thinreports/layout/base.rb +0 -16
- data/lib/thinreports/layout/format.rb +38 -57
- data/lib/thinreports/layout/legacy_schema.rb +354 -0
- data/lib/thinreports/layout/version.rb +1 -1
- data/lib/thinreports/report.rb +0 -1
- data/lib/thinreports/report/base.rb +3 -17
- data/lib/thinreports/report/internal.rb +13 -55
- data/lib/thinreports/report/page.rb +1 -1
- data/lib/thinreports/version.rb +1 -1
- data/test/data/legacy_layout/all-items.tlf +1 -0
- data/test/schema_helper.rb +121 -0
- data/test/test_helper.rb +13 -50
- data/test/unit/core/format/test_base.rb +35 -31
- data/test/unit/core/shape/base/test_internal.rb +1 -1
- data/test/unit/core/shape/basic/test_block_format.rb +23 -0
- data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
- data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
- data/test/unit/core/shape/basic/test_format.rb +25 -47
- data/test/unit/core/shape/basic/test_interface.rb +5 -5
- data/test/unit/core/shape/basic/test_internal.rb +6 -11
- data/test/unit/core/shape/image_block/test_interface.rb +5 -5
- data/test/unit/core/shape/image_block/test_internal.rb +2 -2
- data/test/unit/core/shape/list/test_format.rb +86 -44
- data/test/unit/core/shape/list/test_manager.rb +10 -65
- data/test/unit/core/shape/list/test_page.rb +10 -61
- data/test/unit/core/shape/list/test_page_state.rb +1 -1
- data/test/unit/core/shape/list/test_section_format.rb +19 -28
- data/test/unit/core/shape/list/test_section_interface.rb +14 -6
- data/test/unit/core/shape/list/test_section_internal.rb +17 -23
- data/test/unit/core/shape/manager/test_format.rb +1 -1
- data/test/unit/core/shape/manager/test_internal.rb +59 -98
- data/test/unit/core/shape/manager/test_target.rb +21 -30
- data/test/unit/core/shape/page_number/test_format.rb +34 -52
- data/test/unit/core/shape/page_number/test_interface.rb +1 -1
- data/test/unit/core/shape/page_number/test_internal.rb +2 -2
- data/test/unit/core/shape/styles/test_base.rb +16 -41
- data/test/unit/core/shape/styles/test_basic.rb +7 -7
- data/test/unit/core/shape/styles/test_graphic.rb +27 -32
- data/test/unit/core/shape/styles/test_text.rb +68 -311
- data/test/unit/core/shape/text/test_format.rb +30 -59
- data/test/unit/core/shape/text/test_internal.rb +5 -5
- data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
- data/test/unit/core/shape/text_block/test_format.rb +145 -146
- data/test/unit/core/shape/text_block/test_interface.rb +9 -9
- data/test/unit/core/shape/text_block/test_internal.rb +9 -9
- data/test/unit/core/test_shape.rb +19 -31
- data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
- data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
- data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
- data/test/unit/generator/pdf/document/test_font.rb +4 -10
- data/test/unit/generator/pdf/document/test_page.rb +13 -11
- data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
- data/test/unit/generator/test_base.rb +5 -5
- data/test/unit/generator/test_configuration.rb +4 -8
- data/test/unit/generator/test_pdf.rb +3 -2
- data/test/unit/layout/test_base.rb +16 -22
- data/test/unit/layout/test_format.rb +66 -86
- data/test/unit/layout/test_legacy_schema.rb +587 -0
- data/test/unit/layout/test_version.rb +20 -20
- data/test/unit/report/test_base.rb +32 -45
- data/test/unit/report/test_internal.rb +43 -99
- data/test/unit/test_config.rb +4 -2
- data/test/unit/test_layout.rb +1 -1
- metadata +20 -48
- data/examples/list_events/list_events_0_7_7.tlf +0 -1
- data/examples/list_events/list_events_0_8.tlf +0 -1
- data/lib/thinreports/core/events.rb +0 -69
- data/lib/thinreports/core/format/builder.rb +0 -62
- data/lib/thinreports/core/shape/list/configuration.rb +0 -54
- data/lib/thinreports/core/shape/list/events.rb +0 -47
- data/lib/thinreports/core/shape/list/store.rb +0 -33
- data/lib/thinreports/generator/pdf/configuration.rb +0 -33
- data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
- data/lib/thinreports/layout/configuration.rb +0 -29
- data/test/data/layout_block.tlf +0 -1
- data/test/data/layout_list.tlf +0 -1
- data/test/data/layout_list_noheader.tlf +0 -1
- data/test/data/layout_text1.tlf +0 -1
- data/test/data/layout_text2.tlf +0 -1
- data/test/unit/core/format/test_builder.rb +0 -109
- data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
- data/test/unit/core/shape/image_block/test_format.rb +0 -58
- data/test/unit/core/shape/list/test_configuration.rb +0 -69
- data/test/unit/core/shape/list/test_events.rb +0 -36
- data/test/unit/core/shape/list/test_store.rb +0 -41
- data/test/unit/core/test_events.rb +0 -93
- data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
- data/test/unit/generator/pdf/test_configuration.rb +0 -31
- data/test/unit/layout/test_configuration.rb +0 -21
- data/test/unit/report/test_events.rb +0 -22
@@ -1 +1,383 @@
|
|
1
|
-
{"version":"0.7.7.1","finger-print":850455808,"config":{"title":"FontSize","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_1856690740\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"151.8\" x-height=\"46\" x-left=\"40\" x-top=\"60.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"151.8\" height=\"46\" x=\"40\" y=\"60.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"40\" y=\"73.8\">\u30b5\u30a4\u30ba18</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_single24\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165,\"y\":60.9,\"width\":151.8,\"height\":46},\"text\":[\"\\u30b5\\u30a4\\u30ba24\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"id\":\"goog_1856690741\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165\\\" y=\\\"73.8\\\">\\u30b5\\u30a4\\u30ba24</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_single24\" id=\"goog_1856690741\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"151.8\" x-height=\"46\" x-left=\"165\" x-top=\"60.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"151.8\" height=\"46\" x=\"165\" y=\"60.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165\" y=\"73.8\">\u30b5\u30a4\u30ba24</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_single32\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":345,\"y\":60.9,\"width\":151.8,\"height\":46},\"text\":[\"\\u30b5\\u30a4\\u30ba32\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"id\":\"goog_1856690742\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"345\\\" y=\\\"73.8\\\">\\u30b5\\u30a4\\u30ba32</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_single32\" id=\"goog_1856690742\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"151.8\" x-height=\"46\" x-left=\"345\" x-top=\"60.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"151.8\" height=\"46\" x=\"345\" y=\"60.9\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"345\" y=\"73.8\">\u30b5\u30a4\u30ba32</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_1856690743\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"100\" x-left=\"35\" x-top=\"179.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"100\" x=\"35\" y=\"179.8\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"35\" y=\"192.7\">\u30b5\u30a4\u30ba18</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"35\" y=\"209.7\">\u30b5\u30a4\u30ba18</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_multiple24\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165,\"y\":179.8,\"width\":200,\"height\":100},\"text\":[\"\\u30b5\\u30a4\\u30ba24\",\"\\u30b5\\u30a4\\u30ba24\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"id\":\"goog_1856690745\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165\\\" y=\\\"192.7\\\">\\u30b5\\u30a4\\u30ba24</text><text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l1\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165\\\" y=\\\"209.7\\\">\\u30b5\\u30a4\\u30ba24</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_multiple24\" id=\"goog_1856690745\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"100\" x-left=\"165\" x-top=\"179.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"100\" x=\"165\" y=\"179.8\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165\" y=\"192.7\">\u30b5\u30a4\u30ba24</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165\" y=\"209.7\">\u30b5\u30a4\u30ba24</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_multiple32\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":345,\"y\":179.8,\"width\":200,\"height\":100},\"text\":[\"\\u30b5\\u30a4\\u30ba32\",\"\\u30b5\\u30a4\\u30ba32\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"id\":\"goog_1856690746\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"345\\\" y=\\\"192.7\\\">\\u30b5\\u30a4\\u30ba32</text><text xmlns=\\\"http://www.w3.org/2000/svg\\\" class=\\\"s-text-l1\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"345\\\" y=\\\"209.7\\\">\\u30b5\\u30a4\\u30ba32</text>\"}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_multiple32\" id=\"goog_1856690746\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"100\" x-left=\"345\" x-top=\"179.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"100\" x=\"345\" y=\"179.8\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"345\" y=\"192.7\">\u30b5\u30a4\u30ba32</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"345\" y=\"209.7\">\u30b5\u30a4\u30ba32</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_single18\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":40,\"y\":320.6,\"width\":103.4,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":40,\"y\":333.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690747\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_1856690747\" x-id=\"block_single18\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"103.4\" x-height=\"17\" x-left=\"40\" x-top=\"320.6\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"103.4\" height=\"17\" x=\"40\" y=\"320.6\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"42\" y=\"331.6\">block_single18</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_single24\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":165,\"y\":320.6,\"width\":157.2,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":165,\"y\":333.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690748\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_1856690748\" x-id=\"block_single24\" x-width=\"157.2\" x-height=\"17\" x-left=\"165\" x-top=\"320.6\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"157.2\" height=\"17\" x=\"165\" y=\"320.6\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"167\" y=\"331.6\">block_single24</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_single32\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":345,\"y\":320.6,\"width\":230.2,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":345,\"y\":333.5,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690749\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" id=\"goog_1856690749\" x-id=\"block_single32\" x-width=\"230.2\" x-height=\"17\" x-left=\"345\" x-top=\"320.6\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"230.2\" height=\"17\" x=\"345\" y=\"320.6\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"347\" y=\"331.6\">block_single32</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_multiple18\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":40,\"y\":390,\"width\":103.4,\"height\":113.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":40,\"y\":389.9,\"width\":103.4,\"height\":113.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690750\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" id=\"goog_1856690750\" x-id=\"block_multiple18\" x-width=\"103.4\" x-height=\"113.3\" x-left=\"40\" x-top=\"390\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"103.4\" height=\"113.3\" x=\"40\" y=\"390\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"42\" y=\"401\">block_multiple18</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_multiple24\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":165,\"y\":390,\"width\":157.2,\"height\":113.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":165,\"y\":389.9,\"width\":157.2,\"height\":113.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690751\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" id=\"goog_1856690751\" x-id=\"block_multiple24\" x-width=\"157.2\" x-height=\"113.3\" x-left=\"165\" x-top=\"390\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"157.2\" height=\"113.3\" x=\"165\" y=\"390\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"167\" y=\"401\">block_multiple24</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"block_multiple32\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":345,\"y\":390,\"width\":230.2,\"height\":113.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":345,\"y\":389.9,\"width\":230.2,\"height\":113.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"id\":\"goog_1856690752\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" id=\"goog_1856690752\" x-id=\"block_multiple32\" x-width=\"230.2\" x-height=\"113.3\" x-left=\"345\" x-top=\"390\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" x-word-wrap=\"none\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"230.2\" height=\"113.3\" x=\"345\" y=\"390\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"347\" y=\"401\">block_multiple32</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[{"type":"x","position":164.4},{"type":"x","position":344.1},{"type":"y","position":503.3}]}}
|
1
|
+
{
|
2
|
+
"version": "0.9.0",
|
3
|
+
"items": [
|
4
|
+
{
|
5
|
+
"id": "",
|
6
|
+
"type": "text",
|
7
|
+
"display": true,
|
8
|
+
"description": "",
|
9
|
+
"x": 40,
|
10
|
+
"y": 60,
|
11
|
+
"width": 151.8,
|
12
|
+
"height": 46,
|
13
|
+
"style": {
|
14
|
+
"font-family": [
|
15
|
+
"Helvetica"
|
16
|
+
],
|
17
|
+
"font-size": 18,
|
18
|
+
"color": "#000000",
|
19
|
+
"text-align": "left",
|
20
|
+
"vertical-align": "top",
|
21
|
+
"line-height": "",
|
22
|
+
"line-height-ratio": "",
|
23
|
+
"letter-spacing": "",
|
24
|
+
"font-style": []
|
25
|
+
},
|
26
|
+
"texts": [
|
27
|
+
"サイズ18"
|
28
|
+
]
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"id": "text_single24",
|
32
|
+
"type": "text",
|
33
|
+
"display": true,
|
34
|
+
"description": "",
|
35
|
+
"x": 165,
|
36
|
+
"y": 60,
|
37
|
+
"width": 151.8,
|
38
|
+
"height": 46,
|
39
|
+
"style": {
|
40
|
+
"font-family": [
|
41
|
+
"Helvetica"
|
42
|
+
],
|
43
|
+
"font-size": 18,
|
44
|
+
"color": "#000000",
|
45
|
+
"text-align": "left",
|
46
|
+
"vertical-align": "top",
|
47
|
+
"line-height": "",
|
48
|
+
"line-height-ratio": "",
|
49
|
+
"letter-spacing": "",
|
50
|
+
"font-style": []
|
51
|
+
},
|
52
|
+
"texts": [
|
53
|
+
"サイズ24"
|
54
|
+
]
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"id": "text_single32",
|
58
|
+
"type": "text",
|
59
|
+
"display": true,
|
60
|
+
"description": "",
|
61
|
+
"x": 345,
|
62
|
+
"y": 60,
|
63
|
+
"width": 151.8,
|
64
|
+
"height": 46,
|
65
|
+
"style": {
|
66
|
+
"font-family": [
|
67
|
+
"Helvetica"
|
68
|
+
],
|
69
|
+
"font-size": 18,
|
70
|
+
"color": "#000000",
|
71
|
+
"text-align": "left",
|
72
|
+
"vertical-align": "top",
|
73
|
+
"line-height": "",
|
74
|
+
"line-height-ratio": "",
|
75
|
+
"letter-spacing": "",
|
76
|
+
"font-style": []
|
77
|
+
},
|
78
|
+
"texts": [
|
79
|
+
"サイズ32"
|
80
|
+
]
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"id": "",
|
84
|
+
"type": "text",
|
85
|
+
"display": true,
|
86
|
+
"description": "",
|
87
|
+
"x": 35,
|
88
|
+
"y": 179.8,
|
89
|
+
"width": 200,
|
90
|
+
"height": 100,
|
91
|
+
"style": {
|
92
|
+
"font-family": [
|
93
|
+
"Helvetica"
|
94
|
+
],
|
95
|
+
"font-size": 18,
|
96
|
+
"color": "#000000",
|
97
|
+
"text-align": "left",
|
98
|
+
"vertical-align": "top",
|
99
|
+
"line-height": "",
|
100
|
+
"line-height-ratio": "",
|
101
|
+
"letter-spacing": "",
|
102
|
+
"font-style": []
|
103
|
+
},
|
104
|
+
"texts": [
|
105
|
+
"サイズ18",
|
106
|
+
"サイズ18"
|
107
|
+
]
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"id": "text_multiple24",
|
111
|
+
"type": "text",
|
112
|
+
"display": true,
|
113
|
+
"description": "",
|
114
|
+
"x": 165,
|
115
|
+
"y": 179.8,
|
116
|
+
"width": 200,
|
117
|
+
"height": 100,
|
118
|
+
"style": {
|
119
|
+
"font-family": [
|
120
|
+
"Helvetica"
|
121
|
+
],
|
122
|
+
"font-size": 18,
|
123
|
+
"color": "#000000",
|
124
|
+
"text-align": "left",
|
125
|
+
"vertical-align": "top",
|
126
|
+
"line-height": "",
|
127
|
+
"line-height-ratio": "",
|
128
|
+
"letter-spacing": "",
|
129
|
+
"font-style": []
|
130
|
+
},
|
131
|
+
"texts": [
|
132
|
+
"サイズ24",
|
133
|
+
"サイズ24"
|
134
|
+
]
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"id": "text_multiple32",
|
138
|
+
"type": "text",
|
139
|
+
"display": true,
|
140
|
+
"description": "",
|
141
|
+
"x": 345,
|
142
|
+
"y": 179.8,
|
143
|
+
"width": 200,
|
144
|
+
"height": 100,
|
145
|
+
"style": {
|
146
|
+
"font-family": [
|
147
|
+
"Helvetica"
|
148
|
+
],
|
149
|
+
"font-size": 18,
|
150
|
+
"color": "#000000",
|
151
|
+
"text-align": "left",
|
152
|
+
"vertical-align": "top",
|
153
|
+
"line-height": "",
|
154
|
+
"line-height-ratio": "",
|
155
|
+
"letter-spacing": "",
|
156
|
+
"font-style": []
|
157
|
+
},
|
158
|
+
"texts": [
|
159
|
+
"サイズ32",
|
160
|
+
"サイズ32"
|
161
|
+
]
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"id": "block_single18",
|
165
|
+
"type": "text-block",
|
166
|
+
"display": true,
|
167
|
+
"description": "",
|
168
|
+
"x": 40,
|
169
|
+
"y": 320.6,
|
170
|
+
"width": 103.4,
|
171
|
+
"height": 17,
|
172
|
+
"style": {
|
173
|
+
"font-family": [
|
174
|
+
"Helvetica"
|
175
|
+
],
|
176
|
+
"font-size": 18,
|
177
|
+
"color": "#000000",
|
178
|
+
"text-align": "left",
|
179
|
+
"vertical-align": "top",
|
180
|
+
"line-height": "",
|
181
|
+
"line-height-ratio": "",
|
182
|
+
"letter-spacing": "",
|
183
|
+
"font-style": [],
|
184
|
+
"overflow": "truncate",
|
185
|
+
"word-wrap": "break-word"
|
186
|
+
},
|
187
|
+
"reference-id": "",
|
188
|
+
"value": "",
|
189
|
+
"multiple-line": false,
|
190
|
+
"format": {
|
191
|
+
"base": "",
|
192
|
+
"type": ""
|
193
|
+
}
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"id": "block_single24",
|
197
|
+
"type": "text-block",
|
198
|
+
"display": true,
|
199
|
+
"description": "",
|
200
|
+
"x": 165,
|
201
|
+
"y": 320.6,
|
202
|
+
"width": 157.2,
|
203
|
+
"height": 17,
|
204
|
+
"style": {
|
205
|
+
"font-family": [
|
206
|
+
"Helvetica"
|
207
|
+
],
|
208
|
+
"font-size": 18,
|
209
|
+
"color": "#000000",
|
210
|
+
"text-align": "left",
|
211
|
+
"vertical-align": "top",
|
212
|
+
"line-height": "",
|
213
|
+
"line-height-ratio": "",
|
214
|
+
"letter-spacing": "",
|
215
|
+
"font-style": [],
|
216
|
+
"overflow": "truncate",
|
217
|
+
"word-wrap": "none"
|
218
|
+
},
|
219
|
+
"reference-id": "",
|
220
|
+
"value": "",
|
221
|
+
"multiple-line": false,
|
222
|
+
"format": {
|
223
|
+
"base": "",
|
224
|
+
"type": ""
|
225
|
+
}
|
226
|
+
},
|
227
|
+
{
|
228
|
+
"id": "block_single32",
|
229
|
+
"type": "text-block",
|
230
|
+
"display": true,
|
231
|
+
"description": "",
|
232
|
+
"x": 345,
|
233
|
+
"y": 320.6,
|
234
|
+
"width": 230.2,
|
235
|
+
"height": 17,
|
236
|
+
"style": {
|
237
|
+
"font-family": [
|
238
|
+
"Helvetica"
|
239
|
+
],
|
240
|
+
"font-size": 18,
|
241
|
+
"color": "#000000",
|
242
|
+
"text-align": "left",
|
243
|
+
"vertical-align": "top",
|
244
|
+
"line-height": "",
|
245
|
+
"line-height-ratio": "",
|
246
|
+
"letter-spacing": "",
|
247
|
+
"font-style": [],
|
248
|
+
"overflow": "truncate",
|
249
|
+
"word-wrap": "none"
|
250
|
+
},
|
251
|
+
"reference-id": "",
|
252
|
+
"value": "",
|
253
|
+
"multiple-line": false,
|
254
|
+
"format": {
|
255
|
+
"base": "",
|
256
|
+
"type": ""
|
257
|
+
}
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"id": "block_multiple18",
|
261
|
+
"type": "text-block",
|
262
|
+
"display": true,
|
263
|
+
"description": "",
|
264
|
+
"x": 40,
|
265
|
+
"y": 390,
|
266
|
+
"width": 103.4,
|
267
|
+
"height": 113.3,
|
268
|
+
"style": {
|
269
|
+
"font-family": [
|
270
|
+
"Helvetica"
|
271
|
+
],
|
272
|
+
"font-size": 18,
|
273
|
+
"color": "#000000",
|
274
|
+
"text-align": "left",
|
275
|
+
"vertical-align": "top",
|
276
|
+
"line-height": "",
|
277
|
+
"line-height-ratio": "",
|
278
|
+
"letter-spacing": "",
|
279
|
+
"font-style": [],
|
280
|
+
"overflow": "truncate",
|
281
|
+
"word-wrap": "none"
|
282
|
+
},
|
283
|
+
"reference-id": "",
|
284
|
+
"value": "",
|
285
|
+
"multiple-line": true,
|
286
|
+
"format": {
|
287
|
+
"base": "",
|
288
|
+
"type": ""
|
289
|
+
}
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"id": "block_multiple24",
|
293
|
+
"type": "text-block",
|
294
|
+
"display": true,
|
295
|
+
"description": "",
|
296
|
+
"x": 165,
|
297
|
+
"y": 390,
|
298
|
+
"width": 157.2,
|
299
|
+
"height": 113.3,
|
300
|
+
"style": {
|
301
|
+
"font-family": [
|
302
|
+
"Helvetica"
|
303
|
+
],
|
304
|
+
"font-size": 18,
|
305
|
+
"color": "#000000",
|
306
|
+
"text-align": "left",
|
307
|
+
"vertical-align": "top",
|
308
|
+
"line-height": "",
|
309
|
+
"line-height-ratio": "",
|
310
|
+
"letter-spacing": "",
|
311
|
+
"font-style": [],
|
312
|
+
"overflow": "truncate",
|
313
|
+
"word-wrap": "none"
|
314
|
+
},
|
315
|
+
"reference-id": "",
|
316
|
+
"value": "",
|
317
|
+
"multiple-line": true,
|
318
|
+
"format": {
|
319
|
+
"base": "",
|
320
|
+
"type": ""
|
321
|
+
}
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"id": "block_multiple32",
|
325
|
+
"type": "text-block",
|
326
|
+
"display": true,
|
327
|
+
"description": "",
|
328
|
+
"x": 345,
|
329
|
+
"y": 390,
|
330
|
+
"width": 230.2,
|
331
|
+
"height": 113.3,
|
332
|
+
"style": {
|
333
|
+
"font-family": [
|
334
|
+
"Helvetica"
|
335
|
+
],
|
336
|
+
"font-size": 18,
|
337
|
+
"color": "#000000",
|
338
|
+
"text-align": "left",
|
339
|
+
"vertical-align": "top",
|
340
|
+
"line-height": "",
|
341
|
+
"line-height-ratio": "",
|
342
|
+
"letter-spacing": "",
|
343
|
+
"font-style": [],
|
344
|
+
"overflow": "truncate",
|
345
|
+
"word-wrap": "none"
|
346
|
+
},
|
347
|
+
"reference-id": "",
|
348
|
+
"value": "",
|
349
|
+
"multiple-line": true,
|
350
|
+
"format": {
|
351
|
+
"base": "",
|
352
|
+
"type": ""
|
353
|
+
}
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"state": {
|
357
|
+
"layout-guides": [
|
358
|
+
{
|
359
|
+
"type": "x",
|
360
|
+
"position": 164.4
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"type": "x",
|
364
|
+
"position": 344.1
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"type": "y",
|
368
|
+
"position": 503.3
|
369
|
+
}
|
370
|
+
]
|
371
|
+
},
|
372
|
+
"title": "FontSize",
|
373
|
+
"report": {
|
374
|
+
"paper-type": "A4",
|
375
|
+
"orientation": "portrait",
|
376
|
+
"margin": [
|
377
|
+
20,
|
378
|
+
20,
|
379
|
+
20,
|
380
|
+
20
|
381
|
+
]
|
382
|
+
}
|
383
|
+
}
|
@@ -1 +1,889 @@
|
|
1
|
-
{"version":"0.7.7.1","finger-print":1259961757,"config":{"title":"Tblock Styles","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"18\" x-left=\"20\" x-top=\"21\" id=\"goog_2086231679\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"18\" x=\"20\" y=\"21\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"38\">Char Space in Single(Helvetica)</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"space_single_helvetica\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":50,\"width\":555.2,\"height\":18},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":62.9,\"xml:space\":\"preserve\",\"kerning\":\"5\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231680\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"5\" x-display=\"true\" x-multiple=\"false\" x-id=\"space_single_helvetica\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"18\" x-left=\"20\" x-top=\"50\" id=\"goog_2086231680\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"18\" x=\"20\" y=\"50\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"61\">space_single_helvetica</text></g>LAYOUT--><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"426\" x2=\"426\" y1=\"20\" y2=\"78\" id=\"goog_2086231681\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"323\" x-height=\"18\" x-left=\"20\" x-top=\"83\" id=\"goog_2086231682\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"323\" height=\"18\" x=\"20\" y=\"83\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"98.3\">\u6587\u5b57\u9593\u9694 in \u5358\u884c\uff08IPA\u660e\u671d\uff09</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"space_single_ipamincho\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":110,\"width\":555.2,\"height\":18},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":125.3,\"xml:space\":\"preserve\",\"kerning\":\"5\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231683\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"5\" x-display=\"true\" x-multiple=\"false\" x-id=\"space_single_ipamincho\" x-width=\"555.2\" x-height=\"18\" x-left=\"20\" x-top=\"110\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231683\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"18\" x=\"20\" y=\"110\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"121\">space_single_ipamincho</text></g>LAYOUT--><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"333\" y1=\"80\" y2=\"138\" x1=\"333\" id=\"goog_2086231684\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"38\" x-left=\"20\" x-top=\"148\" id=\"goog_2086231685\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"38\" x=\"20\" y=\"148\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"160\">Char Space</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"179\">in Multiple(Times New Roman)</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"space_multi_times\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":199.9,\"width\":555.2,\"height\":51.2},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":197.4,\"width\":555.2,\"height\":51.2,\"xml:space\":\"preserve\",\"kerning\":\"5\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Times New Roman\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231686\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"5\" x-display=\"true\" x-multiple=\"true\" x-id=\"space_multi_times\" x-width=\"555.2\" x-height=\"51.2\" x-left=\"20\" x-top=\"199.9\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231686\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"51.2\" x=\"20\" y=\"199.9\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"210.9\">space_multi_times</text></g>LAYOUT--><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"386\" y1=\"165\" y2=\"251.1\" x1=\"386\" id=\"goog_2086231687\"/><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"149\" y1=\"148\" y2=\"234.1\" x1=\"149\" id=\"goog_2086231688\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"323\" x-height=\"36\" x-left=\"20\" x-top=\"275\" id=\"goog_2086231689\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"323\" height=\"36\" x=\"20\" y=\"275\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"291\">\u6587\u5b57\u9593\u9694</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"309\">in \u8907\u6570\u884c\uff08IPA\u660e\u671d\uff09</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"space_multi_ipamincho\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":324,\"width\":555.2,\"height\":52.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":324,\"width\":555.2,\"height\":52.1,\"xml:space\":\"preserve\",\"kerning\":\"5\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231690\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"5\" x-display=\"true\" x-multiple=\"true\" x-id=\"space_multi_ipamincho\" x-width=\"555.2\" x-height=\"52.1\" x-left=\"20\" x-top=\"324\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231690\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"52.1\" x=\"20\" y=\"324\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"335\">space_multi_ipamincho</text></g>LAYOUT--><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"249\" y1=\"292\" y2=\"378.1\" x1=\"249\" id=\"goog_2086231691\"/><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"107\" y1=\"273\" y2=\"359.1\" x1=\"107\" id=\"goog_2086231692\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"left_top\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":406.1,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":406.1,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231693\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"left_top\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"20\" x-top=\"406.1\" id=\"goog_2086231693\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"406.1\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"417.1\">left_top</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"left_center\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":215.1,\"y\":406.1,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":215.1,\"y\":406.1,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231694\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"left_center\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"215.1\" x-top=\"406.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-valign=\"center\" id=\"goog_2086231694\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"406.1\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"217.1\" y=\"417.1\">left_center</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"left_bottom\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"bottom\",\"line-height\":\"\",\"box\":{\"x\":410,\"y\":406.1,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":410,\"y\":406.1,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231695\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"left_bottom\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"410\" x-top=\"406.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-valign=\"bottom\" id=\"goog_2086231695\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"406.1\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"412\" y=\"417.1\">left_bottom</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"406.1\" id=\"goog_2086231696\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"406.1\" id=\"goog_2086231697\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"406.1\" id=\"goog_2086231698\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"line_height\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":36,\"box\":{\"x\":311.1,\"y\":678,\"width\":179.1,\"height\":90},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":311.1,\"y\":678,\"width\":179.1,\"height\":90,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAPGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231699\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"line_height\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAPGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"179.1\" x-height=\"90\" x-left=\"311.1\" x-top=\"678\" x-line-height=\"36\" x-line-height-ratio=\"2\" id=\"goog_2086231699\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"179.1\" height=\"90\" x=\"311.1\" y=\"678\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"313.1\" y=\"689\">line_height</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"IPAPGothic\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"179.1\" x-height=\"142.8\" x-left=\"99\" x-top=\"678\" x-line-height=\"36\" x-line-height-ratio=\"2\" id=\"goog_2086231700\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"179.1\" height=\"142.8\" x=\"99\" y=\"678\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"99\" y=\"693\">\u884c\u9593\u96942.0</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"99\" y=\"729\">\u65e5\u672c\u8a9e</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"99\" y=\"765\">Thinreports</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"93\" x2=\"511.2\" y1=\"692.8\" y2=\"692.8\" id=\"goog_2086231701\"/><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"511.2\" y1=\"727.8\" y2=\"727.8\" x1=\"93\" id=\"goog_2086231702\"/><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"511.2\" y1=\"766.8\" y2=\"766.8\" x1=\"93\" id=\"goog_2086231703\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"center_top\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":481,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":481,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231704\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"center_top\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"20\" x-top=\"481\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" id=\"goog_2086231704\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"481\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"492\">center_top</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"center_center\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":215.1,\"y\":481,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":215.1,\"y\":481,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231705\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"center_center\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"215.1\" x-top=\"481\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\" id=\"goog_2086231705\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"481\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"217.1\" y=\"492\">center_center</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"center_bottom\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"bottom\",\"line-height\":\"\",\"box\":{\"x\":410,\"y\":481,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":410,\"y\":481,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231706\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"center_bottom\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"410\" x-top=\"481\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"bottom\" id=\"goog_2086231706\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"481\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"412\" y=\"492\">center_bottom</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"481\" id=\"goog_2086231707\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"481\" id=\"goog_2086231708\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"481\" id=\"goog_2086231709\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"right_top\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":556,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":556,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"id\":\"goog_2086231710\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"right_top\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"20\" x-top=\"556\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" id=\"goog_2086231710\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"556\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"567\">right_top</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"right_center\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":215.1,\"y\":556,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":215.1,\"y\":556,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"id\":\"goog_2086231711\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"right_center\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"215.1\" x-top=\"556\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-valign=\"center\" id=\"goog_2086231711\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"556\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"217.1\" y=\"567\">right_center</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"right_bottom\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"bottom\",\"line-height\":\"\",\"box\":{\"x\":410,\"y\":556,\"width\":165.1,\"height\":69.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":410,\"y\":556,\"width\":165.1,\"height\":69.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"id\":\"goog_2086231712\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"right_bottom\" x-width=\"165.1\" x-height=\"69.1\" x-left=\"410\" x-top=\"556\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" x-valign=\"bottom\" id=\"goog_2086231712\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"556\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"412\" y=\"567\">right_bottom</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"20\" y=\"556\" id=\"goog_2086231713\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"215.1\" y=\"556\" id=\"goog_2086231714\"/><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"165.1\" height=\"69.1\" x=\"410\" y=\"556\" id=\"goog_2086231715\"/></g></svg>","state":{"layout-guide":[]}}
|
1
|
+
{
|
2
|
+
"version": "0.9.0",
|
3
|
+
"items": [
|
4
|
+
{
|
5
|
+
"id": "",
|
6
|
+
"type": "text",
|
7
|
+
"display": true,
|
8
|
+
"description": "",
|
9
|
+
"x": 20,
|
10
|
+
"y": 21,
|
11
|
+
"width": 555.2,
|
12
|
+
"height": 20.5,
|
13
|
+
"style": {
|
14
|
+
"font-family": [
|
15
|
+
"Helvetica"
|
16
|
+
],
|
17
|
+
"font-size": 18,
|
18
|
+
"color": "#000000",
|
19
|
+
"text-align": "left",
|
20
|
+
"vertical-align": "top",
|
21
|
+
"line-height": "",
|
22
|
+
"line-height-ratio": "",
|
23
|
+
"letter-spacing": 5,
|
24
|
+
"font-style": []
|
25
|
+
},
|
26
|
+
"texts": [
|
27
|
+
"Char Space in Single(Helvetica)"
|
28
|
+
]
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"id": "space_single_helvetica",
|
32
|
+
"type": "text-block",
|
33
|
+
"display": true,
|
34
|
+
"description": "",
|
35
|
+
"x": 20,
|
36
|
+
"y": 50,
|
37
|
+
"width": 555.2,
|
38
|
+
"height": 18,
|
39
|
+
"style": {
|
40
|
+
"font-family": [
|
41
|
+
"Helvetica"
|
42
|
+
],
|
43
|
+
"font-size": 18,
|
44
|
+
"color": "#000000",
|
45
|
+
"text-align": "left",
|
46
|
+
"vertical-align": "top",
|
47
|
+
"line-height": "",
|
48
|
+
"line-height-ratio": "",
|
49
|
+
"letter-spacing": 5,
|
50
|
+
"font-style": [],
|
51
|
+
"overflow": "truncate",
|
52
|
+
"word-wrap": "break-word"
|
53
|
+
},
|
54
|
+
"reference-id": "",
|
55
|
+
"value": "",
|
56
|
+
"multiple-line": false,
|
57
|
+
"format": {
|
58
|
+
"base": "",
|
59
|
+
"type": ""
|
60
|
+
}
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"id": "",
|
64
|
+
"type": "line",
|
65
|
+
"display": true,
|
66
|
+
"description": "",
|
67
|
+
"style": {
|
68
|
+
"border-color": "#ff0000",
|
69
|
+
"border-width": 1,
|
70
|
+
"border-style": "solid"
|
71
|
+
},
|
72
|
+
"x1": 426,
|
73
|
+
"y1": 20,
|
74
|
+
"x2": 426,
|
75
|
+
"y2": 78
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"id": "",
|
79
|
+
"type": "text",
|
80
|
+
"display": true,
|
81
|
+
"description": "",
|
82
|
+
"x": 20,
|
83
|
+
"y": 83,
|
84
|
+
"width": 323,
|
85
|
+
"height": 18,
|
86
|
+
"style": {
|
87
|
+
"font-family": [
|
88
|
+
"IPAMincho"
|
89
|
+
],
|
90
|
+
"font-size": 18,
|
91
|
+
"color": "#000000",
|
92
|
+
"text-align": "left",
|
93
|
+
"vertical-align": "top",
|
94
|
+
"line-height": "",
|
95
|
+
"line-height-ratio": "",
|
96
|
+
"letter-spacing": 5,
|
97
|
+
"font-style": []
|
98
|
+
},
|
99
|
+
"texts": [
|
100
|
+
"文字間隔 in 単行(IPA明朝)"
|
101
|
+
]
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"id": "space_single_ipamincho",
|
105
|
+
"type": "text-block",
|
106
|
+
"display": true,
|
107
|
+
"description": "",
|
108
|
+
"x": 20,
|
109
|
+
"y": 110,
|
110
|
+
"width": 555.2,
|
111
|
+
"height": 18,
|
112
|
+
"style": {
|
113
|
+
"font-family": [
|
114
|
+
"IPAMincho"
|
115
|
+
],
|
116
|
+
"font-size": 18,
|
117
|
+
"color": "#000000",
|
118
|
+
"text-align": "left",
|
119
|
+
"vertical-align": "top",
|
120
|
+
"line-height": "",
|
121
|
+
"line-height-ratio": "",
|
122
|
+
"letter-spacing": 5,
|
123
|
+
"font-style": [],
|
124
|
+
"overflow": "truncate",
|
125
|
+
"word-wrap": "break-word"
|
126
|
+
},
|
127
|
+
"reference-id": "",
|
128
|
+
"value": "",
|
129
|
+
"multiple-line": false,
|
130
|
+
"format": {
|
131
|
+
"base": "",
|
132
|
+
"type": ""
|
133
|
+
}
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"id": "",
|
137
|
+
"type": "line",
|
138
|
+
"display": true,
|
139
|
+
"description": "",
|
140
|
+
"style": {
|
141
|
+
"border-color": "#ff0000",
|
142
|
+
"border-width": 1,
|
143
|
+
"border-style": "solid"
|
144
|
+
},
|
145
|
+
"x1": 333,
|
146
|
+
"y1": 80,
|
147
|
+
"x2": 333,
|
148
|
+
"y2": 138
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"id": "",
|
152
|
+
"type": "text",
|
153
|
+
"display": true,
|
154
|
+
"description": "",
|
155
|
+
"x": 20,
|
156
|
+
"y": 148,
|
157
|
+
"width": 555.2,
|
158
|
+
"height": 38,
|
159
|
+
"style": {
|
160
|
+
"font-family": [
|
161
|
+
"Times New Roman"
|
162
|
+
],
|
163
|
+
"font-size": 18,
|
164
|
+
"color": "#000000",
|
165
|
+
"text-align": "left",
|
166
|
+
"vertical-align": "top",
|
167
|
+
"line-height": "",
|
168
|
+
"line-height-ratio": "",
|
169
|
+
"letter-spacing": 5,
|
170
|
+
"font-style": []
|
171
|
+
},
|
172
|
+
"texts": [
|
173
|
+
"Char Space",
|
174
|
+
"in Multiple(Times New Roman)"
|
175
|
+
]
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"id": "space_multi_times",
|
179
|
+
"type": "text-block",
|
180
|
+
"display": true,
|
181
|
+
"description": "",
|
182
|
+
"x": 20,
|
183
|
+
"y": 199.9,
|
184
|
+
"width": 555.2,
|
185
|
+
"height": 51.2,
|
186
|
+
"style": {
|
187
|
+
"font-family": [
|
188
|
+
"Times New Roman"
|
189
|
+
],
|
190
|
+
"font-size": 18,
|
191
|
+
"color": "#000000",
|
192
|
+
"text-align": "left",
|
193
|
+
"vertical-align": "top",
|
194
|
+
"line-height": "",
|
195
|
+
"line-height-ratio": "",
|
196
|
+
"letter-spacing": 5,
|
197
|
+
"font-style": [],
|
198
|
+
"overflow": "truncate",
|
199
|
+
"word-wrap": "break-word"
|
200
|
+
},
|
201
|
+
"reference-id": "",
|
202
|
+
"value": "",
|
203
|
+
"multiple-line": true,
|
204
|
+
"format": {
|
205
|
+
"base": "",
|
206
|
+
"type": ""
|
207
|
+
}
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"id": "",
|
211
|
+
"type": "line",
|
212
|
+
"display": true,
|
213
|
+
"description": "",
|
214
|
+
"style": {
|
215
|
+
"border-color": "#ff0000",
|
216
|
+
"border-width": 1,
|
217
|
+
"border-style": "solid"
|
218
|
+
},
|
219
|
+
"x1": 386,
|
220
|
+
"y1": 165,
|
221
|
+
"x2": 386,
|
222
|
+
"y2": 251.1
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"id": "",
|
226
|
+
"type": "line",
|
227
|
+
"display": true,
|
228
|
+
"description": "",
|
229
|
+
"style": {
|
230
|
+
"border-color": "#ff0000",
|
231
|
+
"border-width": 1,
|
232
|
+
"border-style": "solid"
|
233
|
+
},
|
234
|
+
"x1": 149,
|
235
|
+
"y1": 148,
|
236
|
+
"x2": 149,
|
237
|
+
"y2": 234.1
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"id": "",
|
241
|
+
"type": "text",
|
242
|
+
"display": true,
|
243
|
+
"description": "",
|
244
|
+
"x": 20,
|
245
|
+
"y": 275,
|
246
|
+
"width": 323,
|
247
|
+
"height": 36,
|
248
|
+
"style": {
|
249
|
+
"font-family": [
|
250
|
+
"IPAMincho"
|
251
|
+
],
|
252
|
+
"font-size": 18,
|
253
|
+
"color": "#000000",
|
254
|
+
"text-align": "left",
|
255
|
+
"vertical-align": "top",
|
256
|
+
"line-height": "",
|
257
|
+
"line-height-ratio": "",
|
258
|
+
"letter-spacing": 5,
|
259
|
+
"font-style": []
|
260
|
+
},
|
261
|
+
"texts": [
|
262
|
+
"文字間隔",
|
263
|
+
"in 複数行(IPA明朝)"
|
264
|
+
]
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"id": "space_multi_ipamincho",
|
268
|
+
"type": "text-block",
|
269
|
+
"display": true,
|
270
|
+
"description": "",
|
271
|
+
"x": 20,
|
272
|
+
"y": 324,
|
273
|
+
"width": 555.2,
|
274
|
+
"height": 52.1,
|
275
|
+
"style": {
|
276
|
+
"font-family": [
|
277
|
+
"IPAMincho"
|
278
|
+
],
|
279
|
+
"font-size": 18,
|
280
|
+
"color": "#000000",
|
281
|
+
"text-align": "left",
|
282
|
+
"vertical-align": "top",
|
283
|
+
"line-height": "",
|
284
|
+
"line-height-ratio": "",
|
285
|
+
"letter-spacing": 5,
|
286
|
+
"font-style": [],
|
287
|
+
"overflow": "truncate",
|
288
|
+
"word-wrap": "break-word"
|
289
|
+
},
|
290
|
+
"reference-id": "",
|
291
|
+
"value": "",
|
292
|
+
"multiple-line": true,
|
293
|
+
"format": {
|
294
|
+
"base": "",
|
295
|
+
"type": ""
|
296
|
+
}
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"id": "",
|
300
|
+
"type": "line",
|
301
|
+
"display": true,
|
302
|
+
"description": "",
|
303
|
+
"style": {
|
304
|
+
"border-color": "#ff0000",
|
305
|
+
"border-width": 1,
|
306
|
+
"border-style": "solid"
|
307
|
+
},
|
308
|
+
"x1": 249,
|
309
|
+
"y1": 292,
|
310
|
+
"x2": 249,
|
311
|
+
"y2": 378.1
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"id": "",
|
315
|
+
"type": "line",
|
316
|
+
"display": true,
|
317
|
+
"description": "",
|
318
|
+
"style": {
|
319
|
+
"border-color": "#ff0000",
|
320
|
+
"border-width": 1,
|
321
|
+
"border-style": "solid"
|
322
|
+
},
|
323
|
+
"x1": 107,
|
324
|
+
"y1": 273,
|
325
|
+
"x2": 107,
|
326
|
+
"y2": 359.1
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"id": "left_top",
|
330
|
+
"type": "text-block",
|
331
|
+
"display": true,
|
332
|
+
"description": "",
|
333
|
+
"x": 20,
|
334
|
+
"y": 406.1,
|
335
|
+
"width": 165.1,
|
336
|
+
"height": 69.1,
|
337
|
+
"style": {
|
338
|
+
"font-family": [
|
339
|
+
"IPAGothic"
|
340
|
+
],
|
341
|
+
"font-size": 18,
|
342
|
+
"color": "#000000",
|
343
|
+
"text-align": "left",
|
344
|
+
"vertical-align": "top",
|
345
|
+
"line-height": "",
|
346
|
+
"line-height-ratio": "",
|
347
|
+
"letter-spacing": "",
|
348
|
+
"font-style": [],
|
349
|
+
"overflow": "truncate",
|
350
|
+
"word-wrap": "break-word"
|
351
|
+
},
|
352
|
+
"reference-id": "",
|
353
|
+
"value": "",
|
354
|
+
"multiple-line": true,
|
355
|
+
"format": {
|
356
|
+
"base": "",
|
357
|
+
"type": ""
|
358
|
+
}
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"id": "left_center",
|
362
|
+
"type": "text-block",
|
363
|
+
"display": true,
|
364
|
+
"description": "",
|
365
|
+
"x": 215.1,
|
366
|
+
"y": 406.1,
|
367
|
+
"width": 165.1,
|
368
|
+
"height": 69.1,
|
369
|
+
"style": {
|
370
|
+
"font-family": [
|
371
|
+
"IPAGothic"
|
372
|
+
],
|
373
|
+
"font-size": 18,
|
374
|
+
"color": "#000000",
|
375
|
+
"text-align": "left",
|
376
|
+
"vertical-align": "middle",
|
377
|
+
"line-height": "",
|
378
|
+
"line-height-ratio": "",
|
379
|
+
"letter-spacing": "",
|
380
|
+
"font-style": [],
|
381
|
+
"overflow": "truncate",
|
382
|
+
"word-wrap": "break-word"
|
383
|
+
},
|
384
|
+
"reference-id": "",
|
385
|
+
"value": "",
|
386
|
+
"multiple-line": true,
|
387
|
+
"format": {
|
388
|
+
"base": "",
|
389
|
+
"type": ""
|
390
|
+
}
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"id": "left_bottom",
|
394
|
+
"type": "text-block",
|
395
|
+
"display": true,
|
396
|
+
"description": "",
|
397
|
+
"x": 410,
|
398
|
+
"y": 406.1,
|
399
|
+
"width": 165.1,
|
400
|
+
"height": 69.1,
|
401
|
+
"style": {
|
402
|
+
"font-family": [
|
403
|
+
"IPAGothic"
|
404
|
+
],
|
405
|
+
"font-size": 18,
|
406
|
+
"color": "#000000",
|
407
|
+
"text-align": "left",
|
408
|
+
"vertical-align": "bottom",
|
409
|
+
"line-height": "",
|
410
|
+
"line-height-ratio": "",
|
411
|
+
"letter-spacing": "",
|
412
|
+
"font-style": [],
|
413
|
+
"overflow": "truncate",
|
414
|
+
"word-wrap": "break-word"
|
415
|
+
},
|
416
|
+
"reference-id": "",
|
417
|
+
"value": "",
|
418
|
+
"multiple-line": true,
|
419
|
+
"format": {
|
420
|
+
"base": "",
|
421
|
+
"type": ""
|
422
|
+
}
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"id": "",
|
426
|
+
"type": "rect",
|
427
|
+
"display": true,
|
428
|
+
"description": "",
|
429
|
+
"x": 20,
|
430
|
+
"y": 406.1,
|
431
|
+
"width": 165.1,
|
432
|
+
"height": 69.1,
|
433
|
+
"style": {
|
434
|
+
"border-color": "#ff0000",
|
435
|
+
"border-width": 1,
|
436
|
+
"border-style": "solid",
|
437
|
+
"fill-color": "none"
|
438
|
+
},
|
439
|
+
"border-radius": 0
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"id": "",
|
443
|
+
"type": "rect",
|
444
|
+
"display": true,
|
445
|
+
"description": "",
|
446
|
+
"x": 215.1,
|
447
|
+
"y": 406.1,
|
448
|
+
"width": 165.1,
|
449
|
+
"height": 69.1,
|
450
|
+
"style": {
|
451
|
+
"border-color": "#ff0000",
|
452
|
+
"border-width": 1,
|
453
|
+
"border-style": "solid",
|
454
|
+
"fill-color": "none"
|
455
|
+
},
|
456
|
+
"border-radius": 0
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"id": "",
|
460
|
+
"type": "rect",
|
461
|
+
"display": true,
|
462
|
+
"description": "",
|
463
|
+
"x": 410,
|
464
|
+
"y": 406.1,
|
465
|
+
"width": 165.1,
|
466
|
+
"height": 69.1,
|
467
|
+
"style": {
|
468
|
+
"border-color": "#ff0000",
|
469
|
+
"border-width": 1,
|
470
|
+
"border-style": "solid",
|
471
|
+
"fill-color": "none"
|
472
|
+
},
|
473
|
+
"border-radius": 0
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"id": "line_height",
|
477
|
+
"type": "text-block",
|
478
|
+
"display": true,
|
479
|
+
"description": "",
|
480
|
+
"x": 311.1,
|
481
|
+
"y": 678,
|
482
|
+
"width": 179.1,
|
483
|
+
"height": 90,
|
484
|
+
"style": {
|
485
|
+
"font-family": [
|
486
|
+
"IPAPGothic"
|
487
|
+
],
|
488
|
+
"font-size": 18,
|
489
|
+
"color": "#000000",
|
490
|
+
"text-align": "left",
|
491
|
+
"vertical-align": "top",
|
492
|
+
"line-height": 41,
|
493
|
+
"line-height-ratio": 2,
|
494
|
+
"letter-spacing": "",
|
495
|
+
"font-style": [],
|
496
|
+
"overflow": "truncate",
|
497
|
+
"word-wrap": "break-word"
|
498
|
+
},
|
499
|
+
"reference-id": "",
|
500
|
+
"value": "",
|
501
|
+
"multiple-line": true,
|
502
|
+
"format": {
|
503
|
+
"base": "",
|
504
|
+
"type": ""
|
505
|
+
}
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"id": "",
|
509
|
+
"type": "text",
|
510
|
+
"display": true,
|
511
|
+
"description": "",
|
512
|
+
"x": 99,
|
513
|
+
"y": 678,
|
514
|
+
"width": 179.1,
|
515
|
+
"height": 142.8,
|
516
|
+
"style": {
|
517
|
+
"font-family": [
|
518
|
+
"IPAPGothic"
|
519
|
+
],
|
520
|
+
"font-size": 18,
|
521
|
+
"color": "#000000",
|
522
|
+
"text-align": "left",
|
523
|
+
"vertical-align": "top",
|
524
|
+
"line-height": 41,
|
525
|
+
"line-height-ratio": 2,
|
526
|
+
"letter-spacing": "",
|
527
|
+
"font-style": []
|
528
|
+
},
|
529
|
+
"texts": [
|
530
|
+
"行間隔2.0",
|
531
|
+
"日本語",
|
532
|
+
"Thinreports"
|
533
|
+
]
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"id": "",
|
537
|
+
"type": "line",
|
538
|
+
"display": true,
|
539
|
+
"description": "",
|
540
|
+
"style": {
|
541
|
+
"border-color": "#ff0000",
|
542
|
+
"border-width": 1,
|
543
|
+
"border-style": "solid"
|
544
|
+
},
|
545
|
+
"x1": 93,
|
546
|
+
"y1": 692.8,
|
547
|
+
"x2": 511.2,
|
548
|
+
"y2": 692.8
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"id": "",
|
552
|
+
"type": "line",
|
553
|
+
"display": true,
|
554
|
+
"description": "",
|
555
|
+
"style": {
|
556
|
+
"border-color": "#ff0000",
|
557
|
+
"border-width": 1,
|
558
|
+
"border-style": "solid"
|
559
|
+
},
|
560
|
+
"x1": 93,
|
561
|
+
"y1": 727.8,
|
562
|
+
"x2": 511.2,
|
563
|
+
"y2": 727.8
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"id": "",
|
567
|
+
"type": "line",
|
568
|
+
"display": true,
|
569
|
+
"description": "",
|
570
|
+
"style": {
|
571
|
+
"border-color": "#ff0000",
|
572
|
+
"border-width": 1,
|
573
|
+
"border-style": "solid"
|
574
|
+
},
|
575
|
+
"x1": 93,
|
576
|
+
"y1": 766.8,
|
577
|
+
"x2": 511.2,
|
578
|
+
"y2": 766.8
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"id": "center_top",
|
582
|
+
"type": "text-block",
|
583
|
+
"display": true,
|
584
|
+
"description": "",
|
585
|
+
"x": 20,
|
586
|
+
"y": 481,
|
587
|
+
"width": 165.1,
|
588
|
+
"height": 69.1,
|
589
|
+
"style": {
|
590
|
+
"font-family": [
|
591
|
+
"IPAGothic"
|
592
|
+
],
|
593
|
+
"font-size": 18,
|
594
|
+
"color": "#000000",
|
595
|
+
"text-align": "center",
|
596
|
+
"vertical-align": "top",
|
597
|
+
"line-height": "",
|
598
|
+
"line-height-ratio": "",
|
599
|
+
"letter-spacing": "",
|
600
|
+
"font-style": [],
|
601
|
+
"overflow": "truncate",
|
602
|
+
"word-wrap": "break-word"
|
603
|
+
},
|
604
|
+
"reference-id": "",
|
605
|
+
"value": "",
|
606
|
+
"multiple-line": true,
|
607
|
+
"format": {
|
608
|
+
"base": "",
|
609
|
+
"type": ""
|
610
|
+
}
|
611
|
+
},
|
612
|
+
{
|
613
|
+
"id": "center_center",
|
614
|
+
"type": "text-block",
|
615
|
+
"display": true,
|
616
|
+
"description": "",
|
617
|
+
"x": 215.1,
|
618
|
+
"y": 481,
|
619
|
+
"width": 165.1,
|
620
|
+
"height": 69.1,
|
621
|
+
"style": {
|
622
|
+
"font-family": [
|
623
|
+
"IPAGothic"
|
624
|
+
],
|
625
|
+
"font-size": 18,
|
626
|
+
"color": "#000000",
|
627
|
+
"text-align": "center",
|
628
|
+
"vertical-align": "middle",
|
629
|
+
"line-height": "",
|
630
|
+
"line-height-ratio": "",
|
631
|
+
"letter-spacing": "",
|
632
|
+
"font-style": [],
|
633
|
+
"overflow": "truncate",
|
634
|
+
"word-wrap": "break-word"
|
635
|
+
},
|
636
|
+
"reference-id": "",
|
637
|
+
"value": "",
|
638
|
+
"multiple-line": true,
|
639
|
+
"format": {
|
640
|
+
"base": "",
|
641
|
+
"type": ""
|
642
|
+
}
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"id": "center_bottom",
|
646
|
+
"type": "text-block",
|
647
|
+
"display": true,
|
648
|
+
"description": "",
|
649
|
+
"x": 410,
|
650
|
+
"y": 481,
|
651
|
+
"width": 165.1,
|
652
|
+
"height": 69.1,
|
653
|
+
"style": {
|
654
|
+
"font-family": [
|
655
|
+
"IPAGothic"
|
656
|
+
],
|
657
|
+
"font-size": 18,
|
658
|
+
"color": "#000000",
|
659
|
+
"text-align": "center",
|
660
|
+
"vertical-align": "bottom",
|
661
|
+
"line-height": "",
|
662
|
+
"line-height-ratio": "",
|
663
|
+
"letter-spacing": "",
|
664
|
+
"font-style": [],
|
665
|
+
"overflow": "truncate",
|
666
|
+
"word-wrap": "break-word"
|
667
|
+
},
|
668
|
+
"reference-id": "",
|
669
|
+
"value": "",
|
670
|
+
"multiple-line": true,
|
671
|
+
"format": {
|
672
|
+
"base": "",
|
673
|
+
"type": ""
|
674
|
+
}
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"id": "",
|
678
|
+
"type": "rect",
|
679
|
+
"display": true,
|
680
|
+
"description": "",
|
681
|
+
"x": 20,
|
682
|
+
"y": 481,
|
683
|
+
"width": 165.1,
|
684
|
+
"height": 69.1,
|
685
|
+
"style": {
|
686
|
+
"border-color": "#ff0000",
|
687
|
+
"border-width": 1,
|
688
|
+
"border-style": "solid",
|
689
|
+
"fill-color": "none"
|
690
|
+
},
|
691
|
+
"border-radius": 0
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"id": "",
|
695
|
+
"type": "rect",
|
696
|
+
"display": true,
|
697
|
+
"description": "",
|
698
|
+
"x": 215.1,
|
699
|
+
"y": 481,
|
700
|
+
"width": 165.1,
|
701
|
+
"height": 69.1,
|
702
|
+
"style": {
|
703
|
+
"border-color": "#ff0000",
|
704
|
+
"border-width": 1,
|
705
|
+
"border-style": "solid",
|
706
|
+
"fill-color": "none"
|
707
|
+
},
|
708
|
+
"border-radius": 0
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"id": "",
|
712
|
+
"type": "rect",
|
713
|
+
"display": true,
|
714
|
+
"description": "",
|
715
|
+
"x": 410,
|
716
|
+
"y": 481,
|
717
|
+
"width": 165.1,
|
718
|
+
"height": 69.1,
|
719
|
+
"style": {
|
720
|
+
"border-color": "#ff0000",
|
721
|
+
"border-width": 1,
|
722
|
+
"border-style": "solid",
|
723
|
+
"fill-color": "none"
|
724
|
+
},
|
725
|
+
"border-radius": 0
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"id": "right_top",
|
729
|
+
"type": "text-block",
|
730
|
+
"display": true,
|
731
|
+
"description": "",
|
732
|
+
"x": 20,
|
733
|
+
"y": 556,
|
734
|
+
"width": 165.1,
|
735
|
+
"height": 69.1,
|
736
|
+
"style": {
|
737
|
+
"font-family": [
|
738
|
+
"IPAGothic"
|
739
|
+
],
|
740
|
+
"font-size": 18,
|
741
|
+
"color": "#000000",
|
742
|
+
"text-align": "right",
|
743
|
+
"vertical-align": "top",
|
744
|
+
"line-height": "",
|
745
|
+
"line-height-ratio": "",
|
746
|
+
"letter-spacing": "",
|
747
|
+
"font-style": [],
|
748
|
+
"overflow": "truncate",
|
749
|
+
"word-wrap": "break-word"
|
750
|
+
},
|
751
|
+
"reference-id": "",
|
752
|
+
"value": "",
|
753
|
+
"multiple-line": true,
|
754
|
+
"format": {
|
755
|
+
"base": "",
|
756
|
+
"type": ""
|
757
|
+
}
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"id": "right_center",
|
761
|
+
"type": "text-block",
|
762
|
+
"display": true,
|
763
|
+
"description": "",
|
764
|
+
"x": 215.1,
|
765
|
+
"y": 556,
|
766
|
+
"width": 165.1,
|
767
|
+
"height": 69.1,
|
768
|
+
"style": {
|
769
|
+
"font-family": [
|
770
|
+
"IPAGothic"
|
771
|
+
],
|
772
|
+
"font-size": 18,
|
773
|
+
"color": "#000000",
|
774
|
+
"text-align": "right",
|
775
|
+
"vertical-align": "middle",
|
776
|
+
"line-height": "",
|
777
|
+
"line-height-ratio": "",
|
778
|
+
"letter-spacing": "",
|
779
|
+
"font-style": [],
|
780
|
+
"overflow": "truncate",
|
781
|
+
"word-wrap": "break-word"
|
782
|
+
},
|
783
|
+
"reference-id": "",
|
784
|
+
"value": "",
|
785
|
+
"multiple-line": true,
|
786
|
+
"format": {
|
787
|
+
"base": "",
|
788
|
+
"type": ""
|
789
|
+
}
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"id": "right_bottom",
|
793
|
+
"type": "text-block",
|
794
|
+
"display": true,
|
795
|
+
"description": "",
|
796
|
+
"x": 410,
|
797
|
+
"y": 556,
|
798
|
+
"width": 165.1,
|
799
|
+
"height": 69.1,
|
800
|
+
"style": {
|
801
|
+
"font-family": [
|
802
|
+
"IPAGothic"
|
803
|
+
],
|
804
|
+
"font-size": 18,
|
805
|
+
"color": "#000000",
|
806
|
+
"text-align": "right",
|
807
|
+
"vertical-align": "bottom",
|
808
|
+
"line-height": "",
|
809
|
+
"line-height-ratio": "",
|
810
|
+
"letter-spacing": "",
|
811
|
+
"font-style": [],
|
812
|
+
"overflow": "truncate",
|
813
|
+
"word-wrap": "break-word"
|
814
|
+
},
|
815
|
+
"reference-id": "",
|
816
|
+
"value": "",
|
817
|
+
"multiple-line": true,
|
818
|
+
"format": {
|
819
|
+
"base": "",
|
820
|
+
"type": ""
|
821
|
+
}
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"id": "",
|
825
|
+
"type": "rect",
|
826
|
+
"display": true,
|
827
|
+
"description": "",
|
828
|
+
"x": 20,
|
829
|
+
"y": 556,
|
830
|
+
"width": 165.1,
|
831
|
+
"height": 69.1,
|
832
|
+
"style": {
|
833
|
+
"border-color": "#ff0000",
|
834
|
+
"border-width": 1,
|
835
|
+
"border-style": "solid",
|
836
|
+
"fill-color": "none"
|
837
|
+
},
|
838
|
+
"border-radius": 0
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"id": "",
|
842
|
+
"type": "rect",
|
843
|
+
"display": true,
|
844
|
+
"description": "",
|
845
|
+
"x": 215.1,
|
846
|
+
"y": 556,
|
847
|
+
"width": 165.1,
|
848
|
+
"height": 69.1,
|
849
|
+
"style": {
|
850
|
+
"border-color": "#ff0000",
|
851
|
+
"border-width": 1,
|
852
|
+
"border-style": "solid",
|
853
|
+
"fill-color": "none"
|
854
|
+
},
|
855
|
+
"border-radius": 0
|
856
|
+
},
|
857
|
+
{
|
858
|
+
"id": "",
|
859
|
+
"type": "rect",
|
860
|
+
"display": true,
|
861
|
+
"description": "",
|
862
|
+
"x": 410,
|
863
|
+
"y": 556,
|
864
|
+
"width": 165.1,
|
865
|
+
"height": 69.1,
|
866
|
+
"style": {
|
867
|
+
"border-color": "#ff0000",
|
868
|
+
"border-width": 1,
|
869
|
+
"border-style": "solid",
|
870
|
+
"fill-color": "none"
|
871
|
+
},
|
872
|
+
"border-radius": 0
|
873
|
+
}
|
874
|
+
],
|
875
|
+
"state": {
|
876
|
+
"layout-guides": []
|
877
|
+
},
|
878
|
+
"title": "Tblock Styles",
|
879
|
+
"report": {
|
880
|
+
"paper-type": "A4",
|
881
|
+
"orientation": "portrait",
|
882
|
+
"margin": [
|
883
|
+
20,
|
884
|
+
20,
|
885
|
+
20,
|
886
|
+
20
|
887
|
+
]
|
888
|
+
}
|
889
|
+
}
|