thinreports 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CONTRIBUTING.md +2 -0
  3. data/.travis.yml +3 -3
  4. data/CHANGELOG.md +98 -1
  5. data/README.md +0 -9
  6. data/Rakefile +1 -2
  7. data/examples/character_spacing/character_spacing.tlf +293 -1
  8. data/examples/dynamic_image/dynamic_image.tlf +661 -1
  9. data/examples/dynamic_style/dynamic_style.rb +4 -4
  10. data/examples/dynamic_style/dynamic_style.tlf +1835 -1
  11. data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
  12. data/examples/eudc/eudc.tlf +180 -1
  13. data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
  14. data/examples/list_events/list_events.rb +1 -28
  15. data/examples/list_events/list_events.tlf +361 -0
  16. data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
  17. data/examples/list_page_number/list_page_number.tlf +254 -1
  18. data/examples/page_number/page_number.tlf +215 -1
  19. data/examples/palleted_png/palleted_png.rb +2 -0
  20. data/examples/palleted_png/palleted_png.tlf +47 -1
  21. data/examples/password_setting/password_setting.tlf +45 -1
  22. data/examples/report_callbacks/report_callbacks.rb +1 -18
  23. data/examples/report_callbacks/report_callbacks.tlf +147 -1
  24. data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
  25. data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
  26. data/examples/tblock_styles/font_size.tlf +383 -1
  27. data/examples/tblock_styles/tblock_styles.tlf +889 -1
  28. data/examples/text_align/text_align.tlf +241 -1
  29. data/examples/typeB_page_size/B4_ISO.tlf +45 -1
  30. data/examples/typeB_page_size/B4_JIS.tlf +45 -1
  31. data/examples/word_wrap/word_wrap.tlf +297 -1
  32. data/lib/thinreports.rb +0 -1
  33. data/lib/thinreports/config.rb +3 -0
  34. data/lib/thinreports/core/errors.rb +0 -3
  35. data/lib/thinreports/core/format/base.rb +4 -4
  36. data/lib/thinreports/core/shape.rb +1 -9
  37. data/lib/thinreports/core/shape/basic.rb +3 -3
  38. data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
  39. data/lib/thinreports/core/shape/basic/format.rb +2 -14
  40. data/lib/thinreports/core/shape/basic/internal.rb +2 -2
  41. data/lib/thinreports/core/shape/image_block.rb +3 -3
  42. data/lib/thinreports/core/shape/image_block/format.rb +0 -2
  43. data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
  44. data/lib/thinreports/core/shape/list.rb +3 -7
  45. data/lib/thinreports/core/shape/list/format.rb +37 -24
  46. data/lib/thinreports/core/shape/list/manager.rb +1 -36
  47. data/lib/thinreports/core/shape/list/page.rb +0 -15
  48. data/lib/thinreports/core/shape/list/page_state.rb +1 -1
  49. data/lib/thinreports/core/shape/list/section_format.rb +14 -12
  50. data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
  51. data/lib/thinreports/core/shape/manager/format.rb +0 -2
  52. data/lib/thinreports/core/shape/manager/internal.rb +1 -1
  53. data/lib/thinreports/core/shape/page_number.rb +1 -1
  54. data/lib/thinreports/core/shape/page_number/format.rb +9 -6
  55. data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
  56. data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
  57. data/lib/thinreports/core/shape/style/base.rb +11 -13
  58. data/lib/thinreports/core/shape/style/basic.rb +4 -4
  59. data/lib/thinreports/core/shape/style/graphic.rb +4 -10
  60. data/lib/thinreports/core/shape/style/text.rb +36 -69
  61. data/lib/thinreports/core/shape/text.rb +3 -3
  62. data/lib/thinreports/core/shape/text/format.rb +3 -13
  63. data/lib/thinreports/core/shape/text/internal.rb +2 -2
  64. data/lib/thinreports/core/shape/text_block.rb +3 -3
  65. data/lib/thinreports/core/shape/text_block/format.rb +9 -6
  66. data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
  67. data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
  68. data/lib/thinreports/generator/pdf.rb +0 -1
  69. data/lib/thinreports/generator/pdf/document.rb +2 -2
  70. data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
  71. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
  72. data/lib/thinreports/generator/pdf/document/font.rb +3 -8
  73. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
  74. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
  75. data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
  76. data/lib/thinreports/generator/pdf/document/page.rb +1 -1
  77. data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
  78. data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
  79. data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
  80. data/lib/thinreports/layout.rb +3 -3
  81. data/lib/thinreports/layout/base.rb +0 -16
  82. data/lib/thinreports/layout/format.rb +38 -57
  83. data/lib/thinreports/layout/legacy_schema.rb +354 -0
  84. data/lib/thinreports/layout/version.rb +1 -1
  85. data/lib/thinreports/report.rb +0 -1
  86. data/lib/thinreports/report/base.rb +3 -17
  87. data/lib/thinreports/report/internal.rb +13 -55
  88. data/lib/thinreports/report/page.rb +1 -1
  89. data/lib/thinreports/version.rb +1 -1
  90. data/test/data/legacy_layout/all-items.tlf +1 -0
  91. data/test/schema_helper.rb +121 -0
  92. data/test/test_helper.rb +13 -50
  93. data/test/unit/core/format/test_base.rb +35 -31
  94. data/test/unit/core/shape/base/test_internal.rb +1 -1
  95. data/test/unit/core/shape/basic/test_block_format.rb +23 -0
  96. data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
  97. data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
  98. data/test/unit/core/shape/basic/test_format.rb +25 -47
  99. data/test/unit/core/shape/basic/test_interface.rb +5 -5
  100. data/test/unit/core/shape/basic/test_internal.rb +6 -11
  101. data/test/unit/core/shape/image_block/test_interface.rb +5 -5
  102. data/test/unit/core/shape/image_block/test_internal.rb +2 -2
  103. data/test/unit/core/shape/list/test_format.rb +86 -44
  104. data/test/unit/core/shape/list/test_manager.rb +10 -65
  105. data/test/unit/core/shape/list/test_page.rb +10 -61
  106. data/test/unit/core/shape/list/test_page_state.rb +1 -1
  107. data/test/unit/core/shape/list/test_section_format.rb +19 -28
  108. data/test/unit/core/shape/list/test_section_interface.rb +14 -6
  109. data/test/unit/core/shape/list/test_section_internal.rb +17 -23
  110. data/test/unit/core/shape/manager/test_format.rb +1 -1
  111. data/test/unit/core/shape/manager/test_internal.rb +59 -98
  112. data/test/unit/core/shape/manager/test_target.rb +21 -30
  113. data/test/unit/core/shape/page_number/test_format.rb +34 -52
  114. data/test/unit/core/shape/page_number/test_interface.rb +1 -1
  115. data/test/unit/core/shape/page_number/test_internal.rb +2 -2
  116. data/test/unit/core/shape/styles/test_base.rb +16 -41
  117. data/test/unit/core/shape/styles/test_basic.rb +7 -7
  118. data/test/unit/core/shape/styles/test_graphic.rb +27 -32
  119. data/test/unit/core/shape/styles/test_text.rb +68 -311
  120. data/test/unit/core/shape/text/test_format.rb +30 -59
  121. data/test/unit/core/shape/text/test_internal.rb +5 -5
  122. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
  123. data/test/unit/core/shape/text_block/test_format.rb +145 -146
  124. data/test/unit/core/shape/text_block/test_interface.rb +9 -9
  125. data/test/unit/core/shape/text_block/test_internal.rb +9 -9
  126. data/test/unit/core/test_shape.rb +19 -31
  127. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
  128. data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
  129. data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
  130. data/test/unit/generator/pdf/document/test_font.rb +4 -10
  131. data/test/unit/generator/pdf/document/test_page.rb +13 -11
  132. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  133. data/test/unit/generator/test_base.rb +5 -5
  134. data/test/unit/generator/test_configuration.rb +4 -8
  135. data/test/unit/generator/test_pdf.rb +3 -2
  136. data/test/unit/layout/test_base.rb +16 -22
  137. data/test/unit/layout/test_format.rb +66 -86
  138. data/test/unit/layout/test_legacy_schema.rb +587 -0
  139. data/test/unit/layout/test_version.rb +20 -20
  140. data/test/unit/report/test_base.rb +32 -45
  141. data/test/unit/report/test_internal.rb +43 -99
  142. data/test/unit/test_config.rb +4 -2
  143. data/test/unit/test_layout.rb +1 -1
  144. metadata +20 -48
  145. data/examples/list_events/list_events_0_7_7.tlf +0 -1
  146. data/examples/list_events/list_events_0_8.tlf +0 -1
  147. data/lib/thinreports/core/events.rb +0 -69
  148. data/lib/thinreports/core/format/builder.rb +0 -62
  149. data/lib/thinreports/core/shape/list/configuration.rb +0 -54
  150. data/lib/thinreports/core/shape/list/events.rb +0 -47
  151. data/lib/thinreports/core/shape/list/store.rb +0 -33
  152. data/lib/thinreports/generator/pdf/configuration.rb +0 -33
  153. data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
  154. data/lib/thinreports/layout/configuration.rb +0 -29
  155. data/test/data/layout_block.tlf +0 -1
  156. data/test/data/layout_list.tlf +0 -1
  157. data/test/data/layout_list_noheader.tlf +0 -1
  158. data/test/data/layout_text1.tlf +0 -1
  159. data/test/data/layout_text2.tlf +0 -1
  160. data/test/unit/core/format/test_builder.rb +0 -109
  161. data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
  162. data/test/unit/core/shape/image_block/test_format.rb +0 -58
  163. data/test/unit/core/shape/list/test_configuration.rb +0 -69
  164. data/test/unit/core/shape/list/test_events.rb +0 -36
  165. data/test/unit/core/shape/list/test_store.rb +0 -41
  166. data/test/unit/core/test_events.rb +0 -93
  167. data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
  168. data/test/unit/generator/pdf/test_configuration.rb +0 -31
  169. data/test/unit/layout/test_configuration.rb +0 -21
  170. data/test/unit/report/test_events.rb +0 -22
@@ -1 +1,538 @@
1
- {"version":"0.7.7.1","finger-print":-93036881,"config":{"title":"Tblock Overflow","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\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"206.1\" height=\"41\" x=\"262.1\" y=\"76\" id=\"goog_2086231658\"/><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"17\" x=\"57.9\" y=\"74\" id=\"goog_2086231659\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"truncate\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":74,\"width\":164.2,\"height\":17},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":86.9,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"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_2086231660\"}}}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\" x-id=\"truncate\" 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=\"164.2\" x-height=\"17\" x-left=\"57.9\" x-top=\"74\" x-overflow=\"truncate\" id=\"goog_2086231660\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"17\" x=\"57.9\" y=\"74\"/><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=\"59.9\" y=\"85\">truncate</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=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"17\" x-left=\"43\" x-top=\"46\" id=\"goog_2086231661\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"17\" x=\"43\" y=\"46\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"43\" y=\"58.9\">Overflow: \"truncate\"</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"18\" x=\"57.9\" y=\"99\" id=\"goog_2086231662\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"truncate_ja\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":99,\"width\":164.2,\"height\":18},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":114.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAPMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231663\"}}}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\" x-id=\"truncate_ja\" x-width=\"164.2\" x-height=\"18\" x-left=\"57.9\" x-top=\"99\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAPMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231663\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"18\" x=\"57.9\" y=\"99\"/><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=\"59.9\" y=\"110\">truncate_ja</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" 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=\"17\" x-left=\"43\" x-top=\"140\" id=\"goog_2086231664\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"17\" x=\"43\" y=\"140\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"43\" y=\"152.9\">Overflow: \"fit\"</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"30.7\" x=\"57.9\" y=\"169\" id=\"goog_2086231665\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"fit\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":169,\"width\":164.2,\"height\":30.7},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":185,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"28\",\"font-family\":\"Courier New\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231666\"}}}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\" x-id=\"fit\" x-width=\"164.2\" x-height=\"30.7\" x-left=\"57.9\" x-top=\"169\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"28\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\" id=\"goog_2086231666\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"30.7\" x=\"57.9\" y=\"169\"/><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=\"59.9\" y=\"180\">fit</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"28\" x=\"57.9\" y=\"209\" id=\"goog_2086231667\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"fit_ja\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":209,\"width\":164.2,\"height\":28},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":232.7,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"28\",\"font-family\":\"IPAPGothic\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231668\"}}}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\" x-id=\"fit_ja\" x-width=\"164.2\" x-height=\"28\" x-left=\"57.9\" x-top=\"209\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"28\" font-family=\"IPAPGothic\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\" id=\"goog_2086231668\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"28\" x=\"57.9\" y=\"209\"/><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=\"59.9\" y=\"220\">fit_ja</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" 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=\"17\" x-left=\"43\" x-top=\"250\" id=\"goog_2086231669\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"17\" x=\"43\" y=\"250\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"43\" y=\"262.9\">Overflow: \"expand\"</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"18.9\" x=\"57.9\" y=\"279\" id=\"goog_2086231670\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"expand\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":279,\"width\":164.2,\"height\":18.9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"expand\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":291.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"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_2086231671\"}}}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\" x-id=\"expand\" x-width=\"164.2\" x-height=\"18.9\" x-left=\"57.9\" x-top=\"279\" 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\" x-overflow=\"expand\" id=\"goog_2086231671\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"18.9\" x=\"57.9\" y=\"279\"/><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=\"59.9\" y=\"290\">expand</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"164.2\" height=\"18\" x=\"57.9\" y=\"370\" id=\"goog_2086231672\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"expand_ja\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":57.9,\"y\":370,\"width\":164.2,\"height\":18},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"expand\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":57.9,\"y\":385.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"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_2086231673\"}}}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\" x-id=\"expand_ja\" x-width=\"164.2\" x-height=\"18\" x-left=\"57.9\" x-top=\"370\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"expand\" id=\"goog_2086231673\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"164.2\" height=\"18\" x=\"57.9\" y=\"370\"/><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=\"59.9\" y=\"381\">expand_ja</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"truncate_m\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":262.1,\"y\":76,\"width\":206.1,\"height\":41},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":262.1,\"y\":76,\"width\":206.1,\"height\":41,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"IPAPMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_2086231674\"}}}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=\"truncate_m\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"IPAPMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"206.1\" x-height=\"41\" x-left=\"262.1\" x-top=\"76\" id=\"goog_2086231674\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"206.1\" height=\"41\" x=\"262.1\" y=\"76\"/><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=\"264.1\" y=\"87\">truncate_m</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"206.1\" height=\"71.1\" x=\"262.9\" y=\"169\" id=\"goog_2086231675\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"fit_m\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":262.9,\"y\":169,\"width\":206.1,\"height\":71.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":262.9,\"y\":168.4,\"width\":206.1,\"height\":71.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"26\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231676\"}}}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=\"fit_m\" x-width=\"206.1\" x-height=\"71.1\" x-left=\"262.9\" x-top=\"169\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"26\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"fit\" id=\"goog_2086231676\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"206.1\" height=\"71.1\" x=\"262.9\" y=\"169\"/><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=\"264.9\" y=\"180\">fit_m</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"206.1\" height=\"41\" x=\"262.9\" y=\"279\" id=\"goog_2086231677\"/><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"expand_m\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":24.984375,\"box\":{\"x\":262.9,\"y\":279,\"width\":206.1,\"height\":41},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"expand\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":262.9,\"y\":278.4,\"width\":206.1,\"height\":41,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"26\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_2086231678\"}}}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=\"expand_m\" x-width=\"206.1\" x-height=\"41\" x-left=\"262.9\" x-top=\"279\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"26\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" x-line-height=\"24.984375\" x-line-height-ratio=\"1\" text-anchor=\"start\" x-overflow=\"expand\" id=\"goog_2086231678\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"206.1\" height=\"41\" x=\"262.9\" y=\"279\"/><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=\"264.9\" y=\"290\">expand_m</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "rect",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 262.1,
10
+ "y": 76,
11
+ "width": 206.1,
12
+ "height": 41,
13
+ "style": {
14
+ "border-color": "#000000",
15
+ "border-width": 1,
16
+ "border-style": "solid",
17
+ "fill-color": "#FFFFFF"
18
+ },
19
+ "border-radius": 0
20
+ },
21
+ {
22
+ "id": "",
23
+ "type": "rect",
24
+ "display": true,
25
+ "description": "",
26
+ "x": 57.9,
27
+ "y": 74,
28
+ "width": 164.2,
29
+ "height": 17,
30
+ "style": {
31
+ "border-color": "#000000",
32
+ "border-width": 1,
33
+ "border-style": "solid",
34
+ "fill-color": "#FFFFFF"
35
+ },
36
+ "border-radius": 0
37
+ },
38
+ {
39
+ "id": "truncate",
40
+ "type": "text-block",
41
+ "display": true,
42
+ "description": "",
43
+ "x": 57.9,
44
+ "y": 74,
45
+ "width": 164.2,
46
+ "height": 17,
47
+ "style": {
48
+ "font-family": [
49
+ "Helvetica"
50
+ ],
51
+ "font-size": 18,
52
+ "color": "#000000",
53
+ "text-align": "left",
54
+ "vertical-align": "top",
55
+ "line-height": "",
56
+ "line-height-ratio": "",
57
+ "letter-spacing": "",
58
+ "font-style": [],
59
+ "overflow": "truncate",
60
+ "word-wrap": "break-word"
61
+ },
62
+ "reference-id": "",
63
+ "value": "",
64
+ "multiple-line": false,
65
+ "format": {
66
+ "base": "",
67
+ "type": ""
68
+ }
69
+ },
70
+ {
71
+ "id": "",
72
+ "type": "text",
73
+ "display": true,
74
+ "description": "",
75
+ "x": 43,
76
+ "y": 46,
77
+ "width": 200,
78
+ "height": 20.5,
79
+ "style": {
80
+ "font-family": [
81
+ "Helvetica"
82
+ ],
83
+ "font-size": 18,
84
+ "color": "#000000",
85
+ "text-align": "left",
86
+ "vertical-align": "top",
87
+ "line-height": "",
88
+ "line-height-ratio": "",
89
+ "letter-spacing": "",
90
+ "font-style": []
91
+ },
92
+ "texts": [
93
+ "Overflow: \"truncate\""
94
+ ]
95
+ },
96
+ {
97
+ "id": "",
98
+ "type": "rect",
99
+ "display": true,
100
+ "description": "",
101
+ "x": 57.9,
102
+ "y": 99,
103
+ "width": 164.2,
104
+ "height": 18,
105
+ "style": {
106
+ "border-color": "#000000",
107
+ "border-width": 1,
108
+ "border-style": "solid",
109
+ "fill-color": "#FFFFFF"
110
+ },
111
+ "border-radius": 0
112
+ },
113
+ {
114
+ "id": "truncate_ja",
115
+ "type": "text-block",
116
+ "display": true,
117
+ "description": "",
118
+ "x": 57.9,
119
+ "y": 99,
120
+ "width": 164.2,
121
+ "height": 18,
122
+ "style": {
123
+ "font-family": [
124
+ "IPAPMincho"
125
+ ],
126
+ "font-size": 18,
127
+ "color": "#000000",
128
+ "text-align": "left",
129
+ "vertical-align": "top",
130
+ "line-height": "",
131
+ "line-height-ratio": "",
132
+ "letter-spacing": "",
133
+ "font-style": [],
134
+ "overflow": "truncate",
135
+ "word-wrap": "break-word"
136
+ },
137
+ "reference-id": "",
138
+ "value": "",
139
+ "multiple-line": false,
140
+ "format": {
141
+ "base": "",
142
+ "type": ""
143
+ }
144
+ },
145
+ {
146
+ "id": "",
147
+ "type": "text",
148
+ "display": true,
149
+ "description": "",
150
+ "x": 43,
151
+ "y": 140,
152
+ "width": 200,
153
+ "height": 20.5,
154
+ "style": {
155
+ "font-family": [
156
+ "Helvetica"
157
+ ],
158
+ "font-size": 18,
159
+ "color": "#000000",
160
+ "text-align": "left",
161
+ "vertical-align": "top",
162
+ "line-height": "",
163
+ "line-height-ratio": "",
164
+ "letter-spacing": "",
165
+ "font-style": []
166
+ },
167
+ "texts": [
168
+ "Overflow: \"fit\""
169
+ ]
170
+ },
171
+ {
172
+ "id": "",
173
+ "type": "rect",
174
+ "display": true,
175
+ "description": "",
176
+ "x": 57.9,
177
+ "y": 169,
178
+ "width": 164.2,
179
+ "height": 30.7,
180
+ "style": {
181
+ "border-color": "#000000",
182
+ "border-width": 1,
183
+ "border-style": "solid",
184
+ "fill-color": "#FFFFFF"
185
+ },
186
+ "border-radius": 0
187
+ },
188
+ {
189
+ "id": "fit",
190
+ "type": "text-block",
191
+ "display": true,
192
+ "description": "",
193
+ "x": 57.9,
194
+ "y": 169,
195
+ "width": 164.2,
196
+ "height": 30.7,
197
+ "style": {
198
+ "font-family": [
199
+ "Courier New"
200
+ ],
201
+ "font-size": 28,
202
+ "color": "#000000",
203
+ "text-align": "left",
204
+ "vertical-align": "top",
205
+ "line-height": "",
206
+ "line-height-ratio": "",
207
+ "letter-spacing": "",
208
+ "font-style": [],
209
+ "overflow": "fit",
210
+ "word-wrap": "break-word"
211
+ },
212
+ "reference-id": "",
213
+ "value": "",
214
+ "multiple-line": false,
215
+ "format": {
216
+ "base": "",
217
+ "type": ""
218
+ }
219
+ },
220
+ {
221
+ "id": "",
222
+ "type": "rect",
223
+ "display": true,
224
+ "description": "",
225
+ "x": 57.9,
226
+ "y": 209,
227
+ "width": 164.2,
228
+ "height": 28,
229
+ "style": {
230
+ "border-color": "#000000",
231
+ "border-width": 1,
232
+ "border-style": "solid",
233
+ "fill-color": "#FFFFFF"
234
+ },
235
+ "border-radius": 0
236
+ },
237
+ {
238
+ "id": "fit_ja",
239
+ "type": "text-block",
240
+ "display": true,
241
+ "description": "",
242
+ "x": 57.9,
243
+ "y": 209,
244
+ "width": 164.2,
245
+ "height": 28,
246
+ "style": {
247
+ "font-family": [
248
+ "IPAPGothic"
249
+ ],
250
+ "font-size": 28,
251
+ "color": "#000000",
252
+ "text-align": "left",
253
+ "vertical-align": "top",
254
+ "line-height": "",
255
+ "line-height-ratio": "",
256
+ "letter-spacing": "",
257
+ "font-style": [],
258
+ "overflow": "fit",
259
+ "word-wrap": "break-word"
260
+ },
261
+ "reference-id": "",
262
+ "value": "",
263
+ "multiple-line": false,
264
+ "format": {
265
+ "base": "",
266
+ "type": ""
267
+ }
268
+ },
269
+ {
270
+ "id": "",
271
+ "type": "text",
272
+ "display": true,
273
+ "description": "",
274
+ "x": 43,
275
+ "y": 250,
276
+ "width": 200,
277
+ "height": 20.5,
278
+ "style": {
279
+ "font-family": [
280
+ "Helvetica"
281
+ ],
282
+ "font-size": 18,
283
+ "color": "#000000",
284
+ "text-align": "left",
285
+ "vertical-align": "top",
286
+ "line-height": "",
287
+ "line-height-ratio": "",
288
+ "letter-spacing": "",
289
+ "font-style": []
290
+ },
291
+ "texts": [
292
+ "Overflow: \"expand\""
293
+ ]
294
+ },
295
+ {
296
+ "id": "",
297
+ "type": "rect",
298
+ "display": true,
299
+ "description": "",
300
+ "x": 57.9,
301
+ "y": 279,
302
+ "width": 164.2,
303
+ "height": 18.9,
304
+ "style": {
305
+ "border-color": "#000000",
306
+ "border-width": 1,
307
+ "border-style": "solid",
308
+ "fill-color": "#FFFFFF"
309
+ },
310
+ "border-radius": 0
311
+ },
312
+ {
313
+ "id": "expand",
314
+ "type": "text-block",
315
+ "display": true,
316
+ "description": "",
317
+ "x": 57.9,
318
+ "y": 279,
319
+ "width": 164.2,
320
+ "height": 18.9,
321
+ "style": {
322
+ "font-family": [
323
+ "Times New Roman"
324
+ ],
325
+ "font-size": 18,
326
+ "color": "#000000",
327
+ "text-align": "left",
328
+ "vertical-align": "top",
329
+ "line-height": "",
330
+ "line-height-ratio": "",
331
+ "letter-spacing": "",
332
+ "font-style": [],
333
+ "overflow": "expand",
334
+ "word-wrap": "break-word"
335
+ },
336
+ "reference-id": "",
337
+ "value": "",
338
+ "multiple-line": false,
339
+ "format": {
340
+ "base": "",
341
+ "type": ""
342
+ }
343
+ },
344
+ {
345
+ "id": "",
346
+ "type": "rect",
347
+ "display": true,
348
+ "description": "",
349
+ "x": 57.9,
350
+ "y": 370,
351
+ "width": 164.2,
352
+ "height": 18,
353
+ "style": {
354
+ "border-color": "#000000",
355
+ "border-width": 1,
356
+ "border-style": "solid",
357
+ "fill-color": "#FFFFFF"
358
+ },
359
+ "border-radius": 0
360
+ },
361
+ {
362
+ "id": "expand_ja",
363
+ "type": "text-block",
364
+ "display": true,
365
+ "description": "",
366
+ "x": 57.9,
367
+ "y": 370,
368
+ "width": 164.2,
369
+ "height": 18,
370
+ "style": {
371
+ "font-family": [
372
+ "IPAMincho"
373
+ ],
374
+ "font-size": 18,
375
+ "color": "#000000",
376
+ "text-align": "left",
377
+ "vertical-align": "top",
378
+ "line-height": "",
379
+ "line-height-ratio": "",
380
+ "letter-spacing": "",
381
+ "font-style": [],
382
+ "overflow": "expand",
383
+ "word-wrap": "break-word"
384
+ },
385
+ "reference-id": "",
386
+ "value": "",
387
+ "multiple-line": false,
388
+ "format": {
389
+ "base": "",
390
+ "type": ""
391
+ }
392
+ },
393
+ {
394
+ "id": "truncate_m",
395
+ "type": "text-block",
396
+ "display": true,
397
+ "description": "",
398
+ "x": 262.1,
399
+ "y": 76,
400
+ "width": 206.1,
401
+ "height": 41,
402
+ "style": {
403
+ "font-family": [
404
+ "IPAPMincho"
405
+ ],
406
+ "font-size": 18,
407
+ "color": "#000000",
408
+ "text-align": "left",
409
+ "vertical-align": "top",
410
+ "line-height": "",
411
+ "line-height-ratio": "",
412
+ "letter-spacing": "",
413
+ "font-style": [],
414
+ "overflow": "truncate",
415
+ "word-wrap": "break-word"
416
+ },
417
+ "reference-id": "",
418
+ "value": "",
419
+ "multiple-line": true,
420
+ "format": {
421
+ "base": "",
422
+ "type": ""
423
+ }
424
+ },
425
+ {
426
+ "id": "",
427
+ "type": "rect",
428
+ "display": true,
429
+ "description": "",
430
+ "x": 262.9,
431
+ "y": 169,
432
+ "width": 206.1,
433
+ "height": 71.1,
434
+ "style": {
435
+ "border-color": "#000000",
436
+ "border-width": 1,
437
+ "border-style": "solid",
438
+ "fill-color": "#FFFFFF"
439
+ },
440
+ "border-radius": 0
441
+ },
442
+ {
443
+ "id": "fit_m",
444
+ "type": "text-block",
445
+ "display": true,
446
+ "description": "",
447
+ "x": 262.9,
448
+ "y": 169,
449
+ "width": 206.1,
450
+ "height": 71.1,
451
+ "style": {
452
+ "font-family": [
453
+ "Helvetica"
454
+ ],
455
+ "font-size": 26,
456
+ "color": "#000000",
457
+ "text-align": "left",
458
+ "vertical-align": "top",
459
+ "line-height": "",
460
+ "line-height-ratio": "",
461
+ "letter-spacing": "",
462
+ "font-style": [],
463
+ "overflow": "fit",
464
+ "word-wrap": "break-word"
465
+ },
466
+ "reference-id": "",
467
+ "value": "",
468
+ "multiple-line": true,
469
+ "format": {
470
+ "base": "",
471
+ "type": ""
472
+ }
473
+ },
474
+ {
475
+ "id": "",
476
+ "type": "rect",
477
+ "display": true,
478
+ "description": "",
479
+ "x": 262.9,
480
+ "y": 279,
481
+ "width": 206.1,
482
+ "height": 41,
483
+ "style": {
484
+ "border-color": "#000000",
485
+ "border-width": 1,
486
+ "border-style": "solid",
487
+ "fill-color": "#FFFFFF"
488
+ },
489
+ "border-radius": 0
490
+ },
491
+ {
492
+ "id": "expand_m",
493
+ "type": "text-block",
494
+ "display": true,
495
+ "description": "",
496
+ "x": 262.9,
497
+ "y": 279,
498
+ "width": 206.1,
499
+ "height": 41,
500
+ "style": {
501
+ "font-family": [
502
+ "Helvetica"
503
+ ],
504
+ "font-size": 26,
505
+ "color": "#000000",
506
+ "text-align": "left",
507
+ "vertical-align": "top",
508
+ "line-height": 30,
509
+ "line-height-ratio": 1,
510
+ "letter-spacing": "",
511
+ "font-style": [],
512
+ "overflow": "expand",
513
+ "word-wrap": "break-word"
514
+ },
515
+ "reference-id": "",
516
+ "value": "",
517
+ "multiple-line": true,
518
+ "format": {
519
+ "base": "",
520
+ "type": ""
521
+ }
522
+ }
523
+ ],
524
+ "state": {
525
+ "layout-guides": []
526
+ },
527
+ "title": "Tblock Overflow",
528
+ "report": {
529
+ "paper-type": "A4",
530
+ "orientation": "portrait",
531
+ "margin": [
532
+ 20,
533
+ 20,
534
+ 20,
535
+ 20
536
+ ]
537
+ }
538
+ }