From 6c3d614973e7349017e98e8d71af726970bf1cfb Mon Sep 17 00:00:00 2001 From: "Tuan Anh Nguyen Dang (Tadashi_Cin)" Date: Tue, 26 Sep 2023 15:52:44 +0700 Subject: [PATCH] [AUR-432] Add layout-aware table parsing PDF reader (#27) * add OCRReader, MathPixReader and ExcelReader * update test case for ocr reader * reformat * minor fix --- .pre-commit-config.yaml | 2 +- knowledgehub/documents/__init__.py | 3 + knowledgehub/loaders/__init__.py | 5 +- knowledgehub/loaders/excel_loader.py | 96 ++++++ knowledgehub/loaders/mathpix_loader.py | 175 +++++++++++ knowledgehub/loaders/ocr_loader.py | 97 ++++++ knowledgehub/loaders/utils/__init__.py | 0 knowledgehub/loaders/utils/table.py | 335 +++++++++++++++++++++ tests/resources/dummy.xlsx | Bin 0 -> 9949 bytes tests/resources/fullocr_sample_output.json | 1 + tests/resources/policy.md | 131 ++++++++ tests/test_table_reader.py | 45 +++ 12 files changed, 888 insertions(+), 2 deletions(-) create mode 100644 knowledgehub/loaders/excel_loader.py create mode 100644 knowledgehub/loaders/mathpix_loader.py create mode 100644 knowledgehub/loaders/ocr_loader.py create mode 100644 knowledgehub/loaders/utils/__init__.py create mode 100644 knowledgehub/loaders/utils/table.py create mode 100644 tests/resources/dummy.xlsx create mode 100644 tests/resources/fullocr_sample_output.json create mode 100644 tests/resources/policy.md create mode 100644 tests/test_table_reader.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b12ed8a..90d0071 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,5 +47,5 @@ repos: rev: "v1.5.1" hooks: - id: mypy - additional_dependencies: [types-PyYAML==6.0.12.11] + additional_dependencies: [types-PyYAML==6.0.12.11, "types-requests"] args: ["--check-untyped-defs", "--ignore-missing-imports"] diff --git a/knowledgehub/documents/__init__.py b/knowledgehub/documents/__init__.py index e69de29..8fbd1ea 100644 --- a/knowledgehub/documents/__init__.py +++ b/knowledgehub/documents/__init__.py @@ -0,0 +1,3 @@ +from .base import Document + +__all__ = ["Document"] diff --git a/knowledgehub/loaders/__init__.py b/knowledgehub/loaders/__init__.py index 1e3e992..a1d812a 100644 --- a/knowledgehub/loaders/__init__.py +++ b/knowledgehub/loaders/__init__.py @@ -1,3 +1,6 @@ from .base import AutoReader +from .excel_loader import PandasExcelReader +from .mathpix_loader import MathpixPDFReader +from .ocr_loader import OCRReader -__all__ = ["AutoReader"] +__all__ = ["AutoReader", "PandasExcelReader", "MathpixPDFReader", "OCRReader"] diff --git a/knowledgehub/loaders/excel_loader.py b/knowledgehub/loaders/excel_loader.py new file mode 100644 index 0000000..dec358f --- /dev/null +++ b/knowledgehub/loaders/excel_loader.py @@ -0,0 +1,96 @@ +"""Pandas Excel reader. + +Pandas parser for .xlsx files. + +""" +from pathlib import Path +from typing import Any, List, Optional, Union + +from llama_index.readers.base import BaseReader + +from kotaemon.documents import Document + + +class PandasExcelReader(BaseReader): + r"""Pandas-based CSV parser. + + Parses CSVs using the separator detection from Pandas `read_csv`function. + If special parameters are required, use the `pandas_config` dict. + + Args: + + pandas_config (dict): Options for the `pandas.read_excel` function call. + Refer to https://pandas.pydata.org/docs/reference/api/pandas.read_excel.html + for more information. Set to empty dict by default, + this means defaults will be used. + + """ + + def __init__( + self, + *args: Any, + pandas_config: Optional[dict] = None, + row_joiner: str = "\n", + **kwargs: Any, + ) -> None: + """Init params.""" + super().__init__(*args, **kwargs) + self._pandas_config = pandas_config or {} + self._row_joiner = row_joiner if row_joiner else "\n" + + def load_data( + self, + file: Path, + include_sheetname: bool = False, + sheet_name: Optional[Union[str, int, list]] = None, + **kwargs, + ) -> List[Document]: + """Parse file and extract values from a specific column. + + Args: + file (Path): The path to the Excel file to read. + include_sheetname (bool): Whether to include the sheet name in the output. + sheet_name (Union[str, int, None]): The specific sheet to read from, + default is None which reads all sheets. + + Returns: + List[Document]: A list of`Document objects containing the + values from the specified column in the Excel file. + """ + import itertools + + try: + import pandas as pd + except ImportError: + raise ImportError( + "install pandas using `pip3 install pandas` to use this loader" + ) + + if sheet_name is not None: + sheet_name = ( + [sheet_name] if not isinstance(sheet_name, list) else sheet_name + ) + + dfs = pd.read_excel(file, sheet_name=sheet_name, **self._pandas_config) + sheet_names = dfs.keys() + df_sheets = [] + + for key in sheet_names: + sheet = [] + if include_sheetname: + sheet.append([key]) + sheet.extend(dfs[key].values.astype(str).tolist()) + df_sheets.append(sheet) + + text_list = list( + itertools.chain.from_iterable(df_sheets) + ) # flatten list of lists + + output = [ + Document( + text=self._row_joiner.join(" ".join(sublist) for sublist in text_list), + metadata={"source": file.stem}, + ) + ] + + return output diff --git a/knowledgehub/loaders/mathpix_loader.py b/knowledgehub/loaders/mathpix_loader.py new file mode 100644 index 0000000..cf85453 --- /dev/null +++ b/knowledgehub/loaders/mathpix_loader.py @@ -0,0 +1,175 @@ +import json +import re +import time +from pathlib import Path +from typing import Any, Dict, List + +import requests +from langchain.utils import get_from_dict_or_env +from llama_index.readers.base import BaseReader + +from kotaemon.documents import Document + +from .utils.table import parse_markdown_text_to_tables, strip_special_chars_markdown + + +# MathpixPDFLoader implementation taken largely from Daniel Gross's: +# https://gist.github.com/danielgross/3ab4104e14faccc12b49200843adab21 +class MathpixPDFReader(BaseReader): + """Load `PDF` files using `Mathpix` service.""" + + def __init__( + self, + processed_file_format: str = "md", + max_wait_time_seconds: int = 500, + should_clean_pdf: bool = True, + **kwargs: Any, + ) -> None: + """Initialize with a file path. + + Args: + processed_file_format: a format of the processed file. Default is "mmd". + max_wait_time_seconds: a maximum time to wait for the response from + the server. Default is 500. + should_clean_pdf: a flag to clean the PDF file. Default is False. + **kwargs: additional keyword arguments. + """ + self.mathpix_api_key = get_from_dict_or_env( + kwargs, "mathpix_api_key", "MATHPIX_API_KEY", default="empty" + ) + self.mathpix_api_id = get_from_dict_or_env( + kwargs, "mathpix_api_id", "MATHPIX_API_ID", default="empty" + ) + self.processed_file_format = processed_file_format + self.max_wait_time_seconds = max_wait_time_seconds + self.should_clean_pdf = should_clean_pdf + super().__init__() + + @property + def _mathpix_headers(self) -> Dict[str, str]: + return {"app_id": self.mathpix_api_id, "app_key": self.mathpix_api_key} + + @property + def url(self) -> str: + return "https://api.mathpix.com/v3/pdf" + + @property + def data(self) -> dict: + options = { + "conversion_formats": {self.processed_file_format: True}, + "enable_tables_fallback": True, + } + return {"options_json": json.dumps(options)} + + def send_pdf(self, file_path) -> str: + with open(file_path, "rb") as f: + files = {"file": f} + response = requests.post( + self.url, headers=self._mathpix_headers, files=files, data=self.data + ) + response_data = response.json() + if "pdf_id" in response_data: + pdf_id = response_data["pdf_id"] + return pdf_id + else: + raise ValueError("Unable to send PDF to Mathpix.") + + def wait_for_processing(self, pdf_id: str) -> None: + """Wait for processing to complete. + + Args: + pdf_id: a PDF id. + + Returns: None + """ + url = self.url + "/" + pdf_id + for _ in range(0, self.max_wait_time_seconds, 5): + response = requests.get(url, headers=self._mathpix_headers) + response_data = response.json() + status = response_data.get("status", None) + + if status == "completed": + return + elif status == "error": + raise ValueError("Unable to retrieve PDF from Mathpix") + else: + print(response_data) + print(url) + time.sleep(5) + raise TimeoutError + + def get_processed_pdf(self, pdf_id: str) -> str: + self.wait_for_processing(pdf_id) + url = f"{self.url}/{pdf_id}.{self.processed_file_format}" + response = requests.get(url, headers=self._mathpix_headers) + return response.content.decode("utf-8") + + def clean_pdf(self, contents: str) -> str: + """Clean the PDF file. + + Args: + contents: a PDF file contents. + + Returns: + + """ + contents = "\n".join( + [line for line in contents.split("\n") if not line.startswith("![]")] + ) + # replace \section{Title} with # Title + contents = contents.replace("\\section{", "# ") + # replace the "\" slash that Mathpix adds to escape $, %, (, etc. + + # http:// or https:// followed by anything but a closing paren + url_regex = "http[s]?://[^)]+" + markup_regex = r"\[]\(\s*({0})\s*\)".format(url_regex) + contents = ( + contents.replace(r"\$", "$") + .replace(r"\%", "%") + .replace(r"\(", "(") + .replace(r"\)", ")") + .replace("$\\begin{array}", "") + .replace("\\end{array}$", "") + .replace("\\\\", "") + .replace("\\text", "") + .replace("}", "") + .replace("{", "") + .replace("\\mathrm", "") + ) + contents = re.sub(markup_regex, "", contents) + return contents + + def load_data(self, file_path: Path, **kwargs) -> List[Document]: + if "response_content" in kwargs: + # overriding response content if specified + content = kwargs["response_content"] + else: + # call original API + pdf_id = self.send_pdf(file_path) + content = self.get_processed_pdf(pdf_id) + + if self.should_clean_pdf: + content = self.clean_pdf(content) + tables, texts = parse_markdown_text_to_tables(content) + documents = [] + for table in tables: + text = strip_special_chars_markdown(table) + metadata = { + "source": file_path.name, + "table_origin": table, + "type": "table", + } + documents.append( + Document( + text=text, + metadata=metadata, + metadata_template="", + metadata_seperator="", + ) + ) + + for text in texts: + metadata = {"source": file_path.name, "type": "text"} + documents.append(Document(text=text, metadata=metadata)) + + return documents diff --git a/knowledgehub/loaders/ocr_loader.py b/knowledgehub/loaders/ocr_loader.py new file mode 100644 index 0000000..ddad124 --- /dev/null +++ b/knowledgehub/loaders/ocr_loader.py @@ -0,0 +1,97 @@ +from pathlib import Path +from typing import List +from uuid import uuid4 + +import requests +from llama_index.readers.base import BaseReader + +from kotaemon.documents import Document + +from .utils.table import ( + extract_tables_from_csv_string, + get_table_from_ocr, + strip_special_chars_markdown, +) + +DEFAULT_OCR_ENDPOINT = "http://127.0.0.1:8000/v2/ai/infer/" + + +class OCRReader(BaseReader): + def __init__(self, endpoint: str = DEFAULT_OCR_ENDPOINT): + """Init the OCR reader with OCR endpoint (FullOCR pipeline) + + Args: + endpoint: URL to FullOCR endpoint. Defaults to OCR_ENDPOINT. + """ + super().__init__() + self.ocr_endpoint = endpoint + + def load_data( + self, + file: Path, + **kwargs, + ) -> List[Document]: + + # create input params for the requests + content = open(file, "rb") + files = {"input": content} + data = {"job_id": uuid4()} + + # init list of output documents + documents = [] + all_table_csv_list = [] + all_non_table_texts = [] + + # call the API from FullOCR endpoint + if "response_content" in kwargs: + # overriding response content if specified + results = kwargs["response_content"] + else: + # call original API + resp = requests.post(url=self.ocr_endpoint, files=files, data=data) + results = resp.json()["result"] + + for _id, each in enumerate(results): + csv_content = each["csv_string"] + table = each["json"]["table"] + ocr = each["json"]["ocr"] + + # using helper function to extract list of table texts from FullOCR output + table_texts = get_table_from_ocr(ocr, table) + # extract the formatted CSV table from specified text + csv_list, non_table_text = extract_tables_from_csv_string( + csv_content, table_texts + ) + all_table_csv_list.extend([(csv, _id) for csv in csv_list]) + all_non_table_texts.append((non_table_text, _id)) + + # create output Document with metadata from table + documents = [ + Document( + text=strip_special_chars_markdown(csv), + metadata={ + "table_origin": csv, + "type": "table", + "page_label": page_id + 1, + "source": file.name, + }, + metadata_template="", + metadata_seperator="", + ) + for csv, page_id in all_table_csv_list + ] + # create Document from non-table text + documents.extend( + [ + Document( + text=non_table_text, + metadata={ + "page_label": page_id + 1, + "source": file.name, + }, + ) + for non_table_text, page_id in all_non_table_texts + ] + ) + + return documents diff --git a/knowledgehub/loaders/utils/__init__.py b/knowledgehub/loaders/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/knowledgehub/loaders/utils/table.py b/knowledgehub/loaders/utils/table.py new file mode 100644 index 0000000..0f5d2ff --- /dev/null +++ b/knowledgehub/loaders/utils/table.py @@ -0,0 +1,335 @@ +import csv +from io import StringIO +from typing import List, Optional, Tuple + + +def check_col_conflicts( + col_a: List[str], col_b: List[str], thres: float = 0.15 +) -> bool: + """Check if 2 columns A and B has non-empty content in the same row + (to be used with merge_cols) + + Args: + col_a: column A (list of str) + col_b: column B (list of str) + thres: percentage of overlapping allowed + Returns: + if number of overlapping greater than threshold + """ + num_rows = len([cell for cell in col_a if cell]) + assert len(col_a) == len(col_b) + conflict_count = 0 + for cell_a, cell_b in zip(col_a, col_b): + if cell_a and cell_b: + conflict_count += 1 + return conflict_count > num_rows * thres + + +def merge_cols(col_a: List[str], col_b: List[str]) -> List[str]: + """Merge column A and B if they do not have conflict rows + + Args: + col_a: column A (list of str) + col_b: column B (list of str) + Returns: + merged column + """ + for r_id in range(len(col_a)): + if col_b[r_id]: + col_a[r_id] = col_a[r_id] + " " + col_b[r_id] + return col_a + + +def add_index_col(csv_rows: List[List[str]]) -> List[List[str]]: + """Add index column as the first column of the table csv_rows + + Args: + csv_rows: input table + Returns: + output table with index column + """ + new_csv_rows = [["row id"] + [""] * len(csv_rows[0])] + for r_id, row in enumerate(csv_rows): + new_csv_rows.append([str(r_id + 1)] + row) + return new_csv_rows + + +def compress_csv(csv_rows: List[List[str]]) -> List[List[str]]: + """Compress table csv_rows by merging sparse columns (merge_cols) + + Args: + csv_rows: input table + Returns: + output: compressed table + """ + csv_cols = [[r[c_id] for r in csv_rows] for c_id in range(len(csv_rows[0]))] + to_remove_col_ids = [] + last_c_id = 0 + for c_id in range(1, len(csv_cols)): + if not check_col_conflicts(csv_cols[last_c_id], csv_cols[c_id]): + to_remove_col_ids.append(c_id) + csv_cols[last_c_id] = merge_cols(csv_cols[last_c_id], csv_cols[c_id]) + else: + last_c_id = c_id + + csv_cols = [r for c_id, r in enumerate(csv_cols) if c_id not in to_remove_col_ids] + csv_rows = [[c[r_id] for c in csv_cols] for r_id in range(len(csv_cols[0]))] + return csv_rows + + +def _get_rect_iou(gt_box: List[tuple], pd_box: List[tuple], iou_type=0) -> int: + """Intersection over union on layout rectangle + + Args: + gt_box: List[tuple] + A list contains bounding box coordinates of ground truth + pd_box: List[tuple] + A list contains bounding box coordinates of prediction + iou_type: int + 0: intersection / union, normal IOU + 1: intersection / min(areas), useful when boxes are under/over-segmented + + Input format: [(x1, y1), (x2, y1), (x2, y2), (x1, y2)] + Annotation for each element in bbox: + (x1, y1) (x2, y1) + +-------+ + | | + | | + +-------+ + (x1, y2) (x2, y2) + + Returns: + Intersection over union value + """ + + assert iou_type in [0, 1], "Only support 0: origin iou, 1: intersection / min(area)" + + # determine the (x, y)-coordinates of the intersection rectangle + # gt_box: [(x1, y1), (x2, y1), (x2, y2), (x1, y2)] + # pd_box: [(x1, y1), (x2, y1), (x2, y2), (x1, y2)] + x_left = max(gt_box[0][0], pd_box[0][0]) + y_top = max(gt_box[0][1], pd_box[0][1]) + x_right = min(gt_box[2][0], pd_box[2][0]) + y_bottom = min(gt_box[2][1], pd_box[2][1]) + + # compute the area of intersection rectangle + interArea = max(0, x_right - x_left) * max(0, y_bottom - y_top) + + # compute the area of both the prediction and ground-truth + # rectangles + gt_area = (gt_box[2][0] - gt_box[0][0]) * (gt_box[2][1] - gt_box[0][1]) + pd_area = (pd_box[2][0] - pd_box[0][0]) * (pd_box[2][1] - pd_box[0][1]) + + # compute the intersection over union by taking the intersection + # area and dividing it by the sum of prediction + ground-truth + # areas - the interesection area + if iou_type == 0: + iou = interArea / float(gt_area + pd_area - interArea) + elif iou_type == 1: + iou = interArea / max(min(gt_area, pd_area), 1) + + # return the intersection over union value + return iou + + +def get_table_from_ocr(ocr_list: List[dict], table_list: List[dict]): + """Get list of text lines belong to table regions specified by table_list + + Args: + ocr_list: list of OCR output in Casia format (Flax) + table_list: list of table output in Casia format (Flax) + + Returns: + _type_: _description_ + """ + table_texts = [] + for table in table_list: + if table["type"] != "table": + continue + cur_table_texts = [] + for ocr in ocr_list: + _iou = _get_rect_iou(table["location"], ocr["location"], iou_type=1) + if _iou > 0.8: + cur_table_texts.append(ocr["text"]) + table_texts.append(cur_table_texts) + + return table_texts + + +def make_markdown_table(array: List[List[str]]) -> str: + """Convert table rows in list format to markdown string + + Args: + Python list with rows of table as lists + First element as header. + Example Input: + [["Name", "Age", "Height"], + ["Jake", 20, 5'10], + ["Mary", 21, 5'7]] + Returns: + String to put into a .md file + """ + array = compress_csv(array) + array = add_index_col(array) + markdown = "\n" + str("| ") + + for e in array[0]: + to_add = " " + str(e) + str(" |") + markdown += to_add + markdown += "\n" + + markdown += "| " + for i in range(len(array[0])): + markdown += str("--- | ") + markdown += "\n" + + for entry in array[1:]: + markdown += str("| ") + for e in entry: + to_add = str(e) + str(" | ") + markdown += to_add + markdown += "\n" + + return markdown + "\n" + + +def parse_csv_string_to_list(csv_str: str) -> List[List[str]]: + """Convert CSV string to list of rows + + Args: + csv_str: input CSV string + + Returns: + Output table in list format + """ + io = StringIO(csv_str) + csv_reader = csv.reader(io, delimiter=",") + rows = [row for row in csv_reader] + return rows + + +def format_cell(cell: str, length_limit: Optional[int] = None) -> str: + """Format cell content by remove redundant character and enforce length limit + + Args: + cell: input cell text + length_limit: limit of text length. + + Returns: + new cell text + """ + cell = cell.replace("\n", " ") + if length_limit: + cell = cell[:length_limit] + return cell + + +def extract_tables_from_csv_string( + csv_content: str, table_texts: List[List[str]] +) -> Tuple[List[str], str]: + """Extract list of table from FullOCR output + (csv_content) with the specified table_texts + + Args: + csv_content: CSV output from FullOCR pipeline + table_texts: list of table texts extracted + from get_table_from_ocr() + + Returns: + List of tables and non-text content + """ + rows = parse_csv_string_to_list(csv_content) + used_row_ids = [] + table_csv_list = [] + for table in table_texts: + cur_rows = [] + for row_id, row in enumerate(rows): + scores = [ + any(cell in cell_reference for cell in table) + for cell_reference in row + if cell_reference + ] + score = sum(scores) / len(scores) + if score > 0.5 and row_id not in used_row_ids: + used_row_ids.append(row_id) + cur_rows.append([format_cell(cell) for cell in row]) + if cur_rows: + table_csv_list.append(make_markdown_table(cur_rows)) + else: + print("table not matched", table) + + non_table_rows = [ + row for row_id, row in enumerate(rows) if row_id not in used_row_ids + ] + non_table_text = "\n".join( + " ".join(format_cell(cell) for cell in row) for row in non_table_rows + ) + return table_csv_list, non_table_text + + +def strip_special_chars_markdown(text: str) -> str: + """Strip special characters from input text in markdown table format""" + return text.replace("|", "").replace(":---:", "").replace("---", "") + + +def markdown_to_list(markdown_text: str, pad_to_max_col: Optional[bool] = True): + rows = [] + lines = markdown_text.split("\n") + markdown_lines = [line.strip() for line in lines if " | " in line] + + for row in markdown_lines: + tmp = row + # Get rid of leading and trailing '|' + if tmp.startswith("|"): + tmp = tmp[1:] + if tmp.endswith("|"): + tmp = tmp[:-1] + + # Split line and ignore column whitespace + clean_line = tmp.split("|") + if not all(c == "" for c in clean_line): + # Append clean row data to rows variable + rows.append(clean_line) + + # Get rid of syntactical sugar to indicate header (2nd row) + rows = [row for row in rows if "---" not in " ".join(row)] + max_cols = max(len(row) for row in rows) + if pad_to_max_col: + rows = [row + [""] * (max_cols - len(row)) for row in rows] + return rows + + +def parse_markdown_text_to_tables(text: str) -> Tuple[List[str], List[str]]: + """Convert markdown text to list of non-table spans and table spans + + Args: + text: input markdown text + + Returns: + list of table spans and non-table spans + """ + # init empty tables and texts list + tables = [] + texts = [] + + # split input by line break + lines = text.split("\n") + cur_table = [] + cur_text: List[str] = [] + for line in lines: + line = line.strip() + if line.startswith("|"): + if len(cur_text) > 0: + texts.append(cur_text) + cur_text = [] + cur_table.append(line) + else: + # add new table to the list + if len(cur_table) > 0: + tables.append(cur_table) + cur_table = [] + cur_text.append(line) + + table_texts = ["\n".join(table) for table in tables] + non_table_texts = ["\n".join(text) for text in texts] + return table_texts, non_table_texts diff --git a/tests/resources/dummy.xlsx b/tests/resources/dummy.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..849532c3d30285cb64430e9334736c5cd2e6304b GIT binary patch literal 9949 zcmeHtg;yNe_I2a#Zo#2(0wlN-tZ{-{65QPaK{~iQ!3hq*A-G#N5P}3JSn%NP@b%1_ z_nVo_`~HIWs@JN!YIW_is_LG7&c5edH4p+KApjYG3IG6T0dEentc>9RfH*_|fB=9B zZy@dH;AZaNX7bY8$=ub5)63qDCJzxFm@jwdkR`b2>mBA2Qb;@{Gck#_$N+qBZtT_IlUbEiEGM@jA{Gl+%bJI1 z<1G&~W0vWc2tpUSS5&l@@C1fRzu~Tp6HMAzv-lXFu5l~fO|>Tm@%@lL%mggT*2co`mRr$C|_y#sE20pmT{GUvTvEftR*`(&P;`r z&Ypdx5RxsUD#*_Y_A7=CHVJg8?weBjIuwngtRud-dL+ES+i5xNlENMAqGfm&y1xS5 z5%$>|+c0>4aGbK^&+~u`06ab-0M!0Q%gg5T_s=eHpA&2sJq0q~z#W-9kkf)@4EA30a0EO>3pQG~`C>A@JDREztzekYs zZ}+5|1k|OI|zS@W9F?Bw5ktV0;4fJS_ zW&PAt@)0z+OfUQGSf&Pdlv9Tsji8V+gjh5!P=7#KZ|TidCES#h=6*#;bt8Z7&&1IT z|CyAc9W3!ML8ZNkG$N?$8_T&$U#K1J`8Bzgrj?*|^_y%LAv$jpGrO)+nT$??dtVNf zOsEDOAO023s2qeb_uOBDpU9tqrQ2!)}mGAAD4*~!%2uo!+ zurK3f$K~nhV*AF?(e}5zRjy_4m@k0);5YGr(&vf3`7C!r%j=uAjgD5j{b7M(GDeXu zTqbXkLgV~nhbgLct6-MPVkExs1!incn)g7a-_rBXCo*1gdK6{beQHD#o8`ItrX_v` z7V}D4LV*kLGv$mQZZ8?QyR{FqO{^RQRVZMjBpf4S z=$^>68@PfaE9qqTK0A>}UrFSNnn&%aFablO7(@SaBuR_`p z1Od}>6DY^@(sJ8I=nbKQ0@#Dog5G(xAwJsQ?`haPV>dd$v}=vyxbn7Rih#jen)JFY zi!#e%#)`oapb=8ljEOTno7N}AXyJI`mvMA2MRjYjyc@f3-6y}1mly5o$xn@5xODtb zlvMma^9D^Sd*vgq;S4|34qDHL8SoJ?27aA(0Jf*|edQ+dUelXgCv(Y%0~Y2n-CV9P zBH2uotB+FSPxL8Zp9^>@)W3 z*vWy%&LRNm$t(QT_ZycpmFJZknyt8_*!s9o4V(FRw zWK0Vw%~k3rB$>3ez1 zn4L6vFs4W>pN!<`ZQ7_)LefP~Y!w#JB~oCMxYvnMIlv^KZm0> z;>_pFP=-(FIO}A0ZKN`ls<9hQUnO^3$SL2Medvfvx9fkw96}}|8~CI)y4muo!J;6A zekX1IOM?r+?~AVA6KHzX3{+yE3B0ab*F*YHMTCZ zL!yncmd=f<<;|8nRUb3fp2?Ub(r49W&{M5dr4A3%zvG(NxVQHxKfU8o+=SeYl0;sc z44;kepx#pxl;I$yuF+_|OBkF}g|YCTJPi~}N(>Krf;9Ik!1axdH0dlB z8;{M>3m3>aU~lU2Q!+FK5iD=O`1T|%+g10A3)GXgI}2s+ueRO!H<%lgpFmH_o{9Q~ zxY2|{<*5Bx5?nX((pt3+SKXv;hgdonPS}Uf4lULPAydn+nf|BCs8u}e+k}PoQ7iy} z6n4iSq21NW+}zET>-XX5Z!tbI5#*T9jSD$s+xM*YMG3{l2TPUlq0KL8-)?79@glO3 z)-{|?*mU}!SWRd*%e)Xlj@`PM5@HPY+l*S%7hy+XH59cJ)JD?VHHYLDsV#%O0ppIHK8yy1!|B5=gx zO3im~3d^5b7tb1X2^apZ{Q{Ga#RzfG6j$?kjyu*F`>NIQT;K7CYKeq^M0`L(gE+tb z;e5EN0G~v`K2yCsXQoIOei>_FEZnrsqX%n6H2z-M@lwaOxsj?rKSL<^knK{Mx-;;5 z3U=^ulN(3;`WBIHplHN|A0d{QVZOG^HhTCKlVXD+`LtN5!4BnlR2MoscDJ<$JV&<$-FI8>HV{<9GikNHKDF&y5>Yh3_2DLw=fw z8b`iC7e;r^QUR|xzu-Be=GgYC^yelEUiNYIg|8xSd+eI;&Q^!519fa~g))txQqH}5 zk0Wy;Wk=UV@6P@$k4mps)&heMO9cDXY=JFuLPs94j?&fblDYER!*n;@oUFl_=3Ao8 z?bL#%X4Qb!2VppycJVO8br2em>ce+pbFD*WC=r_4u;YhFR5SLF>YOfC{M>2gI5=pd za#V(-!_T1uM-yO!T*Y$s{vwiKqT|&=zh8g`9^kW>1PgY6Z!ciVFF^6POTcoqIs7^W za#($?HlhSaqXcn$R4-zeGFpV!OBo4{8HsFovPg27bksCDgm76>l z69buJV_W#;Fnxsge~b+!2#ni_dcHP{?|AfV!HgeGkC`!6-{8VZhnFXzjY1Qi5hJ*R5Z!tQ1X{jPQ$*mXPm=Qg zA|=Hoo+p=HBd0$+QkXH3V$}O1zSH$=Co?~vS5Bu&G^*4ys+oq}`g((nak+OeELwrb z{`xZHy;SdIkjx;dddf;lXID>W!~KPU&Ui|cQ6O^eoNopjZ}*=VbYv5I(Hn@MH^ zSx?#__mQVr>6P!xao3ZbZkq`j)c5*6g(e6khLH2!d;QLaiDEb_K5%l8pG5Z1K}&nK_2zc2%XbL+DS_)n~vd>he{T_nf-pJ+^8QI5S7Di|2OcZk_@AXQq$N zHCjm~Iqt~`)e|TyK7w9X%o|mDAf<7)tOfD+zEZ0)8*(L->1A!1BqT_ID%TL_OAnv` z)FdJp6hxXotfG-iGI-)KqGWotnvqMcjHvY>Vy3bdN|vHOPBD)y*UOC)%ZAkdKvL?P zkNdF}j>pV9cj6eJy&NENdkm?AEa!+mtnQti?HxDHeb-NBYN90NSF^G`4HA=*eqp8N1G`q7>U$c3GEbjjbwrx2(=~Ul&=bs%;ERa%CwbpLCGKH# z&FFoLRlFR8x#n^E#HjCi0?1{3qB)Y3H(u0ZGFnZ<)rCpH?9DQs9Bv-8wYLDH1F}bz zm)(s6oZCLQMKn0@bEa!T8JsFeLJ7Mu|4P--7L(RaP2vWwW*e^ewlkl3&ir+I`%AI5 z)!`eZaWrz%y+t2LcW$pm%82U(KOK}+c$P?)KaT3tPr+_@pO#8J)%aE!UE0>zVmpMK z_WtI+IthiSE2fdgu3hcz9+oYo!p5C#DB=>G8oX4SK(vcN05*NoZASf4c$~XOspV?S z3{vCWC65p0#m4HV15jLd6+1%seW5+C%w#$Z&IejBd~dRYWS@&aXWmyWj_003%6rNg zt#Ih{pO(TEPI`W98O{+r@S4ZA1~dnNAr)7LNkSPKLtmTWEeQ_9b*In9M4I2PGU$!! zrD~0sYpp#Veo9yNxvouVE;r}2C7W58p(r&!IYDC0XdBM=5j!4884Xfv;UXbCL|;6| zJCfyn(v|BVx0AhIh9nTVVmtk+)=4v_J_?fNn+mlOm*Ta;N_IzZW#yUDTpjrk5EK7o zdjF-bO5=g>$eQSL72&Ln+MhN>OoZ~AYlTkFu#H&L@@&uBd>S>XZa-=+nj7J()mBOM zeE7no?jBddh0=}T|3a#2PfC}Mik)2XenJbxRjC9wscjsnsk6jHSJ9^g$w!lK*rH$MY=5)1m!PEk_3kZ8#86J-^-)M$~RPVO)*W@$ogW` z9F4+MR)3l^c(<&YFxP!)iW6nXn_LmvDVU>S!gq~LXxjL+QI!|SBou1puz}7HK} zRFLdXA?VbyZzhtq63@5j5CsGk$HuLGGhDsXitH5ARj3tg@)0M`@j`L?dPs*_Q*Eq` zOi2Jog0eB0ZVJ!;`jbowWV!i03#fHdD=Frq8|AoOP%S~f(k6=`^EeUJeSK}6yQ zohEs8m)_!|fF(I{zT_2=Ru#WauB%hem`5T;3}LjP*lQ4?&rI=JOr&1_Dpw&ylj2^8 z?fcH&VacZMy|nxj(I)XsO_qAL)vxLFz?%sQD4%^7u{W@e9IwOMRYm{7r?8sJjqP=# znoZEXlp2;|u}$`(wR~b@cS3C&Vou+dniu9k|cBe?N3Zv+hS82`E+F2 zIeFd*noRbcZ@g>%(b7g;mf^ijALq98Neg+zrcRTM@6)~{?Y294utnoE%bCsMTgS28 zkm${o_(LjNr?EU@~0>R)K*j_1|Q=s~apDxc;Wi>$OH4)}G^bkZcR%wz1vRY|Mug zylRgLK$>_HSRheVFEiJ7BA2^ep80}nP?&I*e|Etboo{;=5$fs&9BKf+YMit4iHFi& zkMN&jg$`P?3AE(3yjCm{5JBV4t5su6+$DT`o93e#MJ{co(3HT}FFe2UZ4W}7Ft8`k zKC5PfD*k4K3qk)Ed`T4-OtSM{hGa4;&p29mN** ziSVKhzq?FkE#odqa0o!HZ0wB~&q%?6oYUI|F)=&wy?vE;o!G*iSOONAI2!Aidhnmk zN>T*N^Zb09Khcul4=o*s6#6f=Pn(g*9UO*qLfChVO7Ljs(9=Y*D4Lp+$ z-D1*{5-fD{NnxpXrCj`}uCE ztE6YL)*e{awXY2nj#9rJh4le_Ro>#L3lVqP^+)_{vyDlC`a>!bQDw*`2l9smfMI*V zpyS@+SRDUHxb{39xQd1-3Z^WkhM(BXfI7Qacj8$d{)RaZBCjL(4ef~tyXIyQ_M$6+ zhqM$swp`Kk)}>lDbD=OoYRJ}wP>_*jZiS#@u5}l+{WH*UXkEW*-G<&1?{BZ3o)6HI z`_y^Woc%c7?RQBV1p~eAZ*w>N<$4c|fhD_6B8~zg7%eyr%>K^xg`f813=u&hlTYoL{>D-UE*`3^01B!PG9{AM~<%?P6}G>E>eXVEH@CGPR6U z=ha9%Ollv;&Wwjch3X`XYRv`@+GhPEP_&>0-1;P*GdSwbLhh_e-8h*7#o&Zh!jgqp zK~awOpC+>yNNf6rX1Fw>hk}QvVxzZhp2% z$_7Bz8Ty$M*a|j80aN-lI?m1`C10QSC)Id^bt*Goo32T5KmV9`!6pY094c|#~O>m0LQK8yfapQRcD-wYt%FQxJG6Cf>y zEE<+b8HLd&D<*mIS&ce|L-NA%thUjZzPpO(hdPEV!wYZya6tW=&Qyarfl(w|9>QWNY6M(zO$UwUe15V%D6XH?R{x@b_x$Gj3ggt_(%b4Ot*+?%U_7K6^@=Ord; z()0)TclFmI<11HB8k8HS0`^5jq+WRN(#$7s!vPu(9CeZ?V{z{?Xy($5u8w=RQTYtWD7cRi zRH6T~xzHH*sAiHE#Gz}GCUIikI)c@N&3=v_J}ht8o{S!Di{s9j4O*>zmoH#A)e_gO zHS}gd3nI}V?$P+RN90_iHlx$DNO-U{_{z@5Gm5zpQI^LrVC$Y}g4|;NZHMsJ#XV_{ zi+JpjMURU$v2^)vak~58*Q&p=YN4ZaR}ofXbcK~8@nGdhGe=W37e^;oE>lMr^FJEi z|Eog6!cA0y38@rF8|H#EBf*^8)SNCyD-5YdBo#OhEi9tcyg@WmrrvoaV-akWa6k>8}w7!}r z$Z*a7wD}8a8g6U=55&Ji;Tk52{;8Ul=HA6-!5okb7TR(D>VU7Eoc`y3Fvt7j$V{kl zSm4GDxrBd*66m8Ohz0J-B_&je#ALDQ^6&@|(vx9Hpy2{9J~h61PF8nje@7>%5Juma z)v~zge|LTC_2ccrYNP{NIdW2yV- zZUA^#1ySsVth&*p7MaXO()klXW^#%frulIbO{*PcQ6Usn)D%w8(bKzxUgGX#wd~-0 zS_(=_j)yAi9d}6TfljMLmxeEPH+e;zF-s>I)w>fS3zG)&@)c8c+(rB|Q@*Ce=9RUV z?4N77nN9UrG9->J!A(e0SoR;4lr-uEY$fw!^?1as?Y7u`)X;=7!Jk>lH{z;W8fbS+ zDez^zXT_;6I&oA-LyJ>6XCLu1$x&)>AeI9)&2is40>R$~zPH zk5h%Li}rSjuCUtzC=V!4&sB>v9*(kanShP-tE7u$m-H3AL(9OR#+q#6{#tE3#hdW8 z*;piJ5J7YUZ`#a|eXj5BwZV4Eir=i8V0-3zj?2xmy7JLwR!S9Ya{lGgaPS;3Rq~%V z68(D$|2_VPZAEIJzZ>}bmWO`>e;ZR_Jo(E8h+l!fwt@eIw!!vR{L&Qu75w+!)SplQ zzzqF&@c*Y%^{bs<8y0_BO2z!YhxkYP;#VubmNx&iQiuDym0t^;zZ&>;LH4HsF<2Yr zZ_Be^p}&gFKcQI^|APK1J%6?E_r&@q9soFf0{fo7rrBTNe-Dd)g}c%I1^!2nR0AQw TW)}cJhy4OznOu(Hx2yjLw5o;@ literal 0 HcmV?d00001 diff --git a/tests/resources/fullocr_sample_output.json b/tests/resources/fullocr_sample_output.json new file mode 100644 index 0000000..ce0f546 --- /dev/null +++ b/tests/resources/fullocr_sample_output.json @@ -0,0 +1 @@ +[{"csv_string": "5年ごと配当付特定状態保障定期保険特約条項,目次,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\nこの特約の概要,第33条5年ごと配当付透増定期保険または5年ごと利,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n差配当付透増定期保険に付加した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第1条特約保険金の支払,第34条,5年ごと配当付養老保険または5年ごと利差配,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第2条,特約保険金の支払に関する補則,当付養老保険に付加した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第3条特約保険金の究責事由に該当した場合の取扱,第35条,5年ごと配当付終身保険に5年ごと配当付年金,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第4条,\"特約保険金の請求,支払時期および支払場所\",支払移行特約等を付加した場合または5年ごと,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第5条特約の保険料払込の究除,利差配当付終身保険に5年ごと利差配当付年金,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第6条,特約の締結,支払移行特約等を付加した場合の特約の取扱,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第7条,特約の責任開始期,第36条保険料払込期間が終身の5年ごと配当付終身保,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第8条,特約の保険期間および保険料払込期間,険または保険料払込期間が終身の5年ごと利差,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第9条,特約の保険料の払込,配当付終身保険に付加した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第10条,殖予期間中の保険事故と保険料の取扱,第37条,5年ごと配当付更新型終身移行保険または5年,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n5年ごと配当付特定状態保障定期保険特約,第11条,第12条,第13条,第14条,第15条,第16条,第17条,第18条,第19条,第20条賃権者等により特約が解約される場合の取扱,第21条,第22条,第23条,第24条,第25条,特約の返還金,特約の失効,特約の復活,告知義務,告知義務違反による解除,特約を解除できない場合,重大事由による解除,特約の解約,特約の消滅とみなす場合,特約保険金額の減額,特約の更新,特約の契約者配当金,主契約の内容変更に伴う特約の取扱,主契約について保険料の自動貸付の規定を適用,第38条,第40条5年ごと配当付終身区擦保険または5年ごと利,第41条,第39条,第42条,約の取扱,特則,場合の特則,年ごと利差配当付介護年金終身保障保険に付加,型)に付加した場合の特則,ごと利差配当付更新型終身移行保険に付加した,ごと利差配当付更新型終身移行保険に5年ごと,配当付年金支払移行特約等を付加した場合の特,差配当付終身区擦保険に付加した場合の特則,転換後契約または変更後契約に付加した場合の,した場合の特則,5年ごと配当付介護年金保険(解約返還金なし,5年ごと配当付更新型終身移行保険または5年,5年ごと配当付介護年金終身保障保険または5\nする場合の取扱,\"第43条転換特約,部分保障変更特約または象険内保障\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第26条主契約を払済保険に変更する場合の取扱,承継特約を付加した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第27条,法令等の改正等に伴う特約障害保険金および特,第44条,特別条件を付けた場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n約介護保険金の支払事由に関する規定の変更,第45条契約日が平成22年3月1日以前の主契約に付加,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第28条,管式裁判所,した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第29条,契約内容の登録,第46条契約日が平成24年10月1日以前の主契約に付加,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第30条主約熟の規定の準用,\"した場合の特約特定失痛保険金,特約障害保険\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第31条,5年ごと配当付定期保険または5年ごと利差配,金および特約介護保険金の代理請求,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n当付定期保険に付加した場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n第32条,5年ごと配当付生存給付金付定期保険または5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n年ごと利差配当付生存給付金付定期保険に付加,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\nした場合の特則,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n5年ごと配当付特定状態保障定期保険特約条項,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n(2015年5月21日改正),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n(この特約の概要),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n\"この特約は,つぎの給付を行うことを主な内容とするものです.なお,特約処止保険金額,特約特定戻痛保険金額,特\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n約障害保険金額および特約介護保険金額は同額です.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n,給付の内容,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n特約列芒保険金,被保険者がこの特約の保険期間中に残芒したときに支払います.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n特約特定戻府保険金,\"被保険者ガこの特約の保険期間中に特定の床府(悪性新生物(ガん),急性心筋便寒または膨\n率中)により所定の状態に該当したときに支払います.\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n特約障害保険金,\"被保険者がこの特約の保険期間中に傷害もしくは失痛により所定の身体障害の状態に該当し\nたとき,または不慮の事故により所定の身体障害の状態に該当したときに支払います.\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n特約介護保険金,\"被保険者がこの特約の保険期間中に傷害または狭府により所定の要介護状態に該当したとき\nに支払います.\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n", "image": "0eaee49fcfb44b9fb1a0697e3396bbc0.jpg", "json": {"ocr": [{"location": [[371, 101], [1171, 101], [1171, 154], [371, 154]], "type": "textline", "text": "5年ごと配当付特定状態保障定期保険特約条項", "confidence_by_character": [0.8752241134643555, 0.9180009961128235, 0.8060332536697388, 0.9081112742424011, 0.9735583662986755, 0.9540423154830933, 0.930789053440094, 0.9212653040885925, 0.901830792427063, 0.915596604347229, 0.9761945009231567, 0.8835175633430481, 0.9629063606262207, 0.936747133731842, 0.9499691128730774, 0.8892968893051147, 0.9490401744842529, 0.9074514508247375, 0.9236599802970886, 0.9264629483222961, 0.9148908853530884], "confidence_by_field": 0.8060332536697388, "original_text": "5年ごと配当付特定状態保障定期保険特約条項"}, {"location": [[1221, 101], [1295, 101], [1295, 154], [1221, 154]], "type": "textline", "text": "目次", "confidence_by_character": [0.9049121737480164, 0.9617973566055298], "confidence_by_field": 0.9049121737480164, "original_text": "目次"}, {"location": [[153, 172], [362, 172], [362, 201], [153, 201]], "type": "textline", "text": "この特約の概要", "confidence_by_character": [0.9207532405853271, 0.9168199300765991, 0.9361215829849243, 0.9004212617874146, 0.9235758185386658, 0.9552847743034363, 0.9458813071250916], "confidence_by_field": 0.9004212617874146, "original_text": "この特約の概要"}, {"location": [[875, 173], [1502, 173], [1502, 202], [875, 202]], "type": "textline", "text": "第33条5年ごと配当付透増定期保険または5年ごと利", "confidence_by_character": [0.8693004250526428, 0.9147552251815796, 0.9088352918624878, 0.9022184610366821, 0.95071941614151, 0.919037938117981, 0.9287973642349243, 0.8205192685127258, 0.9071849584579468, 0.9721552133560181, 0.9575420022010803, 0.9221553802490234, 0.028973452746868134, 0.9587507843971252, 0.910034716129303, 0.952285647392273, 0.893140971660614, 0.9694401025772095, 0.8983591198921204, 0.9071130752563477, 0.9104353785514832, 0.9087055325508118, 0.9337477684020996, 0.8323150873184204, 0.906653642654419], "confidence_by_field": 0.028973452746868134, "original_text": "第33条5年ごと配当付透増定期保険または5年ごと利"}, {"location": [[147, 275], [225, 275], [225, 303], [147, 303]], "type": "textline", "text": "第2条", "confidence_by_character": [0.8815317749977112, 0.9047736525535583, 0.9386942386627197], "confidence_by_field": 0.8815317749977112, "original_text": "第2条"}, {"location": [[149, 243], [448, 243], [448, 268], [149, 268]], "type": "textline", "text": "第1条特約保険金の支払", "confidence_by_character": [0.8919358253479004, 0.9172921180725098, 0.9479259252548218, 0.8856605887413025, 0.9105709195137024, 0.8801921606063843, 0.9501432776451111, 0.930204451084137, 0.9196552634239197, 0.8655545711517334, 0.8998269438743591], "confidence_by_field": 0.8655545711517334, "original_text": "第1条特約保険金の支払"}, {"location": [[978, 209], [1476, 209], [1476, 234], [978, 234]], "type": "textline", "text": "差配当付透増定期保険に付加した場合の特則", "confidence_by_character": [0.9572571516036987, 0.9597287774085999, 0.9572752714157104, 0.9132214188575745, 0.020463407039642334, 0.956734836101532, 0.9131730794906616, 0.9515217542648315, 0.8679433465003967, 0.9674875140190125, 0.9037891030311584, 0.9030055403709412, 0.8960955142974854, 0.9172298312187195, 0.9291820526123047, 0.9219492673873901, 0.9155651330947876, 0.9160270094871521, 0.9412064552307129, 0.7507423162460327], "confidence_by_field": 0.020463407039642334, "original_text": "差配当付透増定期保険に付加した場合の特則"}, {"location": [[983, 242], [1503, 242], [1503, 268], [983, 268]], "type": "textline", "text": "5年ごと配当付養老保険または5年ごと利差配", "confidence_by_character": [0.9090136289596558, 0.9282564520835876, 0.774875819683075, 0.900109589099884, 0.9615494012832642, 0.9508274793624878, 0.9203636050224304, 0.8466991782188416, 0.8930246233940125, 0.9021272659301758, 0.9695780277252197, 0.8931969404220581, 0.9132159352302551, 0.9144824743270874, 0.9038774967193604, 0.9282662868499756, 0.8095517158508301, 0.9059193730354309, 0.8997194170951843, 0.9593263864517212, 0.9313068985939026], "confidence_by_field": 0.774875819683075, "original_text": "5年ごと配当付養老保険または5年ごと利差配"}, {"location": [[149, 346], [223, 346], [223, 371], [149, 371]], "type": "textline", "text": "第4条", "confidence_by_character": [0.8818029165267944, 0.9097715020179749, 0.9383568167686462], "confidence_by_field": 0.8818029165267944, "original_text": "第4条"}, {"location": [[149, 311], [747, 311], [747, 336], [149, 336]], "type": "textline", "text": "第3条特約保険金の究責事由に該当した場合の取扱", "confidence_by_character": [0.8575880527496338, 0.913281261920929, 0.9598702192306519, 0.9028207659721375, 0.907419741153717, 0.8829077482223511, 0.9671272039413452, 0.9300912022590637, 0.9235896468162537, 0.01471525989472866, 0.5233569741249084, 0.8858270049095154, 0.9418032765388489, 0.8986204862594604, 0.8043962121009827, 0.9304822087287903, 0.9025992155075073, 0.9327733516693115, 0.9220141172409058, 0.9192368388175964, 0.9179456830024719, 0.9032196998596191, 0.9407483339309692], "confidence_by_field": 0.01471525989472866, "original_text": "第3条特約保険金の究責事由に該当した場合の取扱"}, {"location": [[249, 277], [594, 277], [594, 302], [249, 302]], "type": "textline", "text": "特約保険金の支払に関する補則", "confidence_by_character": [0.9272218942642212, 0.910590648651123, 0.9103271961212158, 0.9467078447341919, 0.9218971133232117, 0.9194494485855103, 0.8641957640647888, 0.9255075454711914, 0.9045881628990173, 0.9187286496162415, 0.9321529269218445, 0.9260364770889282, 0.9374707341194153, 0.47216564416885376], "confidence_by_field": 0.47216564416885376, "original_text": "特約保険金の支払に関する補則"}, {"location": [[875, 242], [953, 242], [953, 270], [875, 270]], "type": "textline", "text": "第34条", "confidence_by_character": [0.8629468679428101, 0.9222632050514221, 0.9169781804084778, 0.946367084980011], "confidence_by_field": 0.8629468679428101, "original_text": "第34条"}, {"location": [[875, 310], [953, 310], [953, 338], [875, 338]], "type": "textline", "text": "第35条", "confidence_by_character": [0.856647253036499, 0.9249042868614197, 0.917639434337616, 0.945309042930603], "confidence_by_field": 0.856647253036499, "original_text": "第35条"}, {"location": [[979, 278], [1376, 278], [1376, 303], [979, 303]], "type": "textline", "text": "当付養老保険に付加した場合の特則", "confidence_by_character": [0.9517056941986084, 0.9182573556900024, 0.8787758350372314, 0.8850828409194946, 0.9043493270874023, 0.9577826261520386, 0.8911072015762329, 0.8956527709960938, 0.9015092253684998, 0.9163932800292969, 0.9257457256317139, 0.9286613464355469, 0.9162951707839966, 0.9133617281913757, 0.9364294409751892, 0.7583118677139282], "confidence_by_field": 0.7583118677139282, "original_text": "当付養老保険に付加した場合の特則"}, {"location": [[150, 380], [524, 380], [524, 405], [150, 405]], "type": "textline", "text": "第5条特約の保険料払込の究除", "confidence_by_character": [0.87785404920578, 0.915722131729126, 0.9520642757415771, 0.8998405933380127, 0.9059406518936157, 0.9099327325820923, 0.9027079939842224, 0.9663650393486023, 0.9048923254013062, 0.9261669516563416, 0.9402793049812317, 0.9162154197692871, 0.022457364946603775, 0.9739407300949097], "confidence_by_field": 0.022457364946603775, "original_text": "第5条特約の保険料払込の究除"}, {"location": [[249, 346], [749, 346], [749, 371], [249, 371]], "type": "textline", "text": "特約保険金の請求,支払時期および支払場所", "confidence_by_character": [0.924742579460144, 0.9223702549934387, 0.9039918780326843, 0.963794469833374, 0.9176731109619141, 0.9118756055831909, 0.7989771366119385, 0.8052927851676941, 0.9300240874290466, 0.9011457562446594, 0.9165230989456177, 0.9399480819702148, 0.9498633742332458, 0.92963707447052, 0.934708297252655, 0.9410641193389893, 0.8449218273162842, 0.9313191771507263, 0.9146836996078491, 0.8994645476341248], "confidence_by_field": 0.7989771366119385, "original_text": "特約保険金の請求、支払時期および支払場所"}, {"location": [[977, 345], [1501, 345], [1501, 371], [977, 371]], "type": "textline", "text": "支払移行特約等を付加した場合または5年ごと", "confidence_by_character": [0.8490334153175354, 0.9246217012405396, 0.9212656021118164, 0.9075478315353394, 0.9211483597755432, 0.8917032480239868, 0.9586302638053894, 0.9067994952201843, 0.9001989364624023, 0.9166433215141296, 0.9242784380912781, 0.9327855110168457, 0.9200156331062317, 0.9107427000999451, 0.9068506360054016, 0.912408709526062, 0.9133784174919128, 0.9009749889373779, 0.9360888600349426, 0.8216061592102051, 0.9104800820350647], "confidence_by_field": 0.8216061592102051, "original_text": "支払移行特約等を付加した場合または5年ごと"}, {"location": [[983, 311], [1503, 311], [1503, 337], [983, 337]], "type": "textline", "text": "5年ごと配当付終身保険に5年ごと配当付年金", "confidence_by_character": [0.9085766077041626, 0.9301635026931763, 0.7546346187591553, 0.9005756378173828, 0.9655745029449463, 0.9516271948814392, 0.9293519854545593, 0.8813113570213318, 0.7940091490745544, 0.907256007194519, 0.9525731801986694, 0.8976776003837585, 0.9059346914291382, 0.9314678907394409, 0.7943513989448547, 0.9051244258880615, 0.9654779434204102, 0.9528942108154297, 0.90767502784729, 0.9296995997428894, 0.9122655391693115], "confidence_by_field": 0.7546346187591553, "original_text": "5年ごと配当付終身保険に5年ごと配当付年金"}, {"location": [[978, 379], [1503, 379], [1503, 405], [978, 405]], "type": "textline", "text": "利差配当付終身保険に5年ごと利差配当付年金", "confidence_by_character": [0.8949381709098816, 0.9585289359092712, 0.9626858830451965, 0.9496809840202332, 0.9147164821624756, 0.8747259378433228, 0.7760825753211975, 0.9032920002937317, 0.9645631313323975, 0.9058918952941895, 0.909928023815155, 0.932939350605011, 0.7713739275932312, 0.9003125429153442, 0.899181604385376, 0.965961754322052, 0.958705484867096, 0.9520692825317383, 0.902826726436615, 0.9288342595100403, 0.9132479429244995], "confidence_by_field": 0.7713739275932312, "original_text": "利差配当付終身保険に5年ごと利差配当付年金"}, {"location": [[149, 516], [223, 516], [223, 541], [149, 541]], "type": "textline", "text": "第9条", "confidence_by_character": [0.8722193241119385, 0.9048416614532471, 0.9399932622909546], "confidence_by_field": 0.8722193241119385, "original_text": "第9条"}, {"location": [[149, 482], [223, 482], [223, 507], [149, 507]], "type": "textline", "text": "第8条", "confidence_by_character": [0.8791223168373108, 0.9156664609909058, 0.937491774559021], "confidence_by_field": 0.8791223168373108, "original_text": "第8条"}, {"location": [[149, 448], [223, 448], [223, 473], [149, 473]], "type": "textline", "text": "第7条", "confidence_by_character": [0.8867859840393066, 0.9310581088066101, 0.9450150728225708], "confidence_by_field": 0.8867859840393066, "original_text": "第7条"}, {"location": [[149, 414], [223, 414], [223, 439], [149, 439]], "type": "textline", "text": "第6条", "confidence_by_character": [0.8888082504272461, 0.9187314510345459, 0.9320793747901917], "confidence_by_field": 0.8888082504272461, "original_text": "第6条"}, {"location": [[249, 482], [673, 482], [673, 507], [249, 507]], "type": "textline", "text": "特約の保険期間および保険料払込期間", "confidence_by_character": [0.929987370967865, 0.902838945388794, 0.9170098304748535, 0.9299942851066589, 0.9660325050354004, 0.9544824361801147, 0.9370205402374268, 0.9222961068153381, 0.9328851699829102, 0.918926477432251, 0.9273973107337952, 0.9629533290863037, 0.908978283405304, 0.9517918825149536, 0.9278237819671631, 0.94557785987854, 0.9301663041114807], "confidence_by_field": 0.902838945388794, "original_text": "特約の保険期間および保険料払込期間"}, {"location": [[249, 448], [448, 448], [448, 473], [249, 473]], "type": "textline", "text": "特約の責任開始期", "confidence_by_character": [0.9358059167861938, 0.9051874279975891, 0.9159144759178162, 0.6359134316444397, 0.882123589515686, 0.9443196058273315, 0.9487804174423218, 0.945320188999176], "confidence_by_field": 0.6359134316444397, "original_text": "特約の責任開始期"}, {"location": [[249, 414], [374, 414], [374, 439], [249, 439]], "type": "textline", "text": "特約の締結", "confidence_by_character": [0.935887336730957, 0.8953381180763245, 0.8957674503326416, 0.980628252029419, 0.9271141886711121], "confidence_by_field": 0.8953381180763245, "original_text": "特約の締結"}, {"location": [[878, 447], [1503, 447], [1503, 473], [878, 473]], "type": "textline", "text": "第36条保険料払込期間が終身の5年ごと配当付終身保", "confidence_by_character": [0.856951117515564, 0.9232838153839111, 0.9152987599372864, 0.9453592300415039, 0.9489859938621521, 0.9648228883743286, 0.9058244824409485, 0.9524154663085938, 0.9202435612678528, 0.9394053816795349, 0.9303869605064392, 0.7895163297653198, 0.9068495035171509, 0.7435716986656189, 0.9021921753883362, 0.9103466868400574, 0.9296382069587708, 0.825805127620697, 0.9052068591117859, 0.966537594795227, 0.9537220001220703, 0.9256082773208618, 0.6560894846916199, 0.7812817692756653, 0.8944864273071289], "confidence_by_field": 0.6560894846916199, "original_text": "第36条保険料払込期間が終身の5年ごと配当付終身保"}, {"location": [[978, 414], [1475, 414], [1475, 439], [978, 439]], "type": "textline", "text": "支払移行特約等を付加した場合の特約の取扱", "confidence_by_character": [0.8487943410873413, 0.9269588589668274, 0.908717930316925, 0.9002123475074768, 0.9203619956970215, 0.8921422958374023, 0.9639379978179932, 0.9063107371330261, 0.9028376936912537, 0.9235636591911316, 0.924254298210144, 0.9297820329666138, 0.92684006690979, 0.9080612659454346, 0.910812258720398, 0.9334138631820679, 0.9047603607177734, 0.9080738425254822, 0.8982142806053162, 0.9516634941101074], "confidence_by_field": 0.8487943410873413, "original_text": "支払移行特約等を付加した場合の特約の取扱"}, {"location": [[978, 482], [1502, 482], [1502, 508], [978, 508]], "type": "textline", "text": "険または保険料払込期間が終身の5年ごと利差", "confidence_by_character": [0.9354110360145569, 0.910319983959198, 0.9070867896080017, 0.916976273059845, 0.9061718583106995, 0.9654894471168518, 0.9109400510787964, 0.9502810835838318, 0.9238433837890625, 0.9482390284538269, 0.936744749546051, 0.9153497815132141, 0.9049196839332581, 0.7494382262229919, 0.9046004414558411, 0.915131151676178, 0.9361326694488525, 0.8116768598556519, 0.9027944207191467, 0.8969099521636963, 0.9720936417579651], "confidence_by_field": 0.7494382262229919, "original_text": "険または保険料払込期間が終身の5年ごと利差"}, {"location": [[149, 619], [223, 619], [223, 644], [149, 644]], "type": "textline", "text": "第12条", "confidence_by_character": [0.874218225479126, 0.9185834527015686, 0.913716197013855, 0.9358128905296326], "confidence_by_field": 0.874218225479126, "original_text": "第12条"}, {"location": [[149, 585], [223, 585], [223, 610], [149, 610]], "type": "textline", "text": "第11条", "confidence_by_character": [0.8816955089569092, 0.9294875860214233, 0.9101250767707825, 0.9166582226753235], "confidence_by_field": 0.8816955089569092, "original_text": "第11条"}, {"location": [[149, 551], [223, 551], [223, 576], [149, 576]], "type": "textline", "text": "第10条", "confidence_by_character": [0.875640869140625, 0.9228379726409912, 0.919588029384613, 0.9415530562400818], "confidence_by_field": 0.875640869140625, "original_text": "第10条"}, {"location": [[249, 516], [474, 516], [474, 541], [249, 541]], "type": "textline", "text": "特約の保険料の払込", "confidence_by_character": [0.9327252507209778, 0.8957237601280212, 0.9142048954963684, 0.9383014440536499, 0.9442307949066162, 0.9172698259353638, 0.913428544998169, 0.9404541850090027, 0.9324570298194885], "confidence_by_field": 0.8957237601280212, "original_text": "特約の保険料の払込"}, {"location": [[977, 516], [1404, 516], [1404, 542], [977, 542]], "type": "textline", "text": "配当付終身保険に付加した場合の特則", "confidence_by_character": [0.9631235003471375, 0.9584261775016785, 0.9211889505386353, 0.8163237571716309, 0.8039345145225525, 0.9107048511505127, 0.9561652541160583, 0.9041426777839661, 0.8968284726142883, 0.9017277956008911, 0.9195645451545715, 0.9260575175285339, 0.9294940829277039, 0.9146363139152527, 0.9212647080421448, 0.9404090642929077, 0.7966598272323608], "confidence_by_field": 0.7966598272323608, "original_text": "配当付終身保険に付加した場合の特則"}, {"location": [[249, 619], [374, 619], [374, 644], [249, 644]], "type": "textline", "text": "特約の復活", "confidence_by_character": [0.9371598958969116, 0.9009162783622742, 0.9029978513717651, 0.8828870058059692, 0.7536472082138062], "confidence_by_field": 0.7536472082138062, "original_text": "特約の復活"}, {"location": [[249, 585], [374, 585], [374, 610], [249, 610]], "type": "textline", "text": "特約の失効", "confidence_by_character": [0.9395380020141602, 0.9014537930488586, 0.9088959693908691, 0.8678945899009705, 0.9748729467391968], "confidence_by_field": 0.8678945899009705, "original_text": "特約の失効"}, {"location": [[249, 551], [672, 551], [672, 576], [249, 576]], "type": "textline", "text": "殖予期間中の保険事故と保険料の取扱", "confidence_by_character": [0.01690944842994213, 0.9345130920410156, 0.9619191288948059, 0.9519250392913818, 0.9235353469848633, 0.9290069937705994, 0.8992505073547363, 0.9751347899436951, 0.8812102675437927, 0.9151143431663513, 0.9025055766105652, 0.9152945876121521, 0.9631280303001404, 0.9185959100723267, 0.9058010578155518, 0.9017528295516968, 0.9619731903076172], "confidence_by_field": 0.01690944842994213, "original_text": "殖予期間中の保険事故と保険料の取扱"}, {"location": [[875, 550], [953, 550], [953, 578], [875, 578]], "type": "textline", "text": "第37条", "confidence_by_character": [0.8549067378044128, 0.9231404662132263, 0.9255517721176147, 0.9436611533164978], "confidence_by_field": 0.8549067378044128, "original_text": "第37条"}, {"location": [[977, 619], [1105, 619], [1105, 644], [977, 644]], "type": "textline", "text": "場合の特則", "confidence_by_character": [0.9338546395301819, 0.9162588119506836, 0.9130421876907349, 0.9410572648048401, 0.5996571779251099], "confidence_by_field": 0.5996571779251099, "original_text": "場合の特則"}, {"location": [[978, 584], [1502, 584], [1502, 610], [978, 610]], "type": "textline", "text": "ごと利差配当付更新型終身移行保険に付加した", "confidence_by_character": [0.8897974491119385, 0.8956024050712585, 0.8930601477622986, 0.9591547250747681, 0.9554070830345154, 0.9515587687492371, 0.9180623888969421, 0.9196032285690308, 0.8887079954147339, 0.9291194677352905, 0.906222403049469, 0.7244056463241577, 0.9194166660308838, 0.9294903874397278, 0.8790777921676636, 0.9476670026779175, 0.9061055183410645, 0.8868741989135742, 0.9028992652893066, 0.9228830337524414, 0.9279013872146606], "confidence_by_field": 0.7244056463241577, "original_text": "ごと利差配当付更新型終身移行保険に付加した"}, {"location": [[983, 550], [1503, 550], [1503, 576], [983, 576]], "type": "textline", "text": "5年ごと配当付更新型終身移行保険または5年", "confidence_by_character": [0.9101317524909973, 0.930510401725769, 0.7704535126686096, 0.898239254951477, 0.9629513025283813, 0.9523261785507202, 0.9278034567832947, 0.9266495108604431, 0.8867848515510559, 0.9296162724494934, 0.801244854927063, 0.7249056696891785, 0.9394544959068298, 0.929334819316864, 0.8716062903404236, 0.9600571393966675, 0.9030630588531494, 0.9027411937713623, 0.9128386378288269, 0.9020838141441345, 0.94010990858078], "confidence_by_field": 0.7249056696891785, "original_text": "5年ごと配当付更新型終身移行保険または5年"}, {"location": [[149, 756], [223, 756], [223, 781], [149, 781]], "type": "textline", "text": "第16条", "confidence_by_character": [0.8897693157196045, 0.9227436184883118, 0.9185901880264282, 0.9278833270072937], "confidence_by_field": 0.8897693157196045, "original_text": "第16条"}, {"location": [[149, 721], [223, 721], [223, 746], [149, 746]], "type": "textline", "text": "第15条", "confidence_by_character": [0.8739645481109619, 0.9235934615135193, 0.9125742316246033, 0.9352698922157288], "confidence_by_field": 0.8739645481109619, "original_text": "第15条"}, {"location": [[149, 687], [223, 687], [223, 712], [149, 712]], "type": "textline", "text": "第14条", "confidence_by_character": [0.8823069334030151, 0.9233427047729492, 0.9152125120162964, 0.9392187595367432], "confidence_by_field": 0.8823069334030151, "original_text": "第14条"}, {"location": [[149, 653], [223, 653], [223, 678], [149, 678]], "type": "textline", "text": "第13条", "confidence_by_character": [0.8776877522468567, 0.9208556413650513, 0.9208583831787109, 0.9419329166412354], "confidence_by_field": 0.8776877522468567, "original_text": "第13条"}, {"location": [[249, 721], [524, 721], [524, 746], [249, 746]], "type": "textline", "text": "特約を解除できない場合", "confidence_by_character": [0.9339070320129395, 0.8953264355659485, 0.9107374548912048, 0.9782548546791077, 0.9672141671180725, 0.912795901298523, 0.924019455909729, 0.9359913468360901, 0.915536642074585, 0.9339556097984314, 0.9044701457023621], "confidence_by_field": 0.8953264355659485, "original_text": "特約を解除できない場合"}, {"location": [[249, 687], [524, 687], [524, 712], [249, 712]], "type": "textline", "text": "告知義務違反による解除", "confidence_by_character": [0.9158294200897217, 0.9625129103660583, 0.9331508278846741, 0.8947343826293945, 0.9615756273269653, 0.9377507567405701, 0.9080555438995361, 0.9392531514167786, 0.9280281662940979, 0.9810645580291748, 0.9649791121482849], "confidence_by_field": 0.8947343826293945, "original_text": "告知義務違反による解除"}, {"location": [[249, 653], [349, 653], [349, 678], [249, 678]], "type": "textline", "text": "告知義務", "confidence_by_character": [0.8910427689552307, 0.9618214964866638, 0.9369240403175354, 0.9179896712303162], "confidence_by_field": 0.8910427689552307, "original_text": "告知義務"}, {"location": [[874, 650], [955, 650], [955, 680], [874, 680]], "type": "textline", "text": "第38条", "confidence_by_character": [0.8580847978591919, 0.9177832007408142, 0.9209944605827332, 0.9407318234443665], "confidence_by_field": 0.8580847978591919, "original_text": "第38条"}, {"location": [[978, 686], [1500, 686], [1500, 713], [978, 713]], "type": "textline", "text": "ごと利差配当付更新型終身移行保険に5年ごと", "confidence_by_character": [0.8748213052749634, 0.8914934396743774, 0.8917585015296936, 0.9592093229293823, 0.954934298992157, 0.9521711468696594, 0.9182281494140625, 0.9207869172096252, 0.8856181502342224, 0.9358416795730591, 0.8853924870491028, 0.727912187576294, 0.951426088809967, 0.9294186234474182, 0.8811972141265869, 0.9575940370559692, 0.894546389579773, 0.9096099138259888, 0.9397035837173462, 0.8366109728813171, 0.9089996814727783], "confidence_by_field": 0.727912187576294, "original_text": "ごと利差配当付更新型終身移行保険に5年ごと"}, {"location": [[983, 652], [1503, 652], [1503, 678], [983, 678]], "type": "textline", "text": "5年ごと配当付更新型終身移行保険または5年", "confidence_by_character": [0.9101317524909973, 0.930510401725769, 0.7704535126686096, 0.898239254951477, 0.9629513025283813, 0.9523261785507202, 0.9278034567832947, 0.9266495108604431, 0.8867848515510559, 0.9296162724494934, 0.801244854927063, 0.7249056696891785, 0.9394544959068298, 0.929334819316864, 0.8716062903404236, 0.9600571393966675, 0.9030630588531494, 0.9027411937713623, 0.9128386378288269, 0.9020838141441345, 0.94010990858078], "confidence_by_field": 0.7249056696891785, "original_text": "5年ごと配当付更新型終身移行保険または5年"}, {"location": [[150, 858], [223, 858], [223, 883], [150, 883]], "type": "textline", "text": "第19条", "confidence_by_character": [0.8674812912940979, 0.9263416528701782, 0.914147138595581, 0.9367015361785889], "confidence_by_field": 0.8674812912940979, "original_text": "第19条"}, {"location": [[150, 824], [223, 824], [223, 849], [150, 849]], "type": "textline", "text": "第18条", "confidence_by_character": [0.8677461743354797, 0.9208893775939941, 0.9180935621261597, 0.9451056122779846], "confidence_by_field": 0.8677461743354797, "original_text": "第18条"}, {"location": [[150, 790], [223, 790], [223, 815], [150, 815]], "type": "textline", "text": "第17条", "confidence_by_character": [0.8667882084846497, 0.9197700023651123, 0.9224062561988831, 0.9422363638877869], "confidence_by_field": 0.8667882084846497, "original_text": "第17条"}, {"location": [[247, 824], [399, 824], [399, 849], [247, 849]], "type": "textline", "text": "特約の返還金", "confidence_by_character": [0.9387227892875671, 0.8955815434455872, 0.9071516394615173, 0.9762327671051025, 0.8786014318466187, 0.9295074939727783], "confidence_by_field": 0.8786014318466187, "original_text": "特約の返還金"}, {"location": [[249, 790], [374, 790], [374, 815], [249, 815]], "type": "textline", "text": "特約の解約", "confidence_by_character": [0.9340276718139648, 0.8982842564582825, 0.8966683149337769, 0.9788622856140137, 0.9090636968612671], "confidence_by_field": 0.8966683149337769, "original_text": "特約の解約"}, {"location": [[249, 756], [474, 756], [474, 781], [249, 781]], "type": "textline", "text": "重大事由による解除", "confidence_by_character": [0.9394333362579346, 0.9178244471549988, 0.8938457369804382, 0.9581311941146851, 0.9159615635871887, 0.9368283152580261, 0.9251613020896912, 0.9811983108520508, 0.9736555218696594], "confidence_by_field": 0.8938457369804382, "original_text": "重大事由による解除"}, {"location": [[877, 790], [952, 790], [952, 815], [877, 815]], "type": "textline", "text": "第39条", "confidence_by_character": [0.858923614025116, 0.9173120856285095, 0.9210683703422546, 0.9397528767585754], "confidence_by_field": 0.858923614025116, "original_text": "第39条"}, {"location": [[974, 755], [1079, 755], [1079, 782], [974, 782]], "type": "textline", "text": "約の取扱", "confidence_by_character": [0.9226648807525635, 0.9017975330352783, 0.8963115215301514, 0.9632481932640076], "confidence_by_field": 0.8963115215301514, "original_text": "約の取扱"}, {"location": [[978, 722], [1503, 722], [1503, 747], [978, 747]], "type": "textline", "text": "配当付年金支払移行特約等を付加した場合の特", "confidence_by_character": [0.9557974338531494, 0.9561759233474731, 0.8710780739784241, 0.926688015460968, 0.8984931707382202, 0.8092069029808044, 0.927161455154419, 0.9254440665245056, 0.9116566777229309, 0.9160909056663513, 0.8865383863449097, 0.9527129530906677, 0.9110621809959412, 0.9113829135894775, 0.9068349003791809, 0.9246659874916077, 0.925355851650238, 0.9125232100486755, 0.9136617183685303, 0.9171769022941589, 0.9256765842437744], "confidence_by_field": 0.8092069029808044, "original_text": "配当付年金支払移行特約等を付加した場合の特"}, {"location": [[983, 789], [1497, 789], [1497, 815], [983, 815]], "type": "textline", "text": "5年ごと配当付介護年金終身保障保険または5", "confidence_by_character": [0.9097341895103455, 0.9289673566818237, 0.7649416327476501, 0.9026296138763428, 0.9638285040855408, 0.9512383937835693, 0.9224939346313477, 0.05300742760300636, 0.554846465587616, 0.9338638782501221, 0.9156504273414612, 0.7861849069595337, 0.7729796171188354, 0.9017215371131897, 0.9645764827728271, 0.8839823603630066, 0.9503963589668274, 0.9035466313362122, 0.9119851589202881, 0.9117963910102844, 0.9077648520469666], "confidence_by_field": 0.05300742760300636, "original_text": "5年ごと配当付介護年金終身保障保険または5"}, {"location": [[249, 858], [524, 858], [524, 883], [249, 883]], "type": "textline", "text": "特約の消滅とみなす場合", "confidence_by_character": [0.9331656694412231, 0.8918615579605103, 0.8917036056518555, 0.9553696513175964, 0.4998754560947418, 0.8917355537414551, 0.901486337184906, 0.932518482208252, 0.9086443185806274, 0.911240816116333, 0.9094666242599487], "confidence_by_field": 0.4998754560947418, "original_text": "特約の消滅とみなす場合"}, {"location": [[977, 823], [1503, 823], [1503, 849], [977, 849]], "type": "textline", "text": "年ごと利差配当付介護年金終身保障保険に付加", "confidence_by_character": [0.9325643181800842, 0.827153742313385, 0.8995615839958191, 0.8953425884246826, 0.953769862651825, 0.9541361927986145, 0.9508886933326721, 0.9214958548545837, 0.04975656419992447, 0.5635004639625549, 0.9308508038520813, 0.9162673354148865, 0.9105128645896912, 0.7466254830360413, 0.8902319073677063, 0.9639813303947449, 0.9033263921737671, 0.9593909978866577, 0.902840793132782, 0.91472989320755, 0.8803582191467285], "confidence_by_field": 0.04975656419992447, "original_text": "年ごと利差配当付介護年金終身保障保険に付加"}, {"location": [[980, 858], [1153, 858], [1153, 883], [980, 883]], "type": "textline", "text": "した場合の特則", "confidence_by_character": [0.918428361415863, 0.9329966306686401, 0.9228556156158447, 0.9137165546417236, 0.9220527410507202, 0.9376353621482849, 0.559773862361908], "confidence_by_field": 0.559773862361908, "original_text": "した場合の特則"}, {"location": [[150, 927], [223, 927], [223, 952], [150, 952]], "type": "textline", "text": "第21条", "confidence_by_character": [0.8732945322990417, 0.9156890511512756, 0.9210081696510315, 0.9361998438835144], "confidence_by_field": 0.8732945322990417, "original_text": "第21条"}, {"location": [[150, 892], [747, 892], [747, 917], [150, 917]], "type": "textline", "text": "第20条賃権者等により特約が解約される場合の取扱", "confidence_by_character": [0.8754616379737854, 0.9175537824630737, 0.9177849888801575, 0.9498703479766846, 0.08151616901159286, 0.6170535683631897, 0.9439314007759094, 0.9601082801818848, 0.9078274369239807, 0.9333502054214478, 0.9220239520072937, 0.9282874464988708, 0.9082467555999756, 0.90257328748703, 0.9826854467391968, 0.9195079803466797, 0.9424663186073303, 0.9084932804107666, 0.9175734519958496, 0.928380012512207, 0.9104299545288086, 0.9275315403938293, 0.9084083437919617, 0.9431256055831909], "confidence_by_field": 0.08151616901159286, "original_text": "第20条賃権者等により特約が解約される場合の取扱"}, {"location": [[875, 891], [1502, 891], [1502, 920], [875, 920]], "type": "textline", "text": "第40条5年ごと配当付終身区擦保険または5年ごと利", "confidence_by_character": [0.8638995289802551, 0.9271052479743958, 0.9203494787216187, 0.9467397332191467, 0.9130235314369202, 0.9293546676635742, 0.8021914958953857, 0.9013620615005493, 0.9689282774925232, 0.9601190090179443, 0.9245452284812927, 0.9053276777267456, 0.7792914509773254, 0.020734649151563644, 0.021894333884119987, 0.8902580738067627, 0.9610168933868408, 0.9023932814598083, 0.91583251953125, 0.9092221260070801, 0.9088626503944397, 0.932708740234375, 0.8230494260787964, 0.900436520576477, 0.9169465899467468], "confidence_by_field": 0.020734649151563644, "original_text": "第40条5年ごと配当付終身区擦保険または5年ごと利"}, {"location": [[249, 961], [375, 961], [375, 986], [249, 986]], "type": "textline", "text": "特約の更新", "confidence_by_character": [0.9344006776809692, 0.9007125496864319, 0.909359335899353, 0.9120285511016846, 0.8862316608428955], "confidence_by_field": 0.8862316608428955, "original_text": "特約の更新"}, {"location": [[249, 927], [474, 927], [474, 952], [249, 952]], "type": "textline", "text": "特約保険金額の減額", "confidence_by_character": [0.9296575784683228, 0.9069977402687073, 0.920254647731781, 0.9426993131637573, 0.917083203792572, 0.5580964088439941, 0.8862975835800171, 0.970245897769928, 0.44822371006011963], "confidence_by_field": 0.44822371006011963, "original_text": "特約保険金額の減額"}, {"location": [[150, 1063], [223, 1063], [223, 1088], [150, 1088]], "type": "textline", "text": "第25条", "confidence_by_character": [0.867120087146759, 0.918279767036438, 0.9145321249961853, 0.9386563897132874], "confidence_by_field": 0.867120087146759, "original_text": "第25条"}, {"location": [[150, 1029], [223, 1029], [223, 1054], [150, 1054]], "type": "textline", "text": "第24条", "confidence_by_character": [0.8801662921905518, 0.9209663271903992, 0.9141175150871277, 0.9414362907409668], "confidence_by_field": 0.8801662921905518, "original_text": "第24条"}, {"location": [[150, 995], [223, 995], [223, 1020], [150, 1020]], "type": "textline", "text": "第23条", "confidence_by_character": [0.871174693107605, 0.9171115159988403, 0.9212365746498108, 0.9434618353843689], "confidence_by_field": 0.871174693107605, "original_text": "第23条"}, {"location": [[150, 961], [223, 961], [223, 986], [150, 986]], "type": "textline", "text": "第22条", "confidence_by_character": [0.8730372190475464, 0.9208168983459473, 0.9072824120521545, 0.9160538911819458], "confidence_by_field": 0.8730372190475464, "original_text": "第22条"}, {"location": [[249, 1029], [648, 1029], [648, 1054], [249, 1054]], "type": "textline", "text": "主契約の内容変更に伴う特約の取扱", "confidence_by_character": [0.9073285460472107, 0.5501973628997803, 0.9121661186218262, 0.9118828177452087, 0.9121673107147217, 0.9463503956794739, 0.9346415400505066, 0.9315657615661621, 0.8976268172264099, 0.9628174901008606, 0.9255752563476562, 0.9264412522315979, 0.8806240558624268, 0.9048317074775696, 0.8870399594306946, 0.9629514217376709], "confidence_by_field": 0.5501973628997803, "original_text": "主契約の内容変更に伴う特約の取扱"}, {"location": [[249, 995], [474, 995], [474, 1020], [249, 1020]], "type": "textline", "text": "特約の契約者配当金", "confidence_by_character": [0.9365869164466858, 0.9060165882110596, 0.9116089344024658, 0.6202230453491211, 0.9083569049835205, 0.9344064593315125, 0.9633216857910156, 0.9576243162155151, 0.906009316444397], "confidence_by_field": 0.6202230453491211, "original_text": "特約の契約者配当金"}, {"location": [[875, 960], [955, 960], [955, 988], [875, 988]], "type": "textline", "text": "第41条", "confidence_by_character": [0.8642861843109131, 0.9258908629417419, 0.9198993444442749, 0.9415292739868164], "confidence_by_field": 0.8642861843109131, "original_text": "第41条"}, {"location": [[978, 927], [1473, 927], [1473, 952], [978, 952]], "type": "textline", "text": "差配当付終身区擦保険に付加した場合の特則", "confidence_by_character": [0.9567934274673462, 0.9628760814666748, 0.9591139554977417, 0.9176546931266785, 0.8705376386642456, 0.790281355381012, 0.021446872502565384, 0.015256326645612717, 0.8734897971153259, 0.9667787551879883, 0.9006117582321167, 0.9073164463043213, 0.8957260847091675, 0.9164812564849854, 0.9310643672943115, 0.9221144318580627, 0.9157333374023438, 0.9152392745018005, 0.945107638835907, 0.4485674202442169], "confidence_by_field": 0.015256326645612717, "original_text": "差配当付終身区擦保険に付加した場合の特則"}, {"location": [[877, 1029], [953, 1029], [953, 1054], [877, 1054]], "type": "textline", "text": "第42条", "confidence_by_character": [0.8630426526069641, 0.9242226481437683, 0.919802188873291, 0.9405655860900879], "confidence_by_field": 0.8630426526069641, "original_text": "第42条"}, {"location": [[977, 995], [1278, 995], [1278, 1020], [977, 1020]], "type": "textline", "text": "型)に付加した場合の特則", "confidence_by_character": [0.943030834197998, 0.9120270013809204, 0.8827322125434875, 0.8880023956298828, 0.9024660587310791, 0.9179003834724426, 0.9327256679534912, 0.9209775328636169, 0.9171760678291321, 0.923229992389679, 0.9461360573768616, 0.6900131106376648], "confidence_by_field": 0.6900131106376648, "original_text": "型)に付加した場合の特則"}, {"location": [[982, 960], [1501, 960], [1501, 986], [982, 986]], "type": "textline", "text": "5年ごと配当付介護年金保険(解約返還金なし", "confidence_by_character": [0.9099395275115967, 0.9310123324394226, 0.7538168430328369, 0.9042404890060425, 0.9633727669715881, 0.9495694637298584, 0.9215404987335205, 0.049448393285274506, 0.5825034379959106, 0.9395717978477478, 0.9153565168380737, 0.8832346796989441, 0.9497947096824646, 0.8981853127479553, 0.9812948703765869, 0.8986351490020752, 0.9810189008712769, 0.7702130079269409, 0.9167701005935669, 0.9165775775909424, 0.8989450335502625], "confidence_by_field": 0.049448393285274506, "original_text": "5年ごと配当付介護年金保険(解約返還金なし"}, {"location": [[974, 1061], [1031, 1061], [1031, 1092], [974, 1092]], "type": "textline", "text": "特則", "confidence_by_character": [0.9393376111984253, 0.5730540752410889], "confidence_by_field": 0.5730540752410889, "original_text": "特則"}, {"location": [[978, 1029], [1503, 1029], [1503, 1054], [978, 1054]], "type": "textline", "text": "転換後契約または変更後契約に付加した場合の", "confidence_by_character": [0.9287636280059814, 0.9671027064323425, 0.909500002861023, 0.5790442824363708, 0.8927920460700989, 0.9041510820388794, 0.9023916125297546, 0.9207839369773865, 0.9382246136665344, 0.9450823664665222, 0.9274224042892456, 0.5504088401794434, 0.8985072374343872, 0.8858240842819214, 0.8958080410957336, 0.9002816081047058, 0.9221077561378479, 0.9298520088195801, 0.9190980792045593, 0.919366717338562, 0.9247328042984009], "confidence_by_field": 0.5504088401794434, "original_text": "転換後契約または変更後契約に付加した場合の"}, {"location": [[150, 1166], [223, 1166], [223, 1191], [150, 1191]], "type": "textline", "text": "第27条", "confidence_by_character": [0.8678544163703918, 0.9179744124412537, 0.9261839985847473, 0.9382674098014832], "confidence_by_field": 0.8678544163703918, "original_text": "第27条"}, {"location": [[150, 1132], [697, 1132], [697, 1157], [150, 1157]], "type": "textline", "text": "第26条主契約を払済保険に変更する場合の取扱", "confidence_by_character": [0.8939542174339294, 0.9198793768882751, 0.9134927988052368, 0.9359741806983948, 0.8901450037956238, 0.6057522296905518, 0.9044673442840576, 0.9124254584312439, 0.930323600769043, 0.9309510588645935, 0.9004552960395813, 0.9505661129951477, 0.912645161151886, 0.9508876204490662, 0.9455186128616333, 0.908775806427002, 0.9292646646499634, 0.929639458656311, 0.9081265926361084, 0.9110080003738403, 0.9166085720062256, 0.9471167922019958], "confidence_by_field": 0.6057522296905518, "original_text": "第26条主契約を払済保険に変更する場合の取扱"}, {"location": [[250, 1097], [422, 1097], [422, 1122], [250, 1122]], "type": "textline", "text": "する場合の取扱", "confidence_by_character": [0.921761155128479, 0.9279546737670898, 0.937720537185669, 0.9006053805351257, 0.926827609539032, 0.9104186296463013, 0.9368639588356018], "confidence_by_field": 0.9006053805351257, "original_text": "する場合の取扱"}, {"location": [[250, 1063], [777, 1063], [777, 1088], [250, 1088]], "type": "textline", "text": "主契約について保険料の自動貸付の規定を適用", "confidence_by_character": [0.9059158563613892, 0.5896322727203369, 0.9170176386833191, 0.9055406451225281, 0.9348037242889404, 0.9367810487747192, 0.9243550300598145, 0.9438439011573792, 0.9731897711753845, 0.9283785820007324, 0.9260208606719971, 0.9172176122665405, 0.9538863301277161, 0.753494918346405, 0.9186835885047913, 0.912277340888977, 0.9404165744781494, 0.9316394329071045, 0.9233580231666565, 0.9210093021392822, 0.90081787109375], "confidence_by_field": 0.5896322727203369, "original_text": "主契約について保険料の自動貸付の規定を適用"}, {"location": [[877, 1096], [1503, 1096], [1503, 1125], [877, 1125]], "type": "textline", "text": "第43条転換特約,部分保障変更特約または象険内保障", "confidence_by_character": [0.8668478727340698, 0.9232645630836487, 0.9215018153190613, 0.9577506184577942, 0.9317748546600342, 0.9447078704833984, 0.9189818501472473, 0.9175987839698792, 0.9520357847213745, 0.9351522922515869, 0.9299507737159729, 0.8861199021339417, 0.9720659255981445, 0.9428765773773193, 0.9390987157821655, 0.9151200652122498, 0.9041242003440857, 0.9000465869903564, 0.9036409258842468, 0.9208642244338989, 0.006129184737801552, 0.01921810582280159, 0.9012644290924072, 0.8821589946746826, 0.9838458299636841], "confidence_by_field": 0.006129184737801552, "original_text": "第43条転換特約、部分保障変更特約または象険内保障"}, {"location": [[150, 1234], [223, 1234], [223, 1259], [150, 1259]], "type": "textline", "text": "第28条", "confidence_by_character": [0.8697536587715149, 0.9184809923171997, 0.9135773777961731, 0.9437804222106934], "confidence_by_field": 0.8697536587715149, "original_text": "第28条"}, {"location": [[247, 1200], [748, 1200], [748, 1225], [247, 1225]], "type": "textline", "text": "約介護保険金の支払事由に関する規定の変更", "confidence_by_character": [0.9178115725517273, 0.04631047323346138, 0.582678496837616, 0.9194926619529724, 0.9423314332962036, 0.9246231317520142, 0.9167875647544861, 0.865500271320343, 0.9084512591362, 0.8963760733604431, 0.9326947331428528, 0.9074602723121643, 0.9408284425735474, 0.9303242564201355, 0.9253848195075989, 0.9358056783676147, 0.9244590401649475, 0.9217894077301025, 0.9649951457977295, 0.9404147863388062], "confidence_by_field": 0.04631047323346138, "original_text": "約介護保険金の支払事由に関する規定の変更"}, {"location": [[249, 1166], [779, 1166], [779, 1191], [249, 1191]], "type": "textline", "text": "法令等の改正等に伴う特約障害保険金および特", "confidence_by_character": [0.913314938545227, 0.7720173001289368, 0.9514465928077698, 0.9200588464736938, 0.9753125905990601, 0.9304403066635132, 0.9537243247032166, 0.9081989526748657, 0.9699485898017883, 0.9247265458106995, 0.921270489692688, 0.8947799801826477, 0.9563371539115906, 0.9382519721984863, 0.9062286615371704, 0.9566046595573425, 0.9150952100753784, 0.9246917963027954, 0.9243097305297852, 0.9166957139968872, 0.9257226586341858], "confidence_by_field": 0.7720173001289368, "original_text": "法令等の改正等に伴う特約障害保険金および特"}, {"location": [[875, 1165], [953, 1165], [953, 1193], [875, 1193]], "type": "textline", "text": "第44条", "confidence_by_character": [0.8752461671829224, 0.9211283326148987, 0.9131024479866028, 0.9138756394386292], "confidence_by_field": 0.8752461671829224, "original_text": "第44条"}, {"location": [[977, 1132], [1326, 1132], [1326, 1157], [977, 1157]], "type": "textline", "text": "承継特約を付加した場合の特則", "confidence_by_character": [0.12598863244056702, 0.7690794467926025, 0.9231091737747192, 0.893078625202179, 0.9043062329292297, 0.889370858669281, 0.9159713983535767, 0.9217708706855774, 0.9223772883415222, 0.9151168465614319, 0.9083866477012634, 0.9115604758262634, 0.9320206642150879, 0.7818130254745483], "confidence_by_field": 0.12598863244056702, "original_text": "承継特約を付加した場合の特則"}, {"location": [[247, 1231], [374, 1231], [374, 1259], [247, 1259]], "type": "textline", "text": "管式裁判所", "confidence_by_character": [0.884757399559021, 0.006504670716822147, 0.5192247629165649, 0.922855794429779, 0.9042141437530518], "confidence_by_field": 0.006504670716822147, "original_text": "管式裁判所"}, {"location": [[877, 1198], [1503, 1198], [1503, 1227], [877, 1227]], "type": "textline", "text": "第45条契約日が平成22年3月1日以前の主契約に付加", "confidence_by_character": [0.8612416386604309, 0.9220291376113892, 0.9108976721763611, 0.9577784538269043, 0.5751687288284302, 0.9067193269729614, 0.8922832012176514, 0.6880807280540466, 0.9287721514701843, 0.9376795887947083, 0.9124239087104797, 0.9111138582229614, 0.9149746298789978, 0.9377529621124268, 0.9268583059310913, 0.9203538298606873, 0.9130100011825562, 0.915985107421875, 0.9538917541503906, 0.930136501789093, 0.9148142337799072, 0.9457476735115051, 0.6468859314918518, 0.8945560455322266, 0.8806583285331726, 0.9098016619682312], "confidence_by_field": 0.5751687288284302, "original_text": "第45条契約日が平成22年3月1日以前の主契約に付加"}, {"location": [[977, 1166], [1301, 1166], [1301, 1191], [977, 1191]], "type": "textline", "text": "特別条件を付けた場合の特則", "confidence_by_character": [0.9299773573875427, 0.8645996451377869, 0.9234211444854736, 0.9211705327033997, 0.9079990386962891, 0.9058296084403992, 0.9424565434455872, 0.9111286997795105, 0.9191665649414062, 0.9050615429878235, 0.9175902009010315, 0.93827885389328, 0.7861749529838562], "confidence_by_field": 0.7861749529838562, "original_text": "特別条件を付けた場合の特則"}, {"location": [[149, 1268], [223, 1268], [223, 1293], [149, 1293]], "type": "textline", "text": "第29条", "confidence_by_character": [0.8828006982803345, 0.9167554974555969, 0.9154154658317566, 0.9352101683616638], "confidence_by_field": 0.8828006982803345, "original_text": "第29条"}, {"location": [[150, 1337], [223, 1337], [223, 1362], [150, 1362]], "type": "textline", "text": "第31条", "confidence_by_character": [0.8475448489189148, 0.9180569648742676, 0.9217804074287415, 0.9418050050735474], "confidence_by_field": 0.8475448489189148, "original_text": "第31条"}, {"location": [[150, 1302], [473, 1302], [473, 1327], [150, 1327]], "type": "textline", "text": "第30条主約熟の規定の準用", "confidence_by_character": [0.8607192039489746, 0.9237439036369324, 0.9179984927177429, 0.9550725221633911, 0.9150668382644653, 0.9269620776176453, 0.15086185932159424, 0.9156390428543091, 0.9327136278152466, 0.9147053360939026, 0.922813892364502, 0.9213554859161377, 0.9156465530395508], "confidence_by_field": 0.15086185932159424, "original_text": "第30条主約熟の規定の準用"}, {"location": [[249, 1268], [424, 1268], [424, 1293], [249, 1293]], "type": "textline", "text": "契約内容の登録", "confidence_by_character": [0.6235865354537964, 0.9082087874412537, 0.9102834463119507, 0.9587555527687073, 0.9176670908927917, 0.9665047526359558, 0.8977402448654175], "confidence_by_field": 0.6235865354537964, "original_text": "契約内容の登録"}, {"location": [[875, 1268], [1503, 1268], [1503, 1297], [875, 1297]], "type": "textline", "text": "第46条契約日が平成24年10月1日以前の主契約に付加", "confidence_by_character": [0.8820505142211914, 0.9256573915481567, 0.9142093658447266, 0.9489108324050903, 0.6065117120742798, 0.9055954813957214, 0.8888301253318787, 0.6052836775779724, 0.9275842308998108, 0.9341217875480652, 0.9219068288803101, 0.9183618426322937, 0.9381446242332458, 0.9214349389076233, 0.9093073010444641, 0.9139578938484192, 0.9041072130203247, 0.9077453017234802, 0.9561907649040222, 0.9311302304267883, 0.9135613441467285, 0.9476614594459534, 0.6553272604942322, 0.8997658491134644, 0.8811689615249634, 0.9083835482597351, 0.9021162986755371], "confidence_by_field": 0.6052836775779724, "original_text": "第46条契約日が平成24年10月1日以前の主契約に付加"}, {"location": [[981, 1234], [1152, 1234], [1152, 1259], [981, 1259]], "type": "textline", "text": "した場合の特則", "confidence_by_character": [0.9169736504554749, 0.9310203790664673, 0.9205493330955505, 0.9115638732910156, 0.9200991988182068, 0.9418222308158875, 0.59309983253479], "confidence_by_field": 0.59309983253479, "original_text": "した場合の特則"}, {"location": [[150, 1405], [225, 1405], [225, 1430], [150, 1430]], "type": "textline", "text": "第32条", "confidence_by_character": [0.8461113572120667, 0.9173445701599121, 0.9200630784034729, 0.9410394430160522], "confidence_by_field": 0.8461113572120667, "original_text": "第32条"}, {"location": [[250, 1371], [649, 1371], [649, 1396], [250, 1396]], "type": "textline", "text": "当付定期保険に付加した場合の特則", "confidence_by_character": [0.9528664946556091, 0.9232556223869324, 0.9028862714767456, 0.9506037831306458, 0.898647665977478, 0.9522331953048706, 0.8893529176712036, 0.8926607370376587, 0.905602753162384, 0.9177399277687073, 0.9224271774291992, 0.9282695055007935, 0.9131327271461487, 0.9153146743774414, 0.9344227313995361, 0.768792450428009], "confidence_by_field": 0.768792450428009, "original_text": "当付定期保険に付加した場合の特則"}, {"location": [[255, 1336], [779, 1336], [779, 1362], [255, 1362]], "type": "textline", "text": "5年ごと配当付定期保険または5年ごと利差配", "confidence_by_character": [0.909423828125, 0.9275743961334229, 0.7704424262046814, 0.90207839012146, 0.9624909162521362, 0.9504491090774536, 0.9329248070716858, 0.9013547897338867, 0.9558912515640259, 0.8843719959259033, 0.9724781513214111, 0.884297251701355, 0.9150540828704834, 0.9144039154052734, 0.9043635725975037, 0.9283965826034546, 0.8016037940979004, 0.9071802496910095, 0.8994458317756653, 0.9585456848144531, 0.9326324462890625], "confidence_by_field": 0.7704424262046814, "original_text": "5年ごと配当付定期保険または5年ごと利差配"}, {"location": [[977, 1337], [1377, 1337], [1377, 1362], [977, 1362]], "type": "textline", "text": "金および特約介護保険金の代理請求", "confidence_by_character": [0.8959949016571045, 0.9188438653945923, 0.9187567234039307, 0.9232320189476013, 0.9158383011817932, 0.8870857357978821, 0.050715453922748566, 0.4815220534801483, 0.9150400757789612, 0.962329089641571, 0.9297206401824951, 0.9125044941902161, 0.9251006245613098, 0.9216645956039429, 0.86443030834198, 0.8252451419830322], "confidence_by_field": 0.050715453922748566, "original_text": "金および特約介護保険金の代理請求"}, {"location": [[981, 1303], [1503, 1303], [1503, 1328], [981, 1328]], "type": "textline", "text": "した場合の特約特定失痛保険金,特約障害保険", "confidence_by_character": [0.9119914770126343, 0.9250417351722717, 0.9208656549453735, 0.9076619148254395, 0.919116199016571, 0.9347373843193054, 0.9063600897789001, 0.9183734059333801, 0.8900191783905029, 0.01578402891755104, 0.011067025363445282, 0.8984877467155457, 0.9332543611526489, 0.9056805372238159, 0.9384752511978149, 0.9464638829231262, 0.9135785698890686, 0.9523858428001404, 0.9395767450332642, 0.9207606911659241, 0.9586538076400757], "confidence_by_field": 0.011067025363445282, "original_text": "した場合の特約特定失痛保険金、特約障害保険"}, {"location": [[249, 1438], [778, 1438], [778, 1464], [249, 1464]], "type": "textline", "text": "年ごと利差配当付生存給付金付定期保険に付加", "confidence_by_character": [0.9312723278999329, 0.8279141783714294, 0.89922034740448, 0.8941429853439331, 0.9409021139144897, 0.9534345269203186, 0.9540234804153442, 0.9282636046409607, 0.9096453189849854, 0.9363198280334473, 0.9298288226127625, 0.9222391247749329, 0.9205233454704285, 0.9301968216896057, 0.9118116497993469, 0.9496570825576782, 0.9060971736907959, 0.9651727676391602, 0.9016106724739075, 0.9139735102653503, 0.8750019669532776], "confidence_by_field": 0.8279141783714294, "original_text": "年ごと利差配当付生存給付金付定期保険に付加"}, {"location": [[255, 1405], [773, 1405], [773, 1430], [255, 1430]], "type": "textline", "text": "5年ごと配当付生存給付金付定期保険または5", "confidence_by_character": [0.9082164764404297, 0.9282986521720886, 0.788849413394928, 0.902145504951477, 0.9623479247093201, 0.9566009640693665, 0.9266325235366821, 0.9144512414932251, 0.9419137835502625, 0.9382954239845276, 0.913281261920929, 0.9239380359649658, 0.9258730411529541, 0.9110222458839417, 0.9431561231613159, 0.8865470290184021, 0.9591617584228516, 0.897476315498352, 0.9092484712600708, 0.9096624851226807, 0.9046098589897156], "confidence_by_field": 0.788849413394928, "original_text": "5年ごと配当付生存給付金付定期保険または5"}, {"location": [[252, 1473], [423, 1473], [423, 1498], [252, 1498]], "type": "textline", "text": "した場合の特則", "confidence_by_character": [0.9186272025108337, 0.9333980679512024, 0.9235391020774841, 0.9132767915725708, 0.9211415648460388, 0.9380267262458801, 0.5787245631217957], "confidence_by_field": 0.5787245631217957, "original_text": "した場合の特則"}, {"location": [[428, 1605], [1229, 1605], [1229, 1658], [428, 1658]], "type": "textline", "text": "5年ごと配当付特定状態保障定期保険特約条項", "confidence_by_character": [0.9038661122322083, 0.9171741008758545, 0.8207727074623108, 0.9094153046607971, 0.9712363481521606, 0.9527550339698792, 0.9319595694541931, 0.9220607280731201, 0.9047126770019531, 0.9199965596199036, 0.9777767658233643, 0.8796557784080505, 0.9683645367622375, 0.9349537491798401, 0.9498459100723267, 0.8837748765945435, 0.9500846266746521, 0.9057825803756714, 0.9233282804489136, 0.9268670082092285, 0.9145678281784058], "confidence_by_field": 0.8207727074623108, "original_text": "5年ごと配当付特定状態保障定期保険特約条項"}, {"location": [[169, 1710], [404, 1710], [404, 1739], [169, 1739]], "type": "textline", "text": "(この特約の概要)", "confidence_by_character": [0.9122493267059326, 0.9132888317108154, 0.9138780236244202, 0.934287965297699, 0.8837992548942566, 0.9170113205909729, 0.9526069164276123, 0.9584120512008667, 0.908276379108429], "confidence_by_field": 0.8837992548942566, "original_text": "(この特約の概要)"}, {"location": [[1216, 1679], [1458, 1679], [1458, 1704], [1216, 1704]], "type": "textline", "text": "(2015年5月21日改正)", "confidence_by_character": [0.8978325724601746, 0.922369122505188, 0.9160650968551636, 0.918795645236969, 0.9064813852310181, 0.936464786529541, 0.9200351238250732, 0.9202256798744202, 0.9179858565330505, 0.9177453517913818, 0.9135644435882568, 0.9601635336875916, 0.9243606328964233, 0.9090349078178406], "confidence_by_field": 0.8978325724601746, "original_text": "(2015年5月21日改正)"}, {"location": [[149, 1815], [733, 1815], [733, 1840], [149, 1840]], "type": "textline", "text": "約障害保険金額および特約介護保険金額は同額です.", "confidence_by_character": [0.9096291065216064, 0.9649201035499573, 0.9074134230613708, 0.9397523403167725, 0.9534640312194824, 0.9188070297241211, 0.5278493762016296, 0.9123252630233765, 0.9346556067466736, 0.9300186038017273, 0.939526379108429, 0.8993375897407532, 0.04928131401538849, 0.5356337428092957, 0.911429226398468, 0.9527894854545593, 0.9214397668838501, 0.5467637777328491, 0.9050731658935547, 0.934890627861023, 0.49225056171417236, 0.9278605580329895, 0.9215723872184753, 0.9195785522460938], "confidence_by_field": 0.04928131401538849, "original_text": "約障害保険金額および特約介護保険金額は同額です。"}, {"location": [[175, 1781], [1501, 1781], [1501, 1808], [175, 1808]], "type": "textline", "text": "この特約は,つぎの給付を行うことを主な内容とするものです.なお,特約処止保険金額,特約特定戻痛保険金額,特", "confidence_by_character": [0.9369598627090454, 0.9107000231742859, 0.9297534823417664, 0.8776241540908813, 0.8793449401855469, 0.9490687251091003, 0.8965871930122375, 0.9687252044677734, 0.9057789444923401, 0.9574429988861084, 0.8976422548294067, 0.9136837124824524, 0.9268689751625061, 0.932058572769165, 0.9242229461669922, 0.9196074604988098, 0.8987683653831482, 0.942980170249939, 0.9443779587745667, 0.9321059584617615, 0.9565054178237915, 0.9153079390525818, 0.9260733723640442, 0.926594078540802, 0.9289300441741943, 0.9150373935699463, 0.9120854139328003, 0.9258813261985779, 0.9541117548942566, 0.9266093373298645, 0.9346880912780762, 0.9409043192863464, 0.9238049387931824, 0.9244459867477417, 0.014028184115886688, 0.0228092260658741, 0.9002881646156311, 0.9493752717971802, 0.9292503595352173, 0.6504830718040466, 0.9438492059707642, 0.9518027901649475, 0.8809623718261719, 0.8925992250442505, 0.9060046076774597, 0.05244090408086777, 0.015114789828658104, 0.8874021172523499, 0.9676918387413025, 0.9172577261924744, 0.5890137553215027, 0.951729953289032, 0.9478346705436707], "confidence_by_field": 0.014028184115886688, "original_text": "この特約は、つぎの給付を行うことを主な内容とするものです。なお、特約処止保険金額、特約特定戻痛保険金額、特"}, {"location": [[896, 1879], [1026, 1879], [1026, 1916], [896, 1916]], "type": "textline", "text": "給付の内容", "confidence_by_character": [0.9553260207176208, 0.9051710963249207, 0.917224109172821, 0.9151805639266968, 0.9606074094772339], "confidence_by_field": 0.9051710963249207, "original_text": "給付の内容"}, {"location": [[161, 1954], [387, 1954], [387, 1979], [161, 1979]], "type": "textline", "text": "特約特定戻府保険金", "confidence_by_character": [0.9330503940582275, 0.8949135541915894, 0.9356642365455627, 0.8979717493057251, 0.015786517411470413, 0.012797808274626732, 0.8882734775543213, 0.9524322748184204, 0.9164294004440308], "confidence_by_field": 0.012797808274626732, "original_text": "特約特定戻府保険金"}, {"location": [[162, 1919], [338, 1919], [338, 1944], [162, 1944]], "type": "textline", "text": "特約列芒保険金", "confidence_by_character": [0.9400514960289001, 0.8923373222351074, 0.014384718611836433, 0.014207903295755386, 0.9324019551277161, 0.9508295059204102, 0.9144597053527832], "confidence_by_field": 0.014207903295755386, "original_text": "特約列芒保険金"}, {"location": [[437, 1919], [1146, 1919], [1146, 1944], [437, 1944]], "type": "textline", "text": "被保険者がこの特約の保険期間中に残芒したときに支払います.", "confidence_by_character": [0.854651153087616, 0.9044693112373352, 0.9625535607337952, 0.9443549513816833, 0.7922253608703613, 0.9285532832145691, 0.9089305996894836, 0.9333711862564087, 0.9028093814849854, 0.9185588955879211, 0.9299607872962952, 0.9766959547996521, 0.966401994228363, 0.9570522308349609, 0.9341024160385132, 0.9234551191329956, 0.014170970767736435, 0.019544826820492744, 0.9170233607292175, 0.935675323009491, 0.9204466342926025, 0.8977303504943848, 0.8855539560317993, 0.8742856979370117, 0.9442934393882751, 0.9176915884017944, 0.9206815958023071, 0.9195420742034912, 0.9371196627616882], "confidence_by_field": 0.014170970767736435, "original_text": "被保険者がこの特約の保険期間中に残芒したときに支払います。"}, {"location": [[162, 2023], [337, 2023], [337, 2048], [162, 2048]], "type": "textline", "text": "特約障害保険金", "confidence_by_character": [0.9368435740470886, 0.8962743282318115, 0.9483910799026489, 0.8997343182563782, 0.9441099166870117, 0.9426329135894775, 0.9132723808288574], "confidence_by_field": 0.8962743282318115, "original_text": "特約障害保険金"}, {"location": [[437, 2023], [1478, 2023], [1478, 2048], [437, 2048]], "type": "textline", "text": "被保険者がこの特約の保険期間中に傷害もしくは失痛により所定の身体障害の状態に該当し", "confidence_by_character": [0.9137407541275024, 0.889526903629303, 0.9738357067108154, 0.9552202820777893, 0.7339380979537964, 0.9262471199035645, 0.9106688499450684, 0.9305999875068665, 0.910273015499115, 0.9211827516555786, 0.9292681813240051, 0.9715267419815063, 0.9618374705314636, 0.9705326557159424, 0.9293869137763977, 0.9206780791282654, 0.26946118474006653, 0.9108325839042664, 0.9311854243278503, 0.9207044243812561, 0.9355841279029846, 0.9333539009094238, 0.028336111456155777, 0.011797132901847363, 0.9070261716842651, 0.9343438148498535, 0.9251676797866821, 0.9483652114868164, 0.9373077154159546, 0.9293917417526245, 0.7686097621917725, 0.9533481001853943, 0.958755373954773, 0.9476703405380249, 0.9361215829849243, 0.9448221325874329, 0.9741061925888062, 0.9097885489463806, 0.8594000339508057, 0.9484358429908752, 0.8925155401229858], "confidence_by_field": 0.011797132901847363, "original_text": "被保険者がこの特約の保険期間中に傷害もしくは失痛により所定の身体障害の状態に該当し"}, {"location": [[437, 1988], [1046, 1988], [1046, 2013], [437, 2013]], "type": "textline", "text": "率中)により所定の状態に該当したときに支払います.", "confidence_by_character": [0.05385029315948486, 0.9311578273773193, 0.9066023826599121, 0.9114513397216797, 0.9383894801139832, 0.920610249042511, 0.9291492104530334, 0.9169822931289673, 0.9317113161087036, 0.931984007358551, 0.9708446264266968, 0.9058194160461426, 0.8108155131340027, 0.9392699003219604, 0.9110666513442993, 0.9408706426620483, 0.9105110168457031, 0.8959463834762573, 0.9106318950653076, 0.8733976483345032, 0.9144021272659302, 0.9091393351554871, 0.9186072945594788, 0.9260706305503845, 0.9283376932144165], "confidence_by_field": 0.05385029315948486, "original_text": "率中)により所定の状態に該当したときに支払います。"}, {"location": [[437, 1954], [1485, 1954], [1485, 1979], [437, 1979]], "type": "textline", "text": "被保険者ガこの特約の保険期間中に特定の床府(悪性新生物(ガん),急性心筋便寒または膨", "confidence_by_character": [0.9090943336486816, 0.8870640397071838, 0.9788434505462646, 0.9468823671340942, 0.5870116353034973, 0.9255739450454712, 0.9203640222549438, 0.9271939396858215, 0.9211599230766296, 0.9201323986053467, 0.9264747500419617, 0.9801869988441467, 0.9636583924293518, 0.9629599452018738, 0.9198498129844666, 0.9116076231002808, 0.934278666973114, 0.9114233255386353, 0.9254110455513, 0.0773400366306305, 0.01654176041483879, 0.9135648012161255, 0.9597926735877991, 0.9224374890327454, 0.8963746428489685, 0.9213263392448425, 0.9155093431472778, 0.8932526707649231, 0.403414785861969, 0.8853700757026672, 0.9193344712257385, 0.9181711077690125, 0.9665935039520264, 0.9299011826515198, 0.903806209564209, 0.8679869771003723, 0.030852463096380234, 0.04921910539269447, 0.8980363011360168, 0.6925453543663025, 0.9102537035942078, 0.03684505820274353], "confidence_by_field": 0.01654176041483879, "original_text": "被保険者ガこの特約の保険期間中に特定の床府(悪性新生物(ガん)、急性心筋便寒または膨"}, {"location": [[162, 2091], [337, 2091], [337, 2117], [162, 2117]], "type": "textline", "text": "特約介護保険金", "confidence_by_character": [0.9379562735557556, 0.8950698375701904, 0.057667531073093414, 0.6306179165840149, 0.9172041416168213, 0.9481075406074524, 0.9089248180389404], "confidence_by_field": 0.057667531073093414, "original_text": "特約介護保険金"}, {"location": [[437, 2092], [1484, 2092], [1484, 2117], [437, 2117]], "type": "textline", "text": "被保険者がこの特約の保険期間中に傷害または狭府により所定の要介護状態に該当したとき", "confidence_by_character": [0.9048326015472412, 0.8824235796928406, 0.9749931693077087, 0.9512994289398193, 0.5933372378349304, 0.9247634410858154, 0.9113372564315796, 0.9280760884284973, 0.9148536920547485, 0.9220680594444275, 0.9234672784805298, 0.9672222137451172, 0.9663416743278503, 0.9645015001296997, 0.9268940687179565, 0.9126733541488647, 0.2634304165840149, 0.9100037217140198, 0.8993488550186157, 0.9453896880149841, 0.9273724555969238, 0.026481110602617264, 0.010136036202311516, 0.9250752329826355, 0.939613401889801, 0.9242004752159119, 0.9470643997192383, 0.9412266612052917, 0.9297698736190796, 0.9515352249145508, 0.052137866616249084, 0.5423459410667419, 0.9290200471878052, 0.977899432182312, 0.9035364985466003, 0.8865501284599304, 0.9343253970146179, 0.9094508290290833, 0.9369298815727234, 0.9264780879020691, 0.8853302597999573], "confidence_by_field": 0.010136036202311516, "original_text": "被保険者がこの特約の保険期間中に傷害または狭府により所定の要介護状態に該当したとき"}, {"location": [[438, 2057], [1396, 2057], [1396, 2082], [438, 2082]], "type": "textline", "text": "たとき,または不慮の事故により所定の身体障害の状態に該当したときに支払います.", "confidence_by_character": [0.9177067875862122, 0.9100234508514404, 0.9080087542533875, 0.9481674432754517, 0.9118782877922058, 0.8964521288871765, 0.9291027784347534, 0.93576979637146, 0.9054925441741943, 0.9216412305831909, 0.9122666120529175, 0.9186939001083374, 0.9185471534729004, 0.9323176145553589, 0.9234456419944763, 0.9438993334770203, 0.9355025291442871, 0.9200876951217651, 0.7462718486785889, 0.9436021447181702, 0.9706883430480957, 0.9393149018287659, 0.9283421039581299, 0.9264166355133057, 0.9590920209884644, 0.9048125743865967, 0.848222017288208, 0.9458418488502502, 0.9071530699729919, 0.9386048316955566, 0.9248015880584717, 0.9097894430160522, 0.9155409336090088, 0.8754925727844238, 0.9444654583930969, 0.9106110334396362, 0.9219251275062561, 0.9111358523368835, 0.9423434138298035], "confidence_by_field": 0.7462718486785889, "original_text": "たとき、または不慮の事故により所定の身体障害の状態に該当したときに支払います。"}, {"location": [[438, 2126], [596, 2126], [596, 2151], [438, 2151]], "type": "textline", "text": "に支払います.", "confidence_by_character": [0.8565472364425659, 0.8819634914398193, 0.8841869831085205, 0.9039288759231567, 0.9335552453994751, 0.9350563883781433, 0.928551435470581], "confidence_by_field": 0.8565472364425659, "original_text": "に支払います。"}, {"location": [[144, 2237], [226, 2237], [226, 2287], [144, 2287]], "type": "textline", "text": "228", "confidence_by_character": [0.9205677509307861, 0.913452684879303, 0.9208362102508545], "confidence_by_field": 0.913452684879303, "original_text": "228"}, {"location": [[43, 575], [70, 575], [70, 1099], [43, 1099]], "type": "textline", "text": "5年ごと配当付特定状態保障定期保険特約", "confidence_by_character": [0.9999815225601196, 0.9999923706054688, 0.9997909665107727, 0.9999908208847046, 0.9999909400939941, 0.9999918937683105, 0.999985933303833, 0.9999974966049194, 0.9999915361404419, 0.9999743700027466, 0.9998983144760132, 0.9999939203262329, 0.9998928308486938, 0.9999949932098389, 0.9999886751174927, 0.9999927282333374, 0.9996867179870605, 0.9999939203262329, 0.9593049883842468], "confidence_by_field": 0.9593049883842468, "original_text": "5年ごと配当付特定状態保障定期保険特約"}], "table": [{"location": [[425, 2089], [1496, 2089], [1496, 2155], [425, 2155]], "bbox": [425, 2089, 1496, 2155], "points": [[467, 2091], [468, 2089], [470, 2091], [474, 2091], [475, 2089], [477, 2091], [478, 2089], [479, 2091], [481, 2091], [483, 2089], [484, 2091], [485, 2089], [486, 2091], [492, 2091], [493, 2089], [499, 2089], [500, 2091], [502, 2091], [504, 2089], [508, 2089], [509, 2091], [516, 2091], [518, 2089], [519, 2091], [525, 2091], [526, 2089], [529, 2089], [530, 2091], [549, 2091], [550, 2089], [552, 2091], [560, 2091], [561, 2089], [562, 2089], [563, 2091], [564, 2089], [566, 2091], [624, 2091], [625, 2089], [626, 2091], [633, 2091], [635, 2089], [636, 2091], [647, 2091], [649, 2089], [650, 2091], [657, 2091], [658, 2089], [659, 2091], [713, 2091], [714, 2089], [715, 2091], [716, 2089], [718, 2091], [725, 2091], [726, 2089], [729, 2089], [730, 2091], [734, 2091], [735, 2089], [737, 2089], [739, 2091], [747, 2091], [748, 2089], [751, 2089], [753, 2091], [754, 2091], [755, 2089], [756, 2089], [757, 2091], [767, 2091], [768, 2089], [769, 2091], [856, 2091], [857, 2089], [865, 2089], [866, 2091], [870, 2091], [871, 2089], [872, 2091], [877, 2091], [878, 2089], [881, 2089], [882, 2091], [884, 2089], [887, 2089], [888, 2091], [989, 2091], [990, 2089], [992, 2089], [994, 2091], [1008, 2091], [1009, 2089], [1010, 2091], [1012, 2091], [1013, 2089], [1017, 2089], [1018, 2091], [1096, 2091], [1098, 2089], [1099, 2091], [1106, 2091], [1107, 2089], [1118, 2089], [1119, 2091], [1125, 2091], [1126, 2089], [1127, 2091], [1140, 2091], [1141, 2089], [1142, 2091], [1143, 2089], [1144, 2091], [1201, 2091], [1202, 2089], [1203, 2091], [1204, 2089], [1205, 2091], [1210, 2091], [1211, 2089], [1212, 2091], [1217, 2091], [1218, 2089], [1220, 2089], [1222, 2091], [1236, 2091], [1237, 2089], [1239, 2089], [1240, 2091], [1242, 2091], [1243, 2089], [1253, 2089], [1254, 2091], [1265, 2091], [1266, 2089], [1267, 2089], [1268, 2091], [1272, 2091], [1273, 2089], [1279, 2089], [1280, 2091], [1287, 2091], [1288, 2089], [1291, 2089], [1292, 2091], [1296, 2091], [1298, 2089], [1299, 2089], [1300, 2091], [1341, 2091], [1342, 2089], [1343, 2091], [1349, 2091], [1350, 2089], [1353, 2089], [1354, 2091], [1371, 2091], [1372, 2089], [1374, 2091], [1495, 2091], [1496, 2092], [1496, 2154], [1495, 2155], [1129, 2155], [1128, 2154], [1127, 2155], [426, 2155], [425, 2154], [425, 2092], [426, 2091]], "type": "cell", "rows": [4, 4], "columns": [1, 1], "text_list": []}, {"location": [[152, 2089], [422, 2089], [422, 2155], [152, 2155]], "bbox": [152, 2089, 422, 2155], "points": [[152, 2091], [153, 2089], [154, 2091], [166, 2091], [167, 2089], [168, 2091], [169, 2089], [171, 2089], [173, 2091], [177, 2091], [178, 2089], [182, 2089], [183, 2091], [194, 2091], [195, 2089], [196, 2091], [217, 2091], [218, 2089], [219, 2091], [223, 2091], [224, 2089], [228, 2089], [229, 2091], [240, 2091], [242, 2089], [260, 2089], [261, 2091], [270, 2091], [271, 2089], [279, 2089], [280, 2091], [292, 2091], [293, 2089], [298, 2089], [299, 2091], [327, 2091], [328, 2089], [329, 2091], [421, 2091], [422, 2092], [421, 2093], [421, 2149], [422, 2150], [422, 2154], [421, 2155], [153, 2155], [152, 2154]], "type": "cell", "rows": [4, 4], "columns": [0, 0], "text_list": []}, {"location": [[425, 2020], [1496, 2020], [1496, 2085], [425, 2085]], "bbox": [425, 2020, 1496, 2085], "points": [[442, 2022], [443, 2020], [444, 2020], [445, 2022], [446, 2020], [449, 2020], [450, 2022], [452, 2022], [453, 2020], [457, 2020], [458, 2022], [461, 2022], [463, 2020], [464, 2022], [466, 2022], [467, 2020], [487, 2020], [488, 2022], [490, 2022], [491, 2020], [512, 2020], [513, 2022], [514, 2020], [518, 2020], [519, 2022], [520, 2022], [521, 2020], [522, 2022], [525, 2022], [526, 2020], [530, 2020], [532, 2022], [535, 2022], [536, 2020], [537, 2020], [539, 2022], [540, 2022], [541, 2020], [546, 2020], [547, 2022], [548, 2020], [564, 2020], [566, 2022], [568, 2022], [569, 2020], [582, 2020], [583, 2022], [595, 2022], [596, 2020], [615, 2020], [616, 2022], [619, 2022], [621, 2020], [629, 2020], [630, 2022], [631, 2022], [632, 2020], [643, 2020], [644, 2022], [645, 2022], [646, 2020], [652, 2020], [653, 2022], [654, 2020], [668, 2020], [670, 2022], [671, 2020], [730, 2020], [732, 2022], [733, 2020], [744, 2020], [746, 2022], [747, 2020], [795, 2020], [796, 2022], [798, 2022], [799, 2020], [803, 2020], [804, 2022], [809, 2022], [810, 2020], [811, 2022], [826, 2022], [828, 2020], [897, 2020], [898, 2022], [901, 2022], [902, 2020], [904, 2022], [907, 2022], [908, 2020], [926, 2020], [927, 2022], [928, 2022], [929, 2020], [946, 2020], [947, 2022], [962, 2022], [963, 2020], [966, 2020], [967, 2022], [978, 2022], [980, 2020], [990, 2020], [991, 2022], [992, 2022], [994, 2020], [995, 2020], [996, 2022], [1001, 2022], [1002, 2020], [1011, 2020], [1012, 2022], [1013, 2022], [1015, 2020], [1018, 2020], [1019, 2022], [1023, 2022], [1024, 2020], [1025, 2022], [1026, 2022], [1027, 2020], [1052, 2020], [1053, 2022], [1056, 2022], [1057, 2020], [1068, 2020], [1070, 2022], [1102, 2022], [1104, 2020], [1106, 2020], [1107, 2022], [1108, 2022], [1109, 2020], [1118, 2020], [1119, 2022], [1121, 2022], [1122, 2020], [1154, 2020], [1155, 2022], [1156, 2020], [1162, 2020], [1163, 2022], [1165, 2022], [1167, 2020], [1170, 2020], [1171, 2022], [1188, 2022], [1189, 2020], [1194, 2020], [1195, 2022], [1205, 2022], [1206, 2020], [1208, 2020], [1209, 2022], [1211, 2022], [1212, 2020], [1213, 2022], [1216, 2022], [1217, 2020], [1220, 2020], [1222, 2022], [1260, 2022], [1261, 2020], [1267, 2020], [1268, 2022], [1271, 2022], [1272, 2020], [1275, 2020], [1277, 2022], [1287, 2022], [1288, 2020], [1291, 2020], [1292, 2022], [1293, 2022], [1294, 2020], [1299, 2020], [1300, 2022], [1316, 2022], [1318, 2020], [1337, 2020], [1339, 2022], [1340, 2022], [1341, 2020], [1346, 2020], [1347, 2022], [1348, 2022], [1349, 2020], [1361, 2020], [1362, 2022], [1363, 2022], [1364, 2020], [1377, 2020], [1378, 2022], [1380, 2020], [1385, 2020], [1387, 2022], [1388, 2022], [1389, 2020], [1409, 2020], [1410, 2022], [1412, 2022], [1413, 2020], [1424, 2020], [1425, 2022], [1426, 2020], [1444, 2020], [1445, 2022], [1446, 2022], [1447, 2020], [1454, 2020], [1456, 2022], [1457, 2022], [1458, 2020], [1464, 2020], [1465, 2022], [1466, 2022], [1467, 2020], [1470, 2020], [1471, 2022], [1472, 2020], [1473, 2022], [1474, 2020], [1493, 2020], [1494, 2022], [1495, 2022], [1496, 2023], [1496, 2084], [1495, 2085], [426, 2085], [425, 2084], [425, 2023], [426, 2022]], "type": "cell", "rows": [3, 3], "columns": [1, 1], "text_list": []}, {"location": [[152, 2020], [422, 2020], [422, 2085], [152, 2085]], "bbox": [152, 2020, 422, 2085], "points": [[152, 2022], [153, 2020], [154, 2022], [155, 2020], [156, 2020], [157, 2022], [159, 2022], [160, 2020], [162, 2020], [163, 2022], [164, 2020], [175, 2020], [176, 2022], [177, 2022], [178, 2020], [187, 2020], [188, 2022], [191, 2022], [192, 2020], [196, 2020], [197, 2022], [199, 2022], [201, 2020], [237, 2020], [238, 2022], [239, 2022], [240, 2020], [261, 2020], [263, 2022], [266, 2022], [267, 2020], [286, 2020], [287, 2022], [288, 2022], [290, 2020], [298, 2020], [299, 2022], [305, 2022], [306, 2020], [307, 2022], [316, 2022], [318, 2020], [319, 2022], [326, 2022], [327, 2020], [328, 2020], [329, 2022], [421, 2022], [422, 2023], [422, 2024], [421, 2025], [421, 2082], [422, 2084], [421, 2085], [153, 2085], [152, 2084]], "type": "cell", "rows": [3, 3], "columns": [0, 0], "text_list": []}, {"location": [[425, 1951], [1496, 1951], [1496, 2017], [425, 2017]], "bbox": [425, 1951, 1496, 2017], "points": [[442, 1953], [443, 1951], [444, 1953], [454, 1953], [456, 1951], [457, 1953], [467, 1953], [468, 1951], [470, 1953], [471, 1953], [472, 1951], [485, 1951], [486, 1953], [492, 1953], [493, 1951], [498, 1951], [499, 1953], [501, 1953], [502, 1951], [507, 1951], [508, 1953], [514, 1953], [515, 1951], [516, 1953], [518, 1951], [519, 1953], [520, 1951], [521, 1953], [523, 1953], [525, 1951], [528, 1951], [529, 1953], [535, 1953], [536, 1951], [537, 1953], [542, 1953], [543, 1951], [544, 1953], [547, 1953], [548, 1951], [564, 1951], [566, 1953], [567, 1951], [568, 1953], [569, 1951], [581, 1951], [582, 1953], [621, 1953], [622, 1951], [623, 1951], [624, 1953], [629, 1953], [630, 1951], [633, 1951], [635, 1953], [645, 1953], [646, 1951], [647, 1951], [649, 1953], [652, 1953], [653, 1951], [656, 1951], [657, 1953], [694, 1953], [695, 1951], [697, 1953], [699, 1953], [700, 1951], [707, 1951], [708, 1953], [709, 1951], [711, 1953], [712, 1951], [713, 1951], [714, 1953], [719, 1953], [720, 1951], [726, 1951], [727, 1953], [729, 1953], [730, 1951], [734, 1951], [735, 1953], [742, 1953], [743, 1951], [748, 1951], [749, 1953], [750, 1951], [753, 1951], [754, 1953], [762, 1953], [763, 1951], [764, 1953], [774, 1953], [775, 1951], [776, 1951], [777, 1953], [788, 1953], [789, 1951], [790, 1953], [849, 1953], [850, 1951], [851, 1953], [857, 1953], [858, 1951], [861, 1951], [863, 1953], [870, 1953], [871, 1951], [872, 1953], [873, 1951], [874, 1951], [875, 1953], [877, 1953], [878, 1951], [882, 1951], [884, 1953], [926, 1953], [927, 1951], [928, 1953], [929, 1953], [930, 1951], [934, 1951], [935, 1953], [944, 1953], [946, 1951], [947, 1953], [948, 1953], [949, 1951], [953, 1951], [954, 1953], [955, 1951], [960, 1951], [961, 1953], [990, 1953], [991, 1951], [992, 1951], [994, 1953], [996, 1953], [997, 1951], [1018, 1951], [1019, 1953], [1022, 1953], [1023, 1951], [1026, 1951], [1027, 1953], [1036, 1953], [1037, 1951], [1038, 1953], [1045, 1953], [1046, 1951], [1047, 1953], [1049, 1951], [1056, 1951], [1057, 1953], [1058, 1953], [1059, 1951], [1065, 1951], [1066, 1953], [1067, 1951], [1068, 1953], [1075, 1953], [1077, 1951], [1078, 1953], [1080, 1953], [1081, 1951], [1082, 1953], [1084, 1951], [1085, 1953], [1154, 1953], [1155, 1951], [1169, 1951], [1170, 1953], [1314, 1953], [1315, 1951], [1319, 1951], [1320, 1953], [1323, 1953], [1325, 1951], [1328, 1951], [1329, 1953], [1357, 1953], [1358, 1951], [1360, 1953], [1364, 1953], [1365, 1951], [1375, 1951], [1376, 1953], [1464, 1953], [1465, 1951], [1473, 1951], [1474, 1953], [1475, 1951], [1479, 1951], [1480, 1953], [1482, 1953], [1484, 1951], [1492, 1951], [1493, 1953], [1495, 1953], [1496, 1954], [1496, 2016], [1495, 2017], [1129, 2017], [1128, 2016], [1127, 2017], [426, 2017], [425, 2016], [425, 1954], [426, 1953]], "type": "cell", "rows": [2, 2], "columns": [1, 1], "text_list": []}, {"location": [[152, 1951], [422, 1951], [422, 2017], [152, 2017]], "bbox": [152, 1951, 422, 2017], "points": [[152, 1953], [153, 1951], [154, 1953], [164, 1953], [166, 1951], [171, 1951], [173, 1953], [176, 1953], [177, 1951], [183, 1951], [184, 1953], [191, 1953], [192, 1951], [195, 1951], [196, 1953], [199, 1953], [201, 1951], [204, 1951], [205, 1953], [217, 1953], [218, 1951], [225, 1951], [226, 1953], [228, 1951], [232, 1951], [233, 1953], [244, 1953], [245, 1951], [246, 1951], [247, 1953], [249, 1951], [253, 1951], [254, 1953], [271, 1953], [272, 1951], [273, 1953], [274, 1953], [276, 1951], [279, 1951], [280, 1953], [293, 1953], [294, 1951], [306, 1951], [307, 1953], [308, 1951], [313, 1951], [314, 1953], [315, 1953], [316, 1951], [336, 1951], [337, 1953], [339, 1953], [340, 1951], [348, 1951], [349, 1953], [352, 1953], [353, 1951], [356, 1951], [357, 1953], [367, 1953], [368, 1951], [369, 1953], [370, 1951], [371, 1953], [373, 1951], [378, 1951], [380, 1953], [421, 1953], [422, 1954], [421, 1955], [421, 2013], [422, 2015], [422, 2016], [421, 2017], [153, 2017], [152, 2016]], "type": "cell", "rows": [2, 2], "columns": [0, 0], "text_list": []}, {"location": [[425, 1916], [1496, 1916], [1496, 1947], [425, 1947]], "bbox": [425, 1916, 1496, 1947], "points": [[472, 1917], [473, 1916], [480, 1916], [481, 1917], [483, 1916], [484, 1917], [485, 1916], [486, 1917], [493, 1917], [494, 1916], [497, 1916], [498, 1917], [505, 1917], [506, 1916], [507, 1917], [522, 1917], [523, 1916], [527, 1916], [528, 1917], [547, 1917], [548, 1916], [549, 1917], [619, 1917], [621, 1916], [622, 1917], [629, 1917], [630, 1916], [631, 1917], [643, 1917], [644, 1916], [645, 1917], [652, 1917], [653, 1916], [654, 1917], [697, 1917], [698, 1916], [700, 1916], [701, 1917], [702, 1916], [704, 1917], [708, 1917], [709, 1916], [711, 1917], [720, 1917], [721, 1916], [722, 1917], [729, 1917], [730, 1916], [732, 1917], [741, 1917], [742, 1916], [743, 1916], [744, 1917], [747, 1917], [748, 1916], [749, 1916], [750, 1917], [771, 1917], [773, 1916], [774, 1917], [799, 1917], [801, 1916], [802, 1917], [842, 1917], [843, 1916], [854, 1916], [856, 1917], [921, 1917], [922, 1916], [923, 1917], [947, 1917], [948, 1916], [949, 1917], [950, 1916], [951, 1917], [1495, 1917], [1496, 1919], [1496, 1946], [1495, 1947], [426, 1947], [425, 1946], [425, 1919], [426, 1917]], "type": "cell", "rows": [1, 1], "columns": [1, 1], "text_list": []}, {"location": [[152, 1916], [422, 1916], [422, 1947], [152, 1947]], "bbox": [152, 1916, 422, 1947], "points": [[152, 1917], [153, 1916], [154, 1917], [166, 1917], [167, 1916], [171, 1916], [173, 1917], [177, 1917], [178, 1916], [182, 1916], [183, 1917], [191, 1917], [192, 1916], [195, 1916], [196, 1917], [202, 1917], [203, 1916], [204, 1916], [205, 1917], [214, 1917], [215, 1916], [232, 1916], [233, 1917], [268, 1917], [270, 1916], [281, 1916], [283, 1917], [290, 1917], [291, 1916], [298, 1916], [299, 1917], [419, 1917], [421, 1919], [421, 1944], [422, 1946], [421, 1947], [153, 1947], [152, 1946]], "type": "cell", "rows": [1, 1], "columns": [0, 0], "text_list": []}, {"location": [[425, 1882], [1496, 1882], [1496, 1912], [425, 1912]], "bbox": [425, 1882, 1496, 1912], "points": [[425, 1884], [426, 1882], [1495, 1882], [1496, 1884], [1496, 1893], [1495, 1894], [1496, 1895], [1495, 1896], [1496, 1898], [1495, 1899], [1495, 1910], [1494, 1912], [426, 1912], [425, 1910]], "type": "cell", "rows": [0, 0], "columns": [1, 1], "text_list": []}, {"location": [[147, 1877], [1501, 1877], [1501, 2160], [147, 2160]], "bbox": [147, 1877, 1501, 2160], "points": [[422, 1877], [422, 1886], [421, 1887], [421, 1909], [422, 1910], [421, 1912], [148, 1912], [148, 1914], [147, 1915], [147, 2157], [149, 2160], [1498, 2160], [1499, 2158], [1501, 2158], [1501, 1877]], "type": "table", "contains": [0, 1, 2, 3, 4, 5, 6, 7, 8]}]}}, {"csv_string": "第1条(特約保険金の支払),,,,,,\n1.この特約において支払う特約保険金はつぎのとおりです.,,,,,,\n,\"特約保険金を支払う場合(以下「支払事由\nといいます.)\",支払額,受取人,\"支払事由に該当しても特約保険金を支払\nわない場合(以下[発青事由」といいます.)\",,5年ごと配当付特定状態保障定期保険特約\n特約死亡保険金,\"被保険者がこの特約の保険期間中に列芒し\nたとき\",特約保険金額,特約死亡保険金受取人,\"つぎのいずれかにより左記の支払事由が\n生じたとき\n(1)この特約の責任開始期(復活の取扱が\n行われた後は,最後の復活の際の責任開\n始期.以下同じ.の属する日からその\n日を含めて3年以内の自段\n(2)保険契約者または特約処芒保険金受\n取人の故意\n(3) 戦手その他の変乱\",,\n特約特定疾病保険金,\"(1)被保険者がこの特約の責任開始期以\n後,この特約の保険期間中に,生まれて\n初めて悪性新生物(表1)に確慮し,保\n師により痛理組徹学的所見(生検)によ\nって該断確定(痛理組徹学的所見が得ら\nれないときは,他の所見による該断確定\nも認めることがあります.以下「該断確\n定」といいます.)されたとき\n(2)被保険者がこの特約の責任開始期以後\nの突痛を原因として,この特約の保険期\n間中につぎのいずれかの状態に該当した\nとき\n(ア)急性心筋硬審(表1)を発防し,そ\nの床痛により初めて区師の該察を受け\nた日からその日を含めて60日以上,劣\n働の制限を必要とする状態(軽い像事\n等の軽労働や事務等の座業はできる\nが,それ以上の活動では制限を必要と\nする状態)が継続したと区師によって\n該断されたとき\n(イ)膨率中(表1)を発防し,その床府\nにより初めて区師の該擦を受けた日か\nらその日を含めて60日以上,言語障害,\n運動失調,床煙等の他覚的な神経学的\n後遺症が継続したと区師によって該断\nされたとき\",,特約特定疾病保険金受取人,,,\n特約障害保険金,\"(1)被保険者がこの特約の責任開始期以後\nの傷害または狭府を原因として,この特\n約の保険期間中に身体障害の状態(表2)\nに該当したとき.\nこの場合,責任開始期前にすでに生じて\nいた障害状態に,その障害状態の原因と\nなった傷害または焼痛と因果関係のない\n責任開始期以後の傷害または戻痛を原因\nとする障害状態が新たに加わって身体障\n害の状態に該当したときを含みます.\n(2) * 被保険者がこの特約の責任開始期以後\nに発生した不慮の事故(別表2)による\n傷害を直接の原因として,その事故の日\nからその日を含めて180日以内のこの特\n約の保険期間中に身体障害の状態(表3)\nに該当したとき.\nこの場合,責任開始期前にすでに生じて\nいた障害状態に,責任開始期以後の傷害\nを原因とする障害状態が新たに加わって\n身体障害の状態に該当したときを含みま\nす.\",,特約障害保険金受取人,\"つぎのいずれかにより左記の支払事由が\n生じたとき.ただし, 主たる保険契約の普\n通保険約熟に定める高度障害状態に該当\nした場合には,主たる保険契約の高度障害\n保険金の発責事由により左記の支払事由\nが生じたときとします.\n(1)保険契約者または被保険者の故意ま\nたは重大な過失\n(2)被保険者の狙距行為\n(3)被保険者の精神障害を原因とする事故\n(4) * 被保険者の泥枠の状態を原因とする事\n故\n(5) 被保険者が法令に定める運転資格を持\nたないで運転している間に生じた事故\n(6)被保険者が法令に定める適気帯び運転\nまたはこれに相当する運転をしている間\nに生じた事故\n(7)被保険者の薬物依存\n(8)地衷, 晴火または津波\n(9) 戦手その他の変乱\",,\n229,,,,,,\n", "image": "0eead6ebfeb64229817b6fa90428137d.jpg", "json": {"ocr": [{"location": [[149, 106], [459, 106], [459, 131], [149, 131]], "type": "textline", "text": "第1条(特約保険金の支払)", "confidence_by_character": [0.8957606554031372, 0.9214359521865845, 0.9456148743629456, 0.9017965793609619, 0.930712103843689, 0.8791102766990662, 0.8746577501296997, 0.96125727891922, 0.92286616563797, 0.9276893734931946, 0.8650060296058655, 0.9539327621459961, 0.9164511561393738], "confidence_by_field": 0.8650060296058655, "original_text": "第1条(特約保険金の支払)"}, {"location": [[158, 140], [833, 140], [833, 165], [158, 165]], "type": "textline", "text": "1.この特約において支払う特約保険金はつぎのとおりです.", "confidence_by_character": [0.9048033952713013, 0.9177271723747253, 0.9124312996864319, 0.921960711479187, 0.9299948811531067, 0.8882890343666077, 0.9074538946151733, 0.9161959886550903, 0.9276759624481201, 0.9198600649833679, 0.8782053589820862, 0.9535744786262512, 0.9148156642913818, 0.9292144775390625, 0.9017140865325928, 0.9080090522766113, 0.9345629215240479, 0.9356717467308044, 0.9083501100540161, 0.9035194516181946, 0.9777835011482239, 0.9126558899879456, 0.9205964207649231, 0.930736780166626, 0.9344236254692078, 0.9210531711578369, 0.9163065552711487, 0.9350945353507996], "confidence_by_field": 0.8782053589820862, "original_text": "1.この特約において支払う特約保険金はつぎのとおりです。"}, {"location": [[252, 204], [733, 204], [733, 232], [252, 232]], "type": "textline", "text": "特約保険金を支払う場合(以下「支払事由", "confidence_by_character": [0.9248655438423157, 0.9099376797676086, 0.9125959873199463, 0.9594504833221436, 0.8696222901344299, 0.8997471332550049, 0.8379807472229004, 0.9239813089370728, 0.9159516096115112, 0.9208399653434753, 0.9007957577705383, 0.9006797671318054, 0.9556952118873596, 0.915207028388977, 0.6060425043106079, 0.876661479473114, 0.9350557923316956, 0.8818659782409668, 0.9208970665931702], "confidence_by_field": 0.6060425043106079, "original_text": "特約保険金を支払う場合(以下「支払事由"}, {"location": [[249, 310], [326, 310], [326, 338], [249, 338]], "type": "textline", "text": "たとき", "confidence_by_character": [0.9245128631591797, 0.904586136341095, 0.8985632061958313], "confidence_by_field": 0.8985632061958313, "original_text": "たとき"}, {"location": [[251, 278], [734, 278], [734, 303], [251, 303]], "type": "textline", "text": "被保険者がこの特約の保険期間中に列芒し", "confidence_by_character": [0.749318540096283, 0.8879374861717224, 0.964445948600769, 0.9343539476394653, 0.8277684450149536, 0.9099715352058411, 0.9237227439880371, 0.9407083988189697, 0.9070225358009338, 0.9206836223602295, 0.92982017993927, 0.9656435251235962, 0.9574766159057617, 0.9385871887207031, 0.9270841479301453, 0.9135143756866455, 0.014398484490811825, 0.020685002207756042, 0.9146727323532104], "confidence_by_field": 0.014398484490811825, "original_text": "被保険者がこの特約の保険期間中に列芒し"}, {"location": [[254, 245], [399, 245], [399, 275], [254, 275]], "type": "textline", "text": "といいます.)", "confidence_by_character": [0.8854742646217346, 0.9143161177635193, 0.8835110664367676, 0.9006814360618591, 0.9240037798881531, 0.9386647939682007, 0.9189442992210388], "confidence_by_field": 0.8835110664367676, "original_text": "といいます。)"}, {"location": [[772, 224], [853, 224], [853, 253], [772, 253]], "type": "textline", "text": "支払額", "confidence_by_character": [0.8653340339660645, 0.9414002895355225, 0.4750102460384369], "confidence_by_field": 0.4750102460384369, "original_text": "支払額"}, {"location": [[896, 224], [976, 224], [976, 253], [896, 253]], "type": "textline", "text": "受取人", "confidence_by_character": [0.9221464991569519, 0.8856229186058044, 0.9345373511314392], "confidence_by_field": 0.8856229186058044, "original_text": "受取人"}, {"location": [[1014, 204], [1484, 204], [1484, 230], [1014, 230]], "type": "textline", "text": "支払事由に該当しても特約保険金を支払", "confidence_by_character": [0.7899680733680725, 0.8551263213157654, 0.903026819229126, 0.8107157349586487, 0.9084969758987427, 0.8210434913635254, 0.95518559217453, 0.9136958718299866, 0.9427138566970825, 0.9171298742294312, 0.9363890886306763, 0.8970792889595032, 0.8713167309761047, 0.9478092193603516, 0.9186189770698547, 0.8735387325286865, 0.7320084571838379, 0.5509752631187439], "confidence_by_field": 0.5509752631187439, "original_text": "支払事由に該当しても特約保険金を支払"}, {"location": [[1011, 241], [1481, 241], [1481, 265], [1011, 265]], "type": "textline", "text": "わない場合(以下[発青事由」といいます.)", "confidence_by_character": [0.8938702940940857, 0.934786319732666, 0.922076940536499, 0.9370761513710022, 0.9112069606781006, 0.9059233069419861, 0.9443529844284058, 0.9178456664085388, 0.8753983378410339, 0.03396568074822426, 0.40408775210380554, 0.8638619780540466, 0.6857198476791382, 0.9011620283126831, 0.8827248215675354, 0.9276689887046814, 0.8765577077865601, 0.907353937625885, 0.9134839177131653, 0.9213855266571045, 0.9043646454811096], "confidence_by_field": 0.03396568074822426, "original_text": "わない場合(以下[発青事由」といいます。)"}, {"location": [[1012, 312], [1135, 312], [1135, 336], [1012, 336]], "type": "textline", "text": "生じたとき", "confidence_by_character": [0.8868762850761414, 0.9056455492973328, 0.918210506439209, 0.9067613482475281, 0.8994534611701965], "confidence_by_field": 0.8868762850761414, "original_text": "生じたとき"}, {"location": [[1012, 278], [1486, 278], [1486, 303], [1012, 303]], "type": "textline", "text": "つぎのいずれかにより左記の支払事由が", "confidence_by_character": [0.8923049569129944, 0.9697352051734924, 0.8990675806999207, 0.925325334072113, 0.9557349681854248, 0.9170364141464233, 0.9421206116676331, 0.9102945327758789, 0.9368903636932373, 0.9254054427146912, 0.8710336685180664, 0.9164294004440308, 0.9294902682304382, 0.8892562985420227, 0.9235896468162537, 0.8957183957099915, 0.9540249705314636, 0.8977389931678772], "confidence_by_field": 0.8710336685180664, "original_text": "つぎのいずれかにより左記の支払事由が"}, {"location": [[1014, 345], [1486, 345], [1486, 371], [1014, 371]], "type": "textline", "text": "(1)この特約の責任開始期(復活の取扱が", "confidence_by_character": [0.9099491238594055, 0.9183098673820496, 0.9314373731613159, 0.9221196174621582, 0.9364954233169556, 0.9361903071403503, 0.9147066473960876, 0.9204495549201965, 0.602785050868988, 0.9086629152297974, 0.9461039304733276, 0.9551928639411926, 0.9622383117675781, 0.9110438823699951, 0.877699077129364, 0.7858328223228455, 0.9193642139434814, 0.888963520526886, 0.9432951807975769, 0.9096044898033142], "confidence_by_field": 0.602785050868988, "original_text": "(1)この特約の責任開始期(復活の取扱が"}, {"location": [[1037, 415], [1485, 415], [1485, 440], [1037, 440]], "type": "textline", "text": "始期.以下同じ.の属する日からその", "confidence_by_character": [0.9516361355781555, 0.966478705406189, 0.852677047252655, 0.9467647075653076, 0.9067257046699524, 0.9042984843254089, 0.9375029802322388, 0.8295632004737854, 0.898488461971283, 0.9705027937889099, 0.9314621090888977, 0.9124283194541931, 0.8704380393028259, 0.95112544298172, 0.9240353107452393, 0.950503408908844, 0.9230213165283203], "confidence_by_field": 0.8295632004737854, "original_text": "始期。以下同じ。の属する日からその"}, {"location": [[1037, 381], [1485, 381], [1485, 406], [1037, 406]], "type": "textline", "text": "行われた後は,最後の復活の際の責任開", "confidence_by_character": [0.923387885093689, 0.9166586399078369, 0.9290143847465515, 0.9342116713523865, 0.905511200428009, 0.9100368618965149, 0.9503529667854309, 0.9452233910560608, 0.9142963886260986, 0.922412633895874, 0.8973823189735413, 0.82899409532547, 0.9232890009880066, 0.9706369042396545, 0.9072703719139099, 0.663677990436554, 0.9125912189483643, 0.9292799234390259], "confidence_by_field": 0.663677990436554, "original_text": "行われた後は、最後の復活の際の責任開"}, {"location": [[1016, 483], [1485, 483], [1485, 508], [1016, 508]], "type": "textline", "text": "(2)保険契約者または特約処芒保険金受", "confidence_by_character": [0.9009647369384766, 0.9210094809532166, 0.9323737025260925, 0.9403248429298401, 0.9666224718093872, 0.645862340927124, 0.9233846664428711, 0.9339843988418579, 0.9179462790489197, 0.9218600988388062, 0.9206268191337585, 0.9459734559059143, 0.8950295448303223, 0.03055698797106743, 0.02418067306280136, 0.9046180248260498, 0.9577282667160034, 0.9280261993408203, 0.9331519603729248], "confidence_by_field": 0.02418067306280136, "original_text": "(2)保険契約者または特約処芒保険金受"}, {"location": [[1040, 449], [1337, 449], [1337, 474], [1040, 474]], "type": "textline", "text": "日を含めて3年以内の自段", "confidence_by_character": [0.8968867063522339, 0.917870044708252, 0.9082721471786499, 0.9248698353767395, 0.9091854691505432, 0.9142671823501587, 0.9354078769683838, 0.9579083919525146, 0.9072748422622681, 0.9215583205223083, 0.8886802792549133, 0.018870357424020767], "confidence_by_field": 0.018870357424020767, "original_text": "日を含めて3年以内の自段"}, {"location": [[1013, 550], [1053, 550], [1053, 577], [1013, 577]], "type": "textline", "text": "(3)", "confidence_by_character": [0.9101033210754395, 0.9316578507423401, 0.9319947361946106], "confidence_by_field": 0.9101033210754395, "original_text": "(3)"}, {"location": [[1037, 517], [1163, 517], [1163, 542], [1037, 542]], "type": "textline", "text": "取人の故意", "confidence_by_character": [0.8840082287788391, 0.9395867586135864, 0.9252127408981323, 0.9333550930023193, 0.9215406775474548], "confidence_by_field": 0.8840082287788391, "original_text": "取人の故意"}, {"location": [[255, 586], [735, 586], [735, 611], [255, 611]], "type": "textline", "text": "(1)被保険者がこの特約の責任開始期以", "confidence_by_character": [0.9047891497612, 0.919743001461029, 0.9352890253067017, 0.949067234992981, 0.9103833436965942, 0.9589771032333374, 0.9393266439437866, 0.7972375154495239, 0.9160515069961548, 0.9297947287559509, 0.9353300929069519, 0.917321503162384, 0.9219575524330139, 0.7317435145378113, 0.9199417233467102, 0.9454781413078308, 0.9716393947601318, 0.9518939256668091, 0.9563794732093811], "confidence_by_field": 0.7317435145378113, "original_text": "(1)被保険者がこの特約の責任開始期以"}, {"location": [[1062, 551], [1257, 551], [1257, 576], [1062, 576]], "type": "textline", "text": "戦手その他の変乱", "confidence_by_character": [0.237168550491333, 0.037591151893138885, 0.8984275460243225, 0.9212812781333923, 0.9513408541679382, 0.9189191460609436, 0.9455586671829224, 0.7642134428024292], "confidence_by_field": 0.037591151893138885, "original_text": "戦手その他の変乱"}, {"location": [[276, 655], [736, 655], [736, 680], [276, 680]], "type": "textline", "text": "初めて悪性新生物(表1)に確慮し,保", "confidence_by_character": [0.9550676941871643, 0.9247714281082153, 0.8925259709358215, 0.9656600952148438, 0.9387659430503845, 0.8792218565940857, 0.9176525473594666, 0.9295365214347839, 0.9107308387756348, 0.915364682674408, 0.9060206413269043, 0.923557460308075, 0.922833263874054, 0.7376573085784912, 0.00856094155460596, 0.9134954810142517, 0.9291735887527466, 0.011413287371397018], "confidence_by_field": 0.00856094155460596, "original_text": "初めて悪性新生物(表1)に確慮し、保"}, {"location": [[276, 621], [734, 621], [734, 646], [276, 646]], "type": "textline", "text": "後,この特約の保険期間中に,生まれて", "confidence_by_character": [0.9301950931549072, 0.9386568069458008, 0.9102917313575745, 0.9241950511932373, 0.9299470782279968, 0.9025773406028748, 0.9188055992126465, 0.910587728023529, 0.9700899124145508, 0.9602063894271851, 0.952552855014801, 0.9240773916244507, 0.9185518026351929, 0.9411749839782715, 0.9142264127731323, 0.9284936785697937, 0.9104048609733582, 0.924731433391571], "confidence_by_field": 0.9025773406028748, "original_text": "後、この特約の保険期間中に、生まれて"}, {"location": [[277, 689], [734, 689], [734, 714], [277, 714]], "type": "textline", "text": "師により痛理組徹学的所見(生検)によ", "confidence_by_character": [0.3170163631439209, 0.8891792893409729, 0.9361133575439453, 0.9256150126457214, 0.01056862436234951, 0.9224980473518372, 0.921476423740387, 0.04609201103448868, 0.9148180484771729, 0.9649216532707214, 0.9039931297302246, 0.916337788105011, 0.916374921798706, 0.901046633720398, 0.9180544018745422, 0.9219416379928589, 0.9163698554039001, 0.9402152299880981], "confidence_by_field": 0.01056862436234951, "original_text": "師により痛理組徹学的所見(生検)によ"}, {"location": [[276, 756], [735, 756], [735, 782], [276, 782]], "type": "textline", "text": "れないときは,他の所見による該断確定", "confidence_by_character": [0.9314470291137695, 0.9357517957687378, 0.9242256879806519, 0.9056111574172974, 0.9040428996086121, 0.9216949939727783, 0.9529106616973877, 0.9635714292526245, 0.9195225238800049, 0.91412353515625, 0.9276958107948303, 0.9236325621604919, 0.9425894618034363, 0.9269119501113892, 0.10013983398675919, 0.9683887958526611, 0.9405027031898499, 0.935535192489624], "confidence_by_field": 0.10013983398675919, "original_text": "れないときは、他の所見による該断確定"}, {"location": [[279, 723], [734, 723], [734, 748], [279, 748]], "type": "textline", "text": "って該断確定(痛理組徹学的所見が得ら", "confidence_by_character": [0.5176792144775391, 0.9199932813644409, 0.09796779602766037, 0.9594550728797913, 0.9525251388549805, 0.9255276918411255, 0.8833194375038147, 0.019513122737407684, 0.9205401539802551, 0.9198495149612427, 0.04087883606553078, 0.9285556674003601, 0.9615064263343811, 0.9068431258201599, 0.9116907715797424, 0.8873846530914307, 0.966733455657959, 0.8925105929374695], "confidence_by_field": 0.019513122737407684, "original_text": "って該断確定(痛理組徹学的所見が得ら"}, {"location": [[250, 856], [738, 856], [738, 888], [250, 888]], "type": "textline", "text": "(2)被保険者がこの特約の責任開始期以後", "confidence_by_character": [0.9145702719688416, 0.9203549027442932, 0.9303025603294373, 0.962911069393158, 0.9192936420440674, 0.959520161151886, 0.9336086511611938, 0.7623900175094604, 0.9046905040740967, 0.9294835925102234, 0.9345163106918335, 0.9045670032501221, 0.924521803855896, 0.6788541078567505, 0.9220397472381592, 0.9378833770751953, 0.9613703489303589, 0.9384564757347107, 0.9463673830032349, 0.9180962443351746], "confidence_by_field": 0.6788541078567505, "original_text": "(2)被保険者がこの特約の責任開始期以後"}, {"location": [[276, 826], [612, 826], [612, 851], [276, 851]], "type": "textline", "text": "定」といいます.)されたとき", "confidence_by_character": [0.8972415924072266, 0.9186968207359314, 0.8743255138397217, 0.920418918132782, 0.8868007063865662, 0.9150501489639282, 0.9262182712554932, 0.9306429624557495, 0.93329918384552, 0.9057691693305969, 0.9416803121566772, 0.9215344190597534, 0.9327123761177063, 0.9029223322868347], "confidence_by_field": 0.8743255138397217, "original_text": "定」といいます。)されたとき"}, {"location": [[278, 791], [735, 791], [735, 816], [278, 816]], "type": "textline", "text": "も認めることがあります.以下「該断確", "confidence_by_character": [0.9239938259124756, 0.9027630686759949, 0.9032089114189148, 0.9158375859260559, 0.9182983636856079, 0.9111630320549011, 0.9020538926124573, 0.9375556111335754, 0.9301198720932007, 0.9145282506942749, 0.928652286529541, 0.9162065982818604, 0.9606265425682068, 0.9127840995788574, 0.7499597668647766, 0.06434271484613419, 0.9666247367858887, 0.9190996885299683], "confidence_by_field": 0.06434271484613419, "original_text": "も認めることがあります。以下「該断確"}, {"location": [[276, 893], [735, 893], [735, 919], [276, 919]], "type": "textline", "text": "の突痛を原因として,この特約の保険期", "confidence_by_character": [0.9038205742835999, 0.011228583753108978, 0.02238442376255989, 0.9151222109794617, 0.9374017715454102, 0.9028409123420715, 0.9155310392379761, 0.9267550706863403, 0.9237565398216248, 0.9372388124465942, 0.9210761785507202, 0.9216369986534119, 0.9393951296806335, 0.9071373343467712, 0.9174656867980957, 0.9056892395019531, 0.9480227828025818, 0.9401370882987976], "confidence_by_field": 0.011228583753108978, "original_text": "の突痛を原因として、この特約の保険期"}, {"location": [[273, 960], [328, 960], [328, 990], [273, 990]], "type": "textline", "text": "とき", "confidence_by_character": [0.8907244801521301, 0.9175162315368652], "confidence_by_field": 0.8907244801521301, "original_text": "とき"}, {"location": [[277, 928], [735, 928], [735, 953], [277, 953]], "type": "textline", "text": "間中につぎのいずれかの状態に該当した", "confidence_by_character": [0.9374570250511169, 0.9334838390350342, 0.9184666872024536, 0.9298741817474365, 0.9745951890945435, 0.9023963809013367, 0.9289823174476624, 0.9492061138153076, 0.9185802340507507, 0.9211233854293823, 0.924004077911377, 0.9322214722633362, 0.9740237593650818, 0.9021586179733276, 0.7758291959762573, 0.9417943954467773, 0.9119629263877869, 0.9296358227729797], "confidence_by_field": 0.7758291959762573, "original_text": "間中につぎのいずれかの状態に該当した"}, {"location": [[278, 995], [735, 995], [735, 1022], [278, 1022]], "type": "textline", "text": "(ア)急性心筋硬審(表1)を発防し,そ", "confidence_by_character": [0.9149819016456604, 0.9233137369155884, 0.9307668805122375, 0.9606335163116455, 0.9363842010498047, 0.851375162601471, 0.8539536595344543, 0.036952827125787735, 0.010238006711006165, 0.918579638004303, 0.9251955151557922, 0.907378077507019, 0.9184788465499878, 0.9293937683105469, 0.9325463771820068, 0.01656365767121315, 0.9170683026313782, 0.9564916491508484, 0.9241211414337158], "confidence_by_field": 0.010238006711006165, "original_text": "(ア)急性心筋硬審(表1)を発防し、そ"}, {"location": [[302, 1030], [736, 1030], [736, 1056], [302, 1056]], "type": "textline", "text": "の床痛により初めて区師の該察を受け", "confidence_by_character": [0.8941437602043152, 0.010861417278647423, 0.014848186634480953, 0.9079936146736145, 0.9390951991081238, 0.9199753999710083, 0.9594464302062988, 0.9282305836677551, 0.9197865724563599, 0.00806320458650589, 0.40633338689804077, 0.9143738150596619, 0.08416256308555603, 0.014835861511528492, 0.9092310070991516, 0.9430376887321472, 0.9329000115394592], "confidence_by_field": 0.00806320458650589, "original_text": "の床痛により初めて区師の該察を受け"}, {"location": [[301, 1098], [736, 1098], [736, 1124], [301, 1124]], "type": "textline", "text": "働の制限を必要とする状態(軽い像事", "confidence_by_character": [0.9009829163551331, 0.9191023111343384, 0.8970955014228821, 0.8905977606773376, 0.914467990398407, 0.9235474467277527, 0.9423009157180786, 0.9094595909118652, 0.9230743646621704, 0.9234513640403748, 0.9386523962020874, 0.9793713092803955, 0.8853098154067993, 0.8862489461898804, 0.8765604496002197, 0.004648383241146803, 0.8643226027488708], "confidence_by_field": 0.004648383241146803, "original_text": "働の制限を必要とする状態(軽い像事"}, {"location": [[303, 1065], [736, 1065], [736, 1090], [303, 1090]], "type": "textline", "text": "た日からその日を含めて60日以上,劣", "confidence_by_character": [0.8884245753288269, 0.906578779220581, 0.9594273567199707, 0.9272266030311584, 0.9284495115280151, 0.9298693537712097, 0.9068285226821899, 0.9127933979034424, 0.8916849493980408, 0.9468129277229309, 0.927182137966156, 0.9064218401908875, 0.921754777431488, 0.8930218815803528, 0.9485541582107544, 0.9087014198303223, 0.960502564907074, 0.18593432009220123], "confidence_by_field": 0.18593432009220123, "original_text": "た日からその日を含めて60日以上、劣"}, {"location": [[302, 1166], [735, 1166], [735, 1192], [302, 1192]], "type": "textline", "text": "が,それ以上の活動では制限を必要と", "confidence_by_character": [0.904133141040802, 0.9555248618125916, 0.899743378162384, 0.9316019415855408, 0.9512538313865662, 0.9193737506866455, 0.924225389957428, 0.7963885068893433, 0.9436864256858826, 0.9180408120155334, 0.9019982218742371, 0.9283415079116821, 0.8650856018066406, 0.9232286810874939, 0.9162577390670776, 0.9544732570648193, 0.9150718450546265], "confidence_by_field": 0.7963885068893433, "original_text": "が、それ以上の活動では制限を必要と"}, {"location": [[302, 1133], [734, 1133], [734, 1158], [302, 1158]], "type": "textline", "text": "等の軽労働や事務等の座業はできる", "confidence_by_character": [0.9499920010566711, 0.9249370098114014, 0.8153782486915588, 0.34456557035446167, 0.8650794625282288, 0.9304347634315491, 0.9022746682167053, 0.8820035457611084, 0.9537000060081482, 0.9258447289466858, 0.9331746101379395, 0.8797627091407776, 0.9128444790840149, 0.9112674593925476, 0.9284775257110596, 0.9005979895591736], "confidence_by_field": 0.34456557035446167, "original_text": "等の軽労働や事務等の座業はできる"}, {"location": [[278, 1270], [735, 1270], [735, 1295], [278, 1295]], "type": "textline", "text": "(イ)膨率中(表1)を発防し,その床府", "confidence_by_character": [0.9161911010742188, 0.9246498346328735, 0.9302082657814026, 0.015158296562731266, 0.2781333029270172, 0.9269522428512573, 0.9117370247840881, 0.9301137924194336, 0.9095531105995178, 0.9212064146995544, 0.926194965839386, 0.9318331480026245, 0.02072237804532051, 0.9126610159873962, 0.9514886140823364, 0.9470593929290771, 0.9215971827507019, 0.024742310866713524, 0.03589760884642601], "confidence_by_field": 0.015158296562731266, "original_text": "(イ)膨率中(表1)を発防し、その床府"}, {"location": [[300, 1236], [475, 1236], [475, 1261], [300, 1261]], "type": "textline", "text": "該断されたとき", "confidence_by_character": [0.07780010998249054, 0.9130207300186157, 0.9459731578826904, 0.9198331832885742, 0.9375762343406677, 0.8993015289306641, 0.8995303511619568], "confidence_by_field": 0.07780010998249054, "original_text": "該断されたとき"}, {"location": [[303, 1201], [734, 1201], [734, 1226], [303, 1226]], "type": "textline", "text": "する状態)が継続したと区師によって", "confidence_by_character": [0.9353286027908325, 0.9190906882286072, 0.9398423433303833, 0.973548173904419, 0.9253612756729126, 0.4568330943584442, 0.9038596153259277, 0.9652471542358398, 0.9208381175994873, 0.9364428520202637, 0.9208223819732666, 0.005330304149538279, 0.3626787066459656, 0.9127814769744873, 0.9536643624305725, 0.9267348051071167, 0.9291244149208069], "confidence_by_field": 0.005330304149538279, "original_text": "する状態)が継続したと区師によって"}, {"location": [[303, 1304], [735, 1304], [735, 1329], [303, 1329]], "type": "textline", "text": "により初めて区師の該擦を受けた日か", "confidence_by_character": [0.8718931078910828, 0.9297848343849182, 0.9208692908287048, 0.9648198485374451, 0.9283609390258789, 0.9210059642791748, 0.009913341142237186, 0.4285314679145813, 0.9189834594726562, 0.11145054548978806, 0.013340047560632229, 0.9125711917877197, 0.9361041188240051, 0.9227044582366943, 0.9253753423690796, 0.8803401589393616, 0.9178292751312256], "confidence_by_field": 0.009913341142237186, "original_text": "により初めて区師の該擦を受けた日か"}, {"location": [[301, 1407], [736, 1407], [736, 1432], [301, 1432]], "type": "textline", "text": "後遺症が継続したと区師によって該断", "confidence_by_character": [0.9220598340034485, 0.21388909220695496, 0.8365581035614014, 0.8806819915771484, 0.9078769683837891, 0.9687637686729431, 0.9166513085365295, 0.9354158043861389, 0.9108032584190369, 0.007295319344848394, 0.34679749608039856, 0.9161768555641174, 0.9532549381256104, 0.9158070683479309, 0.9368084073066711, 0.11439694464206696, 0.9590631723403931], "confidence_by_field": 0.007295319344848394, "original_text": "後遺症が継続したと区師によって該断"}, {"location": [[301, 1372], [735, 1372], [735, 1397], [301, 1397]], "type": "textline", "text": "運動失調,床煙等の他覚的な神経学的", "confidence_by_character": [0.9495500326156616, 0.9503293037414551, 0.9499372243881226, 0.9429826736450195, 0.968238353729248, 0.020574122667312622, 0.12222082912921906, 0.9665510058403015, 0.921363890171051, 0.9424115419387817, 0.7953416109085083, 0.9554148316383362, 0.9244764447212219, 0.7465566992759705, 0.9155147671699524, 0.8939201235771179, 0.9672636985778809], "confidence_by_field": 0.020574122667312622, "original_text": "運動失調、床煙等の他覚的な神経学的"}, {"location": [[304, 1338], [730, 1338], [730, 1363], [304, 1363]], "type": "textline", "text": "らその日を含めて60日以上,言語障害,", "confidence_by_character": [0.9332901835441589, 0.9352867007255554, 0.9214786291122437, 0.9149695038795471, 0.9141878485679626, 0.9115000367164612, 0.9322725534439087, 0.9211984276771545, 0.9067767262458801, 0.9161304235458374, 0.9136461019515991, 0.9442322850227356, 0.9319796562194824, 0.9516505002975464, 0.8256756067276001, 0.07586612552404404, 0.9621056914329529, 0.9650334119796753, 0.8926368951797485], "confidence_by_field": 0.07586612552404404, "original_text": "らその日を含めて60日以上、言語障害、"}, {"location": [[255, 1475], [736, 1475], [736, 1500], [255, 1500]], "type": "textline", "text": "(1)被保険者がこの特約の責任開始期以後", "confidence_by_character": [0.9057651162147522, 0.9188685417175293, 0.9353352785110474, 0.9207789301872253, 0.9148053526878357, 0.957207202911377, 0.9384664297103882, 0.7079784274101257, 0.913979709148407, 0.9298413991928101, 0.9322165846824646, 0.917212963104248, 0.9196321964263916, 0.707985520362854, 0.9033918976783752, 0.9391680955886841, 0.956487774848938, 0.9543775916099548, 0.9555329084396362, 0.9218204021453857], "confidence_by_field": 0.7079784274101257, "original_text": "(1)被保険者がこの特約の責任開始期以後"}, {"location": [[302, 1442], [425, 1442], [425, 1466], [302, 1466]], "type": "textline", "text": "されたとき", "confidence_by_character": [0.9355133771896362, 0.9326558709144592, 0.9359634518623352, 0.9055638313293457, 0.9021384119987488], "confidence_by_field": 0.9021384119987488, "original_text": "されたとき"}, {"location": [[276, 1544], [732, 1544], [732, 1569], [276, 1569]], "type": "textline", "text": "約の保険期間中に身体障害の状態(表2)", "confidence_by_character": [0.9333308935165405, 0.9117109775543213, 0.9369082450866699, 0.9716344475746155, 0.9621937274932861, 0.9421867728233337, 0.9194567799568176, 0.9064880609512329, 0.7724400162696838, 0.9296717643737793, 0.9742088913917542, 0.931019127368927, 0.9273474812507629, 0.9316028952598572, 0.9777994751930237, 0.9047409892082214, 0.9174116253852844, 0.9050959944725037, 0.9098514914512634], "confidence_by_field": 0.7724400162696838, "original_text": "約の保険期間中に身体障害の状態(表2)"}, {"location": [[277, 1510], [736, 1510], [736, 1535], [277, 1535]], "type": "textline", "text": "の傷害または狭府を原因として,この特", "confidence_by_character": [0.9028409719467163, 0.23824994266033173, 0.8917105197906494, 0.9001602530479431, 0.9132496118545532, 0.9217504858970642, 0.012961521744728088, 0.0253555029630661, 0.9140534996986389, 0.9329100847244263, 0.9133186340332031, 0.9183961153030396, 0.9264747500419617, 0.9284630417823792, 0.945743203163147, 0.9307458996772766, 0.9204974174499512, 0.9297807216644287], "confidence_by_field": 0.012961521744728088, "original_text": "の傷害または狭府を原因として、この特"}, {"location": [[1012, 1475], [1486, 1475], [1486, 1500], [1012, 1500]], "type": "textline", "text": "つぎのいずれかにより左記の支払事由が", "confidence_by_character": [0.8923049569129944, 0.9697352051734924, 0.8990675806999207, 0.925325334072113, 0.9557349681854248, 0.9170364141464233, 0.9421206116676331, 0.9102945327758789, 0.9368903636932373, 0.9254054427146912, 0.8710336685180664, 0.9164294004440308, 0.9294902682304382, 0.8892562985420227, 0.9235896468162537, 0.8957183957099915, 0.9540249705314636, 0.8977389931678772], "confidence_by_field": 0.8710336685180664, "original_text": "つぎのいずれかにより左記の支払事由が"}, {"location": [[1012, 1544], [1484, 1544], [1484, 1569], [1012, 1569]], "type": "textline", "text": "通保険約熟に定める高度障害状態に該当", "confidence_by_character": [0.953064501285553, 0.9076025485992432, 0.9571810364723206, 0.908635675907135, 0.18894098699092865, 0.8604511618614197, 0.8857568502426147, 0.9272035360336304, 0.9149977564811707, 0.9368578195571899, 0.9259259700775146, 0.9627050161361694, 0.9240074157714844, 0.9401941895484924, 0.9732699394226074, 0.8727509379386902, 0.8297643661499023, 0.9336784482002258], "confidence_by_field": 0.18894098699092865, "original_text": "通保険約熟に定める高度障害状態に該当"}, {"location": [[1012, 1509], [1265, 1509], [1265, 1535], [1012, 1535]], "type": "textline", "text": "生じたとき.ただし,", "confidence_by_character": [0.8970961570739746, 0.899296760559082, 0.9216511845588684, 0.9080119132995605, 0.9037990570068359, 0.86524498462677, 0.8907573819160461, 0.9484388828277588, 0.9098504185676575, 0.6090220808982849], "confidence_by_field": 0.6090220808982849, "original_text": "生じたとき。ただし、"}, {"location": [[1258, 1510], [1486, 1510], [1486, 1535], [1258, 1535]], "type": "textline", "text": "主たる保険契約の普", "confidence_by_character": [0.8909932374954224, 0.8876230716705322, 0.8977560997009277, 0.9238340258598328, 0.9551594853401184, 0.592372715473175, 0.9141716361045837, 0.8891472220420837, 0.7104942202568054], "confidence_by_field": 0.592372715473175, "original_text": "主たる保険契約の普"}, {"location": [[276, 1680], [735, 1680], [735, 1705], [276, 1705]], "type": "textline", "text": "なった傷害または焼痛と因果関係のない", "confidence_by_character": [0.9194111227989197, 0.9230882525444031, 0.9253413677215576, 0.31776443123817444, 0.9033994674682617, 0.9050596952438354, 0.9141675233840942, 0.9168290495872498, 0.014201381243765354, 0.019307326525449753, 0.907903790473938, 0.7361969351768494, 0.9373441934585571, 0.9269455671310425, 0.9118359684944153, 0.9244831204414368, 0.9248407483100891, 0.9225130677223206], "confidence_by_field": 0.014201381243765354, "original_text": "なった傷害または焼痛と因果関係のない"}, {"location": [[277, 1646], [734, 1646], [734, 1671], [277, 1671]], "type": "textline", "text": "いた障害状態に,その障害状態の原因と", "confidence_by_character": [0.9155271053314209, 0.9125941395759583, 0.9610145092010498, 0.9146157503128052, 0.9379783868789673, 0.9724848866462708, 0.8932590484619141, 0.9283587336540222, 0.9101077914237976, 0.9238330125808716, 0.9734062552452087, 0.9199564456939697, 0.9261582493782043, 0.9793279767036438, 0.9195030331611633, 0.9423232674598694, 0.8642088174819946, 0.9132778644561768], "confidence_by_field": 0.8642088174819946, "original_text": "いた障害状態に、その障害状態の原因と"}, {"location": [[277, 1612], [734, 1612], [734, 1637], [277, 1637]], "type": "textline", "text": "この場合,責任開始期前にすでに生じて", "confidence_by_character": [0.9190664291381836, 0.9263764023780823, 0.9347319602966309, 0.9005952477455139, 0.9329098463058472, 0.5667293071746826, 0.9177517294883728, 0.9451292157173157, 0.9648154377937317, 0.9602870941162109, 0.9167409539222717, 0.9128045439720154, 0.9051220417022705, 0.9051921963691711, 0.9004684090614319, 0.9069657921791077, 0.8640713095664978, 0.92499178647995], "confidence_by_field": 0.5667293071746826, "original_text": "この場合、責任開始期前にすでに生じて"}, {"location": [[278, 1578], [462, 1578], [462, 1603], [278, 1603]], "type": "textline", "text": "に該当したとき.", "confidence_by_character": [0.8394531011581421, 0.8031570315361023, 0.9470468759536743, 0.9157166481018066, 0.940994143486023, 0.9121335744857788, 0.9125656485557556, 0.9244294166564941], "confidence_by_field": 0.8031570315361023, "original_text": "に該当したとき。"}, {"location": [[1012, 1611], [1484, 1611], [1484, 1637], [1012, 1637]], "type": "textline", "text": "保険金の発責事由により左記の支払事由", "confidence_by_character": [0.8998183608055115, 0.9525294899940491, 0.9160871505737305, 0.9260021448135376, 0.016864150762557983, 0.46186524629592896, 0.8665362596511841, 0.9544540643692017, 0.8987780213356018, 0.9284607768058777, 0.927483320236206, 0.8718485236167908, 0.918066143989563, 0.9233691096305847, 0.8662676215171814, 0.9257810115814209, 0.8998402953147888, 0.9526525735855103], "confidence_by_field": 0.016864150762557983, "original_text": "保険金の発責事由により左記の支払事由"}, {"location": [[1016, 1578], [1485, 1578], [1485, 1603], [1016, 1603]], "type": "textline", "text": "した場合には,主たる保険契約の高度障害", "confidence_by_character": [0.9130265116691589, 0.9265579581260681, 0.9198191165924072, 0.9056029319763184, 0.9112870693206787, 0.9107478857040405, 0.9609993100166321, 0.9311019778251648, 0.8784428834915161, 0.8951900005340576, 0.9002702832221985, 0.9354110360145569, 0.6171889901161194, 0.9192357659339905, 0.9025939702987671, 0.9328992962837219, 0.9149187207221985, 0.9544237852096558, 0.9404372572898865], "confidence_by_field": 0.6171889901161194, "original_text": "した場合には、主たる保険契約の高度障害"}, {"location": [[1013, 1646], [1271, 1646], [1271, 1671], [1013, 1671]], "type": "textline", "text": "が生じたときとします.", "confidence_by_character": [0.8949617743492126, 0.9196597337722778, 0.8815504908561707, 0.9241631627082825, 0.9064595699310303, 0.909713864326477, 0.9007099270820618, 0.9257874488830566, 0.9276024699211121, 0.9273697137832642, 0.9370548725128174], "confidence_by_field": 0.8815504908561707, "original_text": "が生じたときとします。"}, {"location": [[277, 1715], [735, 1715], [735, 1740], [277, 1740]], "type": "textline", "text": "責任開始期以後の傷害または戻痛を原因", "confidence_by_character": [0.5832752585411072, 0.9202549457550049, 0.9428575038909912, 0.9596161246299744, 0.9611286520957947, 0.9237855076789856, 0.9294186234474182, 0.918286919593811, 0.2884748578071594, 0.8569996953010559, 0.9076820611953735, 0.9127031564712524, 0.927463710308075, 0.013664685189723969, 0.016581807285547256, 0.9182561635971069, 0.9364768266677856, 0.7126746773719788], "confidence_by_field": 0.013664685189723969, "original_text": "責任開始期以後の傷害または戻痛を原因"}, {"location": [[1016, 1680], [1484, 1680], [1484, 1705], [1016, 1705]], "type": "textline", "text": "(1)保険契約者または被保険者の故意ま", "confidence_by_character": [0.905410647392273, 0.9226492643356323, 0.9368510246276855, 0.9373454451560974, 0.9655036926269531, 0.5977654457092285, 0.9267878532409668, 0.9377965331077576, 0.9184971451759338, 0.9284961223602295, 0.9166563153266907, 0.9166068434715271, 0.8900836706161499, 0.9504457116127014, 0.9292141199111938, 0.9228031039237976, 0.9502900838851929, 0.914122998714447, 0.8826361298561096], "confidence_by_field": 0.5977654457092285, "original_text": "(1)保険契約者または被保険者の故意ま"}, {"location": [[1031, 1715], [1207, 1715], [1207, 1740], [1031, 1740]], "type": "textline", "text": "たは重大な過失", "confidence_by_character": [0.9006530046463013, 0.9117195010185242, 0.9446443319320679, 0.9046624302864075, 0.933635950088501, 0.9604212045669556, 0.9202997088432312], "confidence_by_field": 0.9006530046463013, "original_text": "たは重大な過失"}, {"location": [[254, 1817], [309, 1817], [309, 1842], [254, 1842]], "type": "textline", "text": "(2) *", "confidence_by_character": [0.8977270126342773, 0.9184948801994324, 0.9288362264633179, 0.7788991332054138, 0.2710346579551697], "confidence_by_field": 0.2710346579551697, "original_text": "(2) *"}, {"location": [[276, 1783], [686, 1783], [686, 1808], [276, 1808]], "type": "textline", "text": "害の状態に該当したときを含みます.", "confidence_by_character": [0.8500064015388489, 0.9251824617385864, 0.9454014897346497, 0.9623931050300598, 0.8938355445861816, 0.8116031885147095, 0.9515053033828735, 0.9101688861846924, 0.9342653751373291, 0.9176696538925171, 0.902728796005249, 0.9111469388008118, 0.913989245891571, 0.9136455059051514, 0.9209209084510803, 0.9274401664733887, 0.9451953768730164], "confidence_by_field": 0.8116031885147095, "original_text": "害の状態に該当したときを含みます。"}, {"location": [[278, 1749], [736, 1749], [736, 1774], [278, 1774]], "type": "textline", "text": "とする障害状態が新たに加わって身体障", "confidence_by_character": [0.8845162391662598, 0.9329820871353149, 0.9243189692497253, 0.9691643714904785, 0.9336928129196167, 0.9384492039680481, 0.9731989502906799, 0.9028695821762085, 0.9097716808319092, 0.9110226035118103, 0.9007664918899536, 0.9030851721763611, 0.9108493328094482, 0.9078460335731506, 0.9375430941581726, 0.7541211247444153, 0.937086284160614, 0.974105954170227], "confidence_by_field": 0.7541211247444153, "original_text": "とする障害状態が新たに加わって身体障"}, {"location": [[1010, 1780], [1488, 1780], [1488, 1811], [1010, 1811]], "type": "textline", "text": "(3)被保険者の精神障害を原因とする事故", "confidence_by_character": [0.9098484516143799, 0.9294143915176392, 0.9331152439117432, 0.9586104154586792, 0.9153378009796143, 0.9552173614501953, 0.9254886507987976, 0.9151443839073181, 0.8944721817970276, 0.7747148275375366, 0.9559048414230347, 0.9129393696784973, 0.911578893661499, 0.9254134297370911, 0.9328516721725464, 0.9018868207931519, 0.9277304410934448, 0.9135230183601379, 0.9040361046791077, 0.8780733346939087], "confidence_by_field": 0.7747148275375366, "original_text": "(3)被保険者の精神障害を原因とする事故"}, {"location": [[1010, 1745], [1289, 1745], [1289, 1778], [1010, 1778]], "type": "textline", "text": "(2)被保険者の狙距行為", "confidence_by_character": [0.9114443063735962, 0.9207828640937805, 0.9289848804473877, 0.9590325951576233, 0.9171658754348755, 0.9529890418052673, 0.9302305579185486, 0.9224250316619873, 0.031096892431378365, 0.02971167117357254, 0.8920750617980957, 0.9054926633834839], "confidence_by_field": 0.02971167117357254, "original_text": "(2)被保険者の狙距行為"}, {"location": [[276, 1885], [733, 1885], [733, 1910], [276, 1910]], "type": "textline", "text": "傷害を直接の原因として,その事故の日", "confidence_by_character": [0.23057296872138977, 0.898750364780426, 0.9133051037788391, 0.9458284378051758, 0.9263248443603516, 0.9275506734848022, 0.9365020990371704, 0.916610062122345, 0.9225864410400391, 0.9254698753356934, 0.9257944822311401, 0.9580093622207642, 0.9244093298912048, 0.9161701798439026, 0.9219163060188293, 0.9569306373596191, 0.9197542071342468, 0.7664932608604431], "confidence_by_field": 0.23057296872138977, "original_text": "傷害を直接の原因として、その事故の日"}, {"location": [[278, 1851], [734, 1851], [734, 1876], [278, 1876]], "type": "textline", "text": "に発生した不慮の事故(別表2)による", "confidence_by_character": [0.8742212057113647, 0.9188780784606934, 0.9564688801765442, 0.920740008354187, 0.9291720390319824, 0.8156112432479858, 0.9521445631980896, 0.9286457300186157, 0.905735969543457, 0.9555588960647583, 0.9169269800186157, 0.918068528175354, 0.9132606983184814, 0.9086467623710632, 0.9148620367050171, 0.9227402806282043, 0.9545817971229553, 0.9099894762039185], "confidence_by_field": 0.8156112432479858, "original_text": "に発生した不慮の事故(別表2)による"}, {"location": [[300, 1817], [736, 1817], [736, 1842], [300, 1842]], "type": "textline", "text": "被保険者がこの特約の責任開始期以後", "confidence_by_character": [0.9122813940048218, 0.8859077095985413, 0.9581550359725952, 0.934581458568573, 0.8072779774665833, 0.9132143259048462, 0.921849250793457, 0.9331659078598022, 0.9120152592658997, 0.9210534691810608, 0.6357351541519165, 0.9204317927360535, 0.9395684599876404, 0.9676194190979004, 0.9482271075248718, 0.9479436278343201, 0.9160388112068176], "confidence_by_field": 0.6357351541519165, "original_text": "被保険者がこの特約の責任開始期以後"}, {"location": [[1011, 1815], [1069, 1815], [1069, 1843], [1011, 1843]], "type": "textline", "text": "(4) *", "confidence_by_character": [0.9019955992698669, 0.9223871827125549, 0.9222072958946228, 0.7925444841384888, 0.25650665163993835], "confidence_by_field": 0.25650665163993835, "original_text": "(4) *"}, {"location": [[1032, 1850], [1066, 1850], [1066, 1878], [1032, 1878]], "type": "textline", "text": "故", "confidence_by_character": [0.937667727470398], "confidence_by_field": 0.937667727470398, "original_text": "故"}, {"location": [[1060, 1817], [1487, 1817], [1487, 1842], [1060, 1842]], "type": "textline", "text": "被保険者の泥枠の状態を原因とする事", "confidence_by_character": [0.907856822013855, 0.8915528059005737, 0.9605796933174133, 0.9326459765434265, 0.9188278317451477, 0.3090090751647949, 0.02183050662279129, 0.9158284664154053, 0.9319888353347778, 0.9750328063964844, 0.9217304587364197, 0.920258104801178, 0.8598081469535828, 0.908865213394165, 0.9283238053321838, 0.9197279810905457, 0.8867939710617065], "confidence_by_field": 0.02183050662279129, "original_text": "被保険者の泥枠の状態を原因とする事"}, {"location": [[276, 1954], [732, 1954], [732, 1979], [276, 1979]], "type": "textline", "text": "約の保険期間中に身体障害の状態(表3)", "confidence_by_character": [0.9332817792892456, 0.9114986658096313, 0.9373210072517395, 0.9709228277206421, 0.9620503783226013, 0.9434975981712341, 0.9189087748527527, 0.906343400478363, 0.7728118300437927, 0.9295898079872131, 0.9738451838493347, 0.9329978823661804, 0.9273393750190735, 0.9327871203422546, 0.9778687357902527, 0.9089943766593933, 0.9083945155143738, 0.9148865938186646, 0.9164432883262634], "confidence_by_field": 0.7728118300437927, "original_text": "約の保険期間中に身体障害の状態(表3)"}, {"location": [[277, 1920], [736, 1920], [736, 1945], [277, 1945]], "type": "textline", "text": "からその日を含めて180日以内のこの特", "confidence_by_character": [0.9530931115150452, 0.9300286173820496, 0.9338508248329163, 0.931902289390564, 0.9163941740989685, 0.9184722304344177, 0.9133956432342529, 0.9290242791175842, 0.9281145930290222, 0.9010629653930664, 0.9130116105079651, 0.9174620509147644, 0.9036715030670166, 0.9705585241317749, 0.9249914884567261, 0.9107548594474792, 0.8966514468193054, 0.9098841547966003, 0.9292749762535095], "confidence_by_field": 0.8966514468193054, "original_text": "からその日を含めて180日以内のこの特"}, {"location": [[1016, 1885], [1060, 1885], [1060, 1910], [1016, 1910]], "type": "textline", "text": "(5)", "confidence_by_character": [0.8948476314544678, 0.9099094271659851, 0.9307319521903992], "confidence_by_field": 0.8948476314544678, "original_text": "(5)"}, {"location": [[1060, 1885], [1486, 1885], [1486, 1910], [1060, 1910]], "type": "textline", "text": "被保険者が法令に定める運転資格を持", "confidence_by_character": [0.8886399269104004, 0.8859876990318298, 0.9584472179412842, 0.9326941967010498, 0.7467867732048035, 0.9308522939682007, 0.7602894902229309, 0.8804838061332703, 0.8840285539627075, 0.9492177963256836, 0.9123191833496094, 0.9681856036186218, 0.9672236442565918, 0.9379209876060486, 0.9223914742469788, 0.9070433378219604, 0.9462351202964783], "confidence_by_field": 0.7467867732048035, "original_text": "被保険者が法令に定める運転資格を持"}, {"location": [[1014, 1953], [1487, 1953], [1487, 1980], [1014, 1980]], "type": "textline", "text": "(6)被保険者が法令に定める適気帯び運転", "confidence_by_character": [0.9150888919830322, 0.9214721322059631, 0.9342091679573059, 0.9301038980484009, 0.9158092141151428, 0.9549092054367065, 0.9340863227844238, 0.56650710105896, 0.9190481305122375, 0.7557728886604309, 0.8988602757453918, 0.8890562057495117, 0.936532735824585, 0.9105523228645325, 0.012075675651431084, 0.9141476154327393, 0.934658944606781, 0.9311647415161133, 0.955561101436615, 0.9505613446235657], "confidence_by_field": 0.012075675651431084, "original_text": "(6)被保険者が法令に定める適気帯び運転"}, {"location": [[1038, 1920], [1461, 1920], [1461, 1945], [1038, 1945]], "type": "textline", "text": "たないで運転している間に生じた事故", "confidence_by_character": [0.874081552028656, 0.9360876083374023, 0.929073691368103, 0.9122254252433777, 0.9396843314170837, 0.9466610550880432, 0.9137982726097107, 0.9332326650619507, 0.936794102191925, 0.9290194511413574, 0.8254371285438538, 0.9068252444267273, 0.8994377255439758, 0.9044618010520935, 0.9208065271377563, 0.9012447595596313, 0.9213835000991821], "confidence_by_field": 0.8254371285438538, "original_text": "たないで運転している間に生じた事故"}, {"location": [[1035, 2018], [1187, 2018], [1187, 2048], [1035, 2048]], "type": "textline", "text": "に生じた事故", "confidence_by_character": [0.8944463729858398, 0.9091018438339233, 0.8936704993247986, 0.9221444725990295, 0.9076920747756958, 0.9375616908073425], "confidence_by_field": 0.8936704993247986, "original_text": "に生じた事故"}, {"location": [[1039, 1988], [1486, 1988], [1486, 2013], [1039, 2013]], "type": "textline", "text": "またはこれに相当する運転をしている間", "confidence_by_character": [0.9089561104774475, 0.9089406728744507, 0.9209654927253723, 0.9265916347503662, 0.923480212688446, 0.90553879737854, 0.9306434392929077, 0.9564853310585022, 0.9313888549804688, 0.9253420829772949, 0.9606698155403137, 0.9625823497772217, 0.9153837561607361, 0.9160066843032837, 0.9377244114875793, 0.9394066333770752, 0.9249351620674133, 0.8453755974769592], "confidence_by_field": 0.8453755974769592, "original_text": "またはこれに相当する運転をしている間"}, {"location": [[277, 2056], [735, 2056], [735, 2081], [277, 2081]], "type": "textline", "text": "いた障害状態に,責任開始期以後の傷害", "confidence_by_character": [0.9164726734161377, 0.9117560386657715, 0.9592719674110413, 0.9075707197189331, 0.9344633221626282, 0.9734355211257935, 0.8852411508560181, 0.920825719833374, 0.6267685294151306, 0.9217753410339355, 0.9313830137252808, 0.9591841101646423, 0.9636324048042297, 0.9640731811523438, 0.9345065951347351, 0.9097481966018677, 0.31322604417800903, 0.8975820541381836], "confidence_by_field": 0.31322604417800903, "original_text": "いた障害状態に、責任開始期以後の傷害"}, {"location": [[277, 2022], [734, 2022], [734, 2047], [277, 2047]], "type": "textline", "text": "この場合,責任開始期前にすでに生じて", "confidence_by_character": [0.9186506867408752, 0.9263827800750732, 0.9339806437492371, 0.9001444578170776, 0.9330470561981201, 0.5636475682258606, 0.9185742139816284, 0.9448221325874329, 0.964725136756897, 0.9603971242904663, 0.9174056053161621, 0.9125335812568665, 0.9048822522163391, 0.9054714441299438, 0.9003626704216003, 0.9063884615898132, 0.8642902970314026, 0.9244899153709412], "confidence_by_field": 0.5636475682258606, "original_text": "この場合、責任開始期前にすでに生じて"}, {"location": [[278, 1988], [461, 1988], [461, 2013], [278, 2013]], "type": "textline", "text": "に該当したとき.", "confidence_by_character": [0.8428046107292175, 0.8018206357955933, 0.946591317653656, 0.9157599210739136, 0.9407289624214172, 0.9115110635757446, 0.9128658175468445, 0.9238277077674866], "confidence_by_field": 0.8018206357955933, "original_text": "に該当したとき。"}, {"location": [[1013, 2055], [1286, 2055], [1286, 2082], [1013, 2082]], "type": "textline", "text": "(7)被保険者の薬物依存", "confidence_by_character": [0.9068487882614136, 0.9302968978881836, 0.9329400658607483, 0.9086945056915283, 0.9241053462028503, 0.9473904371261597, 0.9334084391593933, 0.9189527630805969, 0.6277765035629272, 0.9218646883964539, 0.9493592977523804, 0.9627693891525269], "confidence_by_field": 0.6277765035629272, "original_text": "(7)被保険者の薬物依存"}, {"location": [[273, 2156], [317, 2156], [317, 2188], [273, 2188]], "type": "textline", "text": "す.", "confidence_by_character": [0.9085758924484253, 0.9388297200202942], "confidence_by_field": 0.9085758924484253, "original_text": "す。"}, {"location": [[277, 2125], [734, 2125], [734, 2150], [277, 2150]], "type": "textline", "text": "身体障害の状態に該当したときを含みま", "confidence_by_character": [0.7384694814682007, 0.9384440779685974, 0.9604974389076233, 0.9227866530418396, 0.9346257448196411, 0.9376673102378845, 0.9737567901611328, 0.8854861855506897, 0.7305890321731567, 0.9516874551773071, 0.911097526550293, 0.9342941045761108, 0.9139635562896729, 0.9075524210929871, 0.9107821583747864, 0.8737260699272156, 0.9298231601715088, 0.9137836694717407], "confidence_by_field": 0.7305890321731567, "original_text": "身体障害の状態に該当したときを含みま"}, {"location": [[279, 2090], [734, 2090], [734, 2115], [279, 2115]], "type": "textline", "text": "を原因とする障害状態が新たに加わって", "confidence_by_character": [0.9024356007575989, 0.9243841767311096, 0.8945578336715698, 0.9069491028785706, 0.9372764229774475, 0.9253113269805908, 0.9650734066963196, 0.9006072282791138, 0.9380558133125305, 0.9739949107170105, 0.9315987825393677, 0.8851877450942993, 0.896052896976471, 0.9055585265159607, 0.8949632048606873, 0.9136386513710022, 0.9274686574935913, 0.9284916520118713], "confidence_by_field": 0.8851877450942993, "original_text": "を原因とする障害状態が新たに加わって"}, {"location": [[1013, 2123], [1052, 2123], [1052, 2153], [1013, 2153]], "type": "textline", "text": "(9)", "confidence_by_character": [0.9080133438110352, 0.9043115377426147, 0.9337706565856934], "confidence_by_field": 0.9043115377426147, "original_text": "(9)"}, {"location": [[1013, 2090], [1127, 2090], [1127, 2117], [1013, 2117]], "type": "textline", "text": "(8)地衷,", "confidence_by_character": [0.9113506078720093, 0.9256706833839417, 0.9298665523529053, 0.8602956533432007, 0.019131328910589218, 0.8155532479286194], "confidence_by_field": 0.019131328910589218, "original_text": "(8)地衷、"}, {"location": [[1061, 2125], [1261, 2125], [1261, 2150], [1061, 2150]], "type": "textline", "text": "戦手その他の変乱", "confidence_by_character": [0.2469213604927063, 0.04298042505979538, 0.8988473415374756, 0.921698272228241, 0.9510940909385681, 0.9197437167167664, 0.9491228461265564, 0.8848781585693359], "confidence_by_field": 0.04298042505979538, "original_text": "戦手その他の変乱"}, {"location": [[1136, 2090], [1311, 2090], [1311, 2115], [1136, 2115]], "type": "textline", "text": "晴火または津波", "confidence_by_character": [0.20265941321849823, 0.9377689957618713, 0.9202309250831604, 0.9231849908828735, 0.9179595112800598, 0.9214345812797546, 0.9746209979057312], "confidence_by_field": 0.20265941321849823, "original_text": "晴火または津波"}, {"location": [[1426, 2237], [1505, 2237], [1505, 2287], [1426, 2287]], "type": "textline", "text": "229", "confidence_by_character": [0.9204025864601135, 0.9142265319824219, 0.9172570109367371], "confidence_by_field": 0.9142265319824219, "original_text": "229"}, {"location": [[179, 302], [207, 302], [207, 553], [179, 553]], "type": "textline", "text": "特約死亡保険金", "confidence_by_character": [0.999996542930603, 0.9999337196350098, 0.9999344348907471, 0.9998997449874878, 0.9999982118606567, 0.9999872446060181, 0.9999834299087524], "confidence_by_field": 0.9998997449874878, "original_text": "特約死亡保険金"}, {"location": [[181, 864], [206, 864], [206, 1188], [181, 1188]], "type": "textline", "text": "特約特定疾病保険金", "confidence_by_character": [0.9999991655349731, 0.9999440908432007, 0.9999992847442627, 0.9999927282333374, 0.9992959499359131, 0.9999964237213135, 0.9999961853027344, 0.999993085861206, 0.9999822378158569], "confidence_by_field": 0.9992959499359131, "original_text": "特約特定疾病保険金"}, {"location": [[178, 1703], [207, 1703], [207, 1956], [178, 1956]], "type": "textline", "text": "特約障害保険金", "confidence_by_character": [0.9999972581863403, 0.9999091625213623, 0.9999688863754272, 0.9999490976333618, 0.9999984502792358, 0.9999864101409912, 0.9999845027923584], "confidence_by_field": 0.9999091625213623, "original_text": "特約障害保険金"}, {"location": [[799, 1125], [824, 1125], [824, 1337], [799, 1337]], "type": "textline", "text": "特約保険金額", "confidence_by_character": [0.9999961853027344, 0.999916672706604, 0.9999984502792358, 0.999995231628418, 0.9999932050704956, 0.99996018409729], "confidence_by_field": 0.999916672706604, "original_text": "特約保険金額"}, {"location": [[924, 302], [949, 302], [949, 552], [924, 552]], "type": "textline", "text": "特約死亡保険金受取人", "confidence_by_character": [0.9999902248382568, 0.9999138116836548, 0.9994902610778809, 0.9997605681419373, 0.9999973773956299, 0.9999876022338867, 0.9999923706054688, 0.9999967813491821, 0.9999884366989136, 0.9979104399681091], "confidence_by_field": 0.9979104399681091, "original_text": "特約死亡保険金受取人"}, {"location": [[924, 807], [949, 807], [949, 1245], [924, 1245]], "type": "textline", "text": "特約特定疾病保険金受取人", "confidence_by_character": [0.9999990463256836, 0.9999302625656128, 0.9999992847442627, 0.9999791383743286, 0.998921275138855, 0.9999970197677612, 0.9999963045120239, 0.9999867677688599, 0.9999908208847046, 0.9999887943267822, 0.9999725818634033, 0.999987006187439], "confidence_by_field": 0.998921275138855, "original_text": "特約特定疾病保険金受取人"}, {"location": [[924, 1649], [949, 1649], [949, 2011], [924, 2011]], "type": "textline", "text": "特約障害保険金受取人", "confidence_by_character": [0.9999961853027344, 0.9998977184295654, 0.9999797344207764, 0.9999551773071289, 0.9999983310699463, 0.9999929666519165, 0.9999896287918091, 0.9999966621398926, 0.9999856948852539, 0.9999551773071289], "confidence_by_field": 0.9998977184295654, "original_text": "特約障害保険金受取人"}, {"location": [[1583, 572], [1610, 572], [1610, 1099], [1583, 1099]], "type": "textline", "text": "5年ごと配当付特定状態保障定期保険特約", "confidence_by_character": [0.999971866607666, 0.9999923706054688, 0.9994663596153259, 0.9999862909317017, 0.9999887943267822, 0.9999904632568359, 0.9999889135360718, 0.9999942779541016, 0.9999955892562866, 0.9999912977218628, 0.9996474981307983, 0.9999905824661255, 0.9968845248222351, 0.9999926090240479, 0.9999896287918091, 0.9999954700469971, 0.9999814033508301, 0.9999880790710449, 0.9999537467956543], "confidence_by_field": 0.9968845248222351, "original_text": "5年ごと配当付特定状態保障定期保険特約"}], "table": [{"location": [[1001, 1473], [1496, 1473], [1496, 2186], [1001, 2186]], "bbox": [1001, 1473, 1496, 2186], "points": [[1001, 1474], [1002, 1473], [1495, 1473], [1496, 1474], [1496, 1951], [1495, 1953], [1496, 1954], [1496, 1956], [1495, 1957], [1496, 1958], [1496, 2185], [1495, 2186], [1002, 2186], [1001, 2185]], "type": "cell", "rows": [3, 3], "columns": [4, 4], "text_list": []}, {"location": [[875, 1473], [996, 1473], [996, 2186], [875, 2186]], "bbox": [875, 1473, 996, 2186], "points": [[875, 1474], [877, 1473], [995, 1473], [996, 1474], [996, 2185], [995, 2186], [877, 2186], [875, 2185]], "type": "cell", "rows": [3, 3], "columns": [3, 3], "text_list": []}, {"location": [[240, 1473], [747, 1473], [747, 2186], [240, 2186]], "bbox": [240, 1473, 747, 2186], "points": [[240, 1474], [242, 1473], [744, 1473], [746, 1474], [746, 2183], [747, 2184], [747, 2185], [746, 2186], [242, 2186], [240, 2185]], "type": "cell", "rows": [3, 3], "columns": [1, 1], "text_list": []}, {"location": [[150, 1473], [237, 1473], [237, 2186], [150, 2186]], "bbox": [150, 1473, 237, 2186], "points": [[150, 1474], [152, 1473], [235, 1473], [236, 1474], [236, 2184], [237, 2185], [236, 2186], [152, 2186], [150, 2185]], "type": "cell", "rows": [3, 3], "columns": [0, 0], "text_list": []}, {"location": [[1001, 584], [1496, 584], [1496, 1468], [1001, 1468]], "bbox": [1001, 584, 1496, 1468], "points": [[1001, 585], [1002, 584], [1495, 584], [1496, 585], [1496, 1467], [1495, 1468], [1002, 1468], [1001, 1467]], "type": "cell", "rows": [2, 2], "columns": [4, 4], "text_list": []}, {"location": [[875, 584], [996, 584], [996, 1468], [875, 1468]], "bbox": [875, 584, 996, 1468], "points": [[875, 585], [877, 584], [995, 584], [996, 585], [996, 1467], [995, 1468], [877, 1468], [875, 1467]], "type": "cell", "rows": [2, 2], "columns": [3, 3], "text_list": []}, {"location": [[240, 584], [746, 584], [746, 1468], [240, 1468]], "bbox": [240, 584, 746, 1468], "points": [[240, 585], [242, 584], [744, 584], [746, 585], [746, 1467], [744, 1468], [242, 1468], [240, 1467]], "type": "cell", "rows": [2, 2], "columns": [1, 1], "text_list": []}, {"location": [[150, 584], [237, 584], [237, 1468], [150, 1468]], "bbox": [150, 584, 237, 1468], "points": [[150, 585], [152, 584], [235, 584], [236, 585], [236, 1466], [237, 1467], [236, 1468], [152, 1468], [150, 1467]], "type": "cell", "rows": [2, 2], "columns": [0, 0], "text_list": []}, {"location": [[1001, 276], [1496, 276], [1496, 578], [1001, 578]], "bbox": [1001, 276, 1496, 578], "points": [[1001, 277], [1002, 276], [1003, 277], [1004, 276], [1005, 277], [1012, 277], [1013, 276], [1015, 277], [1016, 276], [1017, 277], [1018, 276], [1019, 277], [1020, 276], [1022, 277], [1023, 276], [1024, 277], [1025, 276], [1026, 277], [1027, 276], [1029, 277], [1030, 276], [1031, 277], [1036, 277], [1037, 276], [1038, 277], [1039, 276], [1040, 277], [1042, 276], [1043, 277], [1047, 277], [1049, 276], [1050, 277], [1051, 276], [1052, 277], [1053, 276], [1054, 277], [1058, 277], [1059, 276], [1065, 276], [1066, 277], [1067, 276], [1068, 277], [1070, 276], [1071, 277], [1072, 276], [1084, 276], [1085, 277], [1086, 276], [1087, 277], [1088, 276], [1089, 277], [1091, 276], [1092, 277], [1093, 276], [1094, 277], [1095, 276], [1096, 277], [1098, 276], [1099, 277], [1100, 276], [1101, 277], [1102, 276], [1105, 276], [1106, 277], [1108, 277], [1109, 276], [1111, 277], [1112, 276], [1121, 276], [1122, 277], [1123, 276], [1125, 277], [1126, 276], [1127, 277], [1128, 276], [1130, 276], [1132, 277], [1133, 277], [1134, 276], [1143, 276], [1144, 277], [1151, 277], [1153, 276], [1154, 277], [1156, 277], [1157, 276], [1158, 277], [1160, 276], [1161, 277], [1162, 276], [1163, 277], [1164, 276], [1165, 277], [1167, 276], [1168, 277], [1169, 276], [1170, 277], [1181, 277], [1182, 276], [1183, 276], [1184, 277], [1245, 277], [1246, 276], [1247, 277], [1249, 276], [1250, 277], [1251, 276], [1252, 277], [1257, 277], [1258, 276], [1259, 277], [1260, 276], [1261, 277], [1263, 276], [1264, 277], [1268, 277], [1270, 276], [1271, 277], [1272, 276], [1273, 277], [1274, 276], [1275, 277], [1277, 276], [1278, 277], [1279, 276], [1280, 277], [1281, 276], [1282, 277], [1286, 277], [1287, 276], [1291, 276], [1292, 277], [1293, 276], [1294, 277], [1295, 276], [1296, 277], [1298, 276], [1299, 277], [1300, 276], [1301, 277], [1308, 277], [1309, 276], [1326, 276], [1327, 277], [1328, 276], [1329, 277], [1330, 276], [1332, 277], [1333, 276], [1334, 277], [1335, 276], [1340, 276], [1341, 277], [1342, 276], [1343, 277], [1344, 276], [1346, 277], [1347, 276], [1348, 277], [1349, 276], [1350, 277], [1351, 276], [1353, 277], [1354, 276], [1356, 276], [1357, 277], [1358, 276], [1360, 277], [1361, 276], [1362, 277], [1363, 276], [1364, 277], [1368, 277], [1369, 276], [1372, 276], [1374, 277], [1375, 276], [1377, 276], [1378, 277], [1380, 276], [1381, 277], [1382, 276], [1383, 277], [1389, 277], [1390, 276], [1391, 276], [1392, 277], [1397, 277], [1398, 276], [1399, 277], [1401, 276], [1402, 277], [1403, 276], [1404, 277], [1405, 276], [1408, 276], [1409, 277], [1410, 276], [1433, 276], [1434, 277], [1436, 276], [1437, 277], [1438, 276], [1439, 277], [1440, 276], [1441, 277], [1443, 276], [1444, 277], [1445, 277], [1446, 276], [1447, 277], [1449, 276], [1450, 276], [1451, 277], [1452, 276], [1453, 277], [1454, 276], [1466, 276], [1467, 277], [1470, 277], [1471, 276], [1494, 276], [1496, 278], [1496, 577], [1495, 578], [1002, 578], [1001, 577]], "type": "cell", "rows": [1, 1], "columns": [4, 4], "text_list": []}, {"location": [[875, 276], [996, 276], [996, 578], [875, 578]], "bbox": [875, 276, 996, 578], "points": [[875, 277], [877, 276], [878, 277], [995, 277], [996, 278], [996, 577], [995, 578], [877, 578], [875, 577]], "type": "cell", "rows": [1, 1], "columns": [3, 3], "text_list": []}, {"location": [[750, 276], [871, 276], [871, 2186], [750, 2186]], "bbox": [750, 276, 871, 2186], "points": [[750, 277], [751, 276], [753, 277], [870, 277], [871, 278], [871, 2185], [870, 2186], [751, 2186], [750, 2185], [750, 1474], [751, 1473], [751, 1468], [750, 1467], [750, 585], [751, 584], [751, 578], [750, 577]], "type": "cell", "rows": [1, 3], "columns": [2, 2], "text_list": []}, {"location": [[240, 276], [746, 276], [746, 578], [240, 578]], "bbox": [240, 276, 746, 578], "points": [[240, 277], [242, 276], [243, 277], [245, 277], [246, 276], [247, 277], [249, 276], [250, 277], [251, 276], [252, 277], [257, 277], [258, 276], [259, 277], [260, 276], [261, 277], [263, 276], [264, 277], [267, 277], [268, 276], [272, 276], [273, 277], [274, 276], [276, 277], [277, 276], [278, 277], [281, 277], [283, 276], [300, 276], [301, 277], [305, 277], [306, 276], [323, 276], [325, 277], [326, 276], [327, 277], [328, 276], [333, 276], [334, 277], [335, 276], [336, 276], [337, 277], [339, 276], [343, 276], [345, 277], [350, 277], [352, 276], [353, 277], [354, 276], [355, 277], [356, 276], [357, 277], [359, 276], [360, 277], [362, 277], [363, 276], [380, 276], [381, 277], [382, 276], [383, 277], [384, 276], [385, 277], [387, 276], [388, 277], [406, 277], [408, 276], [409, 277], [410, 276], [411, 277], [412, 276], [414, 277], [415, 276], [416, 277], [417, 276], [418, 277], [437, 277], [438, 276], [439, 277], [445, 277], [446, 276], [450, 276], [451, 277], [488, 277], [490, 276], [491, 277], [492, 276], [493, 277], [514, 277], [515, 276], [518, 278], [518, 279], [519, 280], [522, 280], [521, 279], [522, 278], [523, 278], [525, 277], [528, 277], [529, 276], [530, 277], [537, 277], [539, 276], [540, 277], [541, 276], [543, 276], [544, 277], [548, 277], [549, 276], [553, 276], [554, 277], [555, 276], [556, 277], [557, 276], [559, 277], [561, 277], [562, 276], [566, 276], [567, 277], [568, 277], [569, 276], [571, 276], [573, 277], [580, 277], [581, 276], [582, 276], [583, 277], [589, 277], [590, 276], [596, 276], [597, 277], [612, 277], [613, 276], [615, 277], [616, 276], [617, 277], [622, 277], [623, 276], [624, 277], [645, 277], [646, 276], [647, 277], [649, 276], [650, 277], [651, 276], [652, 277], [653, 276], [654, 277], [656, 276], [657, 277], [658, 276], [659, 277], [663, 277], [664, 276], [679, 276], [680, 277], [682, 277], [684, 276], [685, 277], [690, 277], [691, 276], [692, 277], [693, 276], [694, 277], [699, 277], [700, 276], [701, 277], [702, 276], [704, 277], [705, 276], [706, 277], [707, 276], [708, 277], [718, 277], [719, 276], [720, 277], [727, 277], [728, 276], [729, 277], [730, 276], [732, 277], [733, 276], [734, 277], [735, 276], [736, 277], [744, 277], [746, 278], [746, 577], [744, 578], [242, 578], [240, 577]], "type": "cell", "rows": [1, 1], "columns": [1, 1], "text_list": []}, {"location": [[150, 276], [236, 276], [236, 578], [150, 578]], "bbox": [150, 276, 236, 578], "points": [[150, 277], [152, 276], [153, 276], [154, 277], [155, 276], [156, 277], [157, 276], [159, 277], [160, 276], [161, 277], [162, 276], [163, 277], [164, 276], [166, 277], [167, 276], [168, 277], [169, 276], [170, 277], [171, 276], [173, 277], [174, 276], [175, 277], [176, 276], [177, 277], [178, 276], [180, 277], [181, 276], [182, 277], [183, 276], [184, 277], [185, 276], [187, 277], [188, 276], [189, 277], [190, 276], [191, 277], [192, 276], [194, 277], [198, 277], [199, 276], [201, 277], [202, 276], [203, 277], [204, 276], [205, 277], [207, 276], [208, 277], [209, 276], [210, 277], [211, 276], [212, 277], [214, 276], [215, 277], [235, 277], [236, 278], [236, 577], [235, 578], [152, 578], [150, 577]], "type": "cell", "rows": [1, 1], "columns": [0, 0], "text_list": []}, {"location": [[1001, 208], [1496, 208], [1496, 271], [1001, 271]], "bbox": [1001, 208, 1496, 271], "points": [[1001, 209], [1002, 208], [1495, 208], [1496, 209], [1496, 226], [1495, 228], [1496, 229], [1495, 230], [1496, 231], [1495, 232], [1496, 233], [1495, 235], [1495, 246], [1496, 247], [1495, 249], [1496, 250], [1495, 251], [1496, 252], [1495, 253], [1496, 254], [1495, 256], [1496, 257], [1495, 258], [1496, 259], [1495, 260], [1496, 261], [1495, 263], [1496, 264], [1495, 265], [1495, 270], [1494, 271], [1002, 271], [1001, 270]], "type": "cell", "rows": [0, 0], "columns": [4, 4], "text_list": []}, {"location": [[875, 208], [996, 208], [996, 271], [875, 271]], "bbox": [875, 208, 996, 271], "points": [[875, 209], [877, 208], [995, 208], [996, 209], [996, 270], [995, 271], [877, 271], [875, 270]], "type": "cell", "rows": [0, 0], "columns": [3, 3], "text_list": []}, {"location": [[750, 208], [871, 208], [871, 271], [750, 271]], "bbox": [750, 208, 871, 271], "points": [[750, 209], [751, 208], [870, 208], [871, 209], [871, 270], [870, 271], [751, 271], [750, 270]], "type": "cell", "rows": [0, 0], "columns": [2, 2], "text_list": []}, {"location": [[240, 208], [747, 208], [747, 271], [240, 271]], "bbox": [240, 208, 747, 271], "points": [[240, 209], [242, 208], [746, 208], [747, 209], [747, 223], [746, 224], [746, 270], [744, 271], [242, 271], [240, 270]], "type": "cell", "rows": [0, 0], "columns": [1, 1], "text_list": []}, {"location": [[146, 202], [1501, 202], [1501, 2191], [146, 2191]], "bbox": [146, 202, 1501, 2191], "points": [[237, 202], [237, 205], [236, 207], [236, 270], [237, 271], [236, 272], [152, 272], [150, 271], [147, 271], [146, 272], [146, 2191], [1501, 2191], [1501, 202]], "type": "table", "contains": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]}]}}, {"csv_string": ",支払事由,支払額,受取人,発責事由,,,\n特約介護保険金,\"被保険者がこの特約の責任開始期以後の傷\n害または失痛を原因として,この特約の保\n険期間中に要介護状態(表4)に該当した\nとき\",特約保険金額,特約介護保険金受取人,\"つぎのいずれかにより左記の支払事由が生\nじたとき\n(1)保険契約者または被保険者の故意また\nは重大な過失\n(2) 被保険者の把距行為\n(3) 被保険者の精神障害を原因とする事故\n(4) 被保険者の泥枠の状態を原因とする事\n故\n(5) 被保険者が法令に定める運転資格を持\nたないで運転している間に生じた事故\n(6) 被保険者が法令に定める適気帯び運転\nまたはこれに相当する運転をしている間\nに生じた事故\n(7)被保険者の薬物依存\n(8)地衷,晴火または津波\n(9)戦手その他の変乱\",,,\n5年ごと配当付特定状態保障定期保険特約,\"表1対象となる悪性新生物,急性心筋種審,噛率中\",\"2.第1頃の特約特定戻痛保険金の支払事由の(1)に該当した場合でも,この特約の責任開始期の属する日からその日を含\",います.,\"めて90日以内に乳居の悪性新生物(表1中,基本分類コードC50の悪性新生物.以下同じっ)に確悪し,区師により該断\",\"確定されたときは,当会社は,特約特定戻保険金を支払いません.危だだし,その後(乳居の悪性新生物についてはこ\",\"新生物と因果関係のない悪性新生物(表1)に確是し,区師により該断確定されたときは,特約特定戻床保険金を支払\",\"の特約の責任開始期の属する日からその日を含めて90日経過後),この特約の保険期間中に,被保険者がその乳戻の悪性\"\n\"対象となる悪性新生物,急性心筋硬基,膨率中とは,次表によって定義づけられる戻痛とし,かつ,平成21年3月23日\",,,,,,,\n\"総務省告示第176号にもとづく厚生労働省大豆官居統計情報部編「戻痛,\",傷害および列因統計分類提要ICD-10 (2003,,,,,,\n\"年版)準擬」に記載された分類項目中,次表の基本分類コードに規定される内容によるものをいいます.\",,,,,,,\n戻備名,保府の定義,分類項目,,\"基本分類\nコード\",,,\n悪性新生物,\"悪性種暴細泡の存在,組繊への\n無制限かつ浸潤破壊的増殖で\n特徴付けられる狭痛.ただし,\n上皮内痕 (D00-D09),およ\nび皮層の悪性黒色種以外の皮\n層痕 (C44)を除く.\",\"口屋,ロ座および吸頭の悪性新生物\",,C00-C14,,,\n,,,\"口屋の悪性新生物\n否根<基底>部の悪性新生物\n否のその他および部位不明の悪性新生物\n菌肉の悪性新生物\nロ(座)底の悪性新生物\nロ蒸の悪性新生物\nその他および部位不明のロ燃の悪性新生物\n目下泉の悪性新生物\nその他および部位不明の大吐液脱の悪性新生物\n扉枕の悪性新生物\n中吸頭の悪性新生物\n昇く上>吸頭の悪性新生物\n梨状階凹く週>の悪性新生物\n下吸頭の悪性新生物\nその他および部位不明確のロ層,ロ燃および吸\n頭の悪性新生物\",\"C00\nC01\nC02\nC03\nC04\nC05\nC06\nC07\nC08\nC09\nC10\nC11\nC12\nC13\nC14\",,,\n230,,,,,,,\n", "image": "76831c93aa3c4cec8a151b02b7892da7.jpg", "json": {"ocr": [{"location": [[444, 126], [543, 126], [543, 148], [444, 148]], "type": "textline", "text": "支払事由", "confidence_by_character": [0.8675008416175842, 0.8895153999328613, 0.8854762315750122, 0.938976526260376], "confidence_by_field": 0.8675008416175842, "original_text": "支払事由"}, {"location": [[774, 124], [851, 124], [851, 148], [774, 148]], "type": "textline", "text": "支払額", "confidence_by_character": [0.8461359739303589, 0.9052218198776245, 0.5001827478408813], "confidence_by_field": 0.5001827478408813, "original_text": "支払額"}, {"location": [[895, 121], [976, 121], [976, 149], [895, 149]], "type": "textline", "text": "受取人", "confidence_by_character": [0.9277768731117249, 0.8918898701667786, 0.9315424561500549], "confidence_by_field": 0.8918898701667786, "original_text": "受取人"}, {"location": [[1199, 122], [1300, 122], [1300, 149], [1199, 149]], "type": "textline", "text": "発責事由", "confidence_by_character": [0.024578692391514778, 0.3448609709739685, 0.8564888834953308, 0.9401688575744629], "confidence_by_field": 0.024578692391514778, "original_text": "発責事由"}, {"location": [[251, 176], [736, 176], [736, 201], [251, 201]], "type": "textline", "text": "被保険者がこの特約の責任開始期以後の傷", "confidence_by_character": [0.7922438383102417, 0.8843417167663574, 0.9655599594116211, 0.9342674612998962, 0.7677628993988037, 0.9139733910560608, 0.9242528080940247, 0.9420397877693176, 0.9107195734977722, 0.9215835928916931, 0.6456794738769531, 0.9185968637466431, 0.9424375295639038, 0.9676556587219238, 0.9465450644493103, 0.9473932385444641, 0.926794707775116, 0.9020918607711792, 0.31754270195961], "confidence_by_field": 0.31754270195961, "original_text": "被保険者がこの特約の責任開始期以後の傷"}, {"location": [[250, 278], [300, 278], [300, 303], [250, 303]], "type": "textline", "text": "とき", "confidence_by_character": [0.870346188545227, 0.911790668964386], "confidence_by_field": 0.870346188545227, "original_text": "とき"}, {"location": [[252, 244], [735, 244], [735, 269], [252, 269]], "type": "textline", "text": "険期間中に要介護状態(表4)に該当した", "confidence_by_character": [0.9470943808555603, 0.9594346880912781, 0.9497848153114319, 0.9336075782775879, 0.9004533290863037, 0.9501534104347229, 0.05532649904489517, 0.4543386399745941, 0.9173354506492615, 0.9759472012519836, 0.9092816710472107, 0.912585973739624, 0.9120671153068542, 0.9147552847862244, 0.901999294757843, 0.7519627809524536, 0.9499997496604919, 0.9052278399467468, 0.9325235486030579], "confidence_by_field": 0.05532649904489517, "original_text": "険期間中に要介護状態(表4)に該当した"}, {"location": [[252, 210], [736, 210], [736, 235], [252, 235]], "type": "textline", "text": "害または失痛を原因として,この特約の保", "confidence_by_character": [0.859414279460907, 0.9129236340522766, 0.9114428162574768, 0.9209380149841309, 0.009670907631516457, 0.013731864280998707, 0.9100754857063293, 0.9183570742607117, 0.9082987904548645, 0.9186559915542603, 0.9265108704566956, 0.9261319637298584, 0.94119793176651, 0.934272050857544, 0.9140925407409668, 0.9359596967697144, 0.9139266014099121, 0.9052593111991882, 0.9005445241928101], "confidence_by_field": 0.009670907631516457, "original_text": "害または失痛を原因として、この特約の保"}, {"location": [[1012, 176], [1486, 176], [1486, 201], [1012, 201]], "type": "textline", "text": "つぎのいずれかにより左記の支払事由が生", "confidence_by_character": [0.8919810652732849, 0.9696059823036194, 0.8994442224502563, 0.9261112213134766, 0.9599279761314392, 0.9145601391792297, 0.9362947344779968, 0.9107319116592407, 0.9365142583847046, 0.9236242771148682, 0.8657993078231812, 0.923613429069519, 0.9308292269706726, 0.888035774230957, 0.922397255897522, 0.9016749262809753, 0.9591598510742188, 0.9053192734718323, 0.8481500744819641], "confidence_by_field": 0.8481500744819641, "original_text": "つぎのいずれかにより左記の支払事由が生"}, {"location": [[1013, 243], [1485, 243], [1485, 270], [1013, 270]], "type": "textline", "text": "(1)保険契約者または被保険者の故意また", "confidence_by_character": [0.9078598022460938, 0.9223477244377136, 0.9374586939811707, 0.9414840936660767, 0.9610875844955444, 0.6269210577011108, 0.9158579111099243, 0.934330940246582, 0.9198062419891357, 0.9241411685943604, 0.913959801197052, 0.9006775617599487, 0.8967344164848328, 0.9486311674118042, 0.9247729182243347, 0.9187440276145935, 0.9277632236480713, 0.9536972045898438, 0.8908723592758179, 0.8982462882995605], "confidence_by_field": 0.6269210577011108, "original_text": "(1)保険契約者または被保険者の故意また"}, {"location": [[1013, 211], [1110, 211], [1110, 234], [1013, 234]], "type": "textline", "text": "じたとき", "confidence_by_character": [0.9139946103096008, 0.9233514070510864, 0.9035623669624329, 0.9044995903968811], "confidence_by_field": 0.9035623669624329, "original_text": "じたとき"}, {"location": [[1011, 346], [1060, 346], [1060, 371], [1011, 371]], "type": "textline", "text": "(3)", "confidence_by_character": [0.9049426913261414, 0.9322330951690674, 0.9287739992141724], "confidence_by_field": 0.9049426913261414, "original_text": "(3)"}, {"location": [[1011, 311], [1056, 311], [1056, 337], [1011, 337]], "type": "textline", "text": "(2)", "confidence_by_character": [0.9059069752693176, 0.922187864780426, 0.9310285449028015], "confidence_by_field": 0.9059069752693176, "original_text": "(2)"}, {"location": [[1037, 278], [1186, 278], [1186, 303], [1037, 303]], "type": "textline", "text": "は重大な過失", "confidence_by_character": [0.899778425693512, 0.942905068397522, 0.9000203609466553, 0.9318005442619324, 0.9599626660346985, 0.9377484321594238], "confidence_by_field": 0.899778425693512, "original_text": "は重大な過失"}, {"location": [[1056, 312], [1286, 312], [1286, 337], [1056, 337]], "type": "textline", "text": "被保険者の把距行為", "confidence_by_character": [0.7707039713859558, 0.8948671221733093, 0.9554142951965332, 0.9355586171150208, 0.9265390038490295, 0.031754206866025925, 0.017598528414964676, 0.8808640837669373, 0.9189395904541016], "confidence_by_field": 0.017598528414964676, "original_text": "被保険者の把距行為"}, {"location": [[1014, 381], [1056, 381], [1056, 406], [1014, 406]], "type": "textline", "text": "(4)", "confidence_by_character": [0.9076318740844727, 0.916646420955658, 0.9242276549339294], "confidence_by_field": 0.9076318740844727, "original_text": "(4)"}, {"location": [[1058, 346], [1486, 346], [1486, 371], [1058, 371]], "type": "textline", "text": "被保険者の精神障害を原因とする事故", "confidence_by_character": [0.8656353950500488, 0.87904292345047, 0.9570689797401428, 0.9360046982765198, 0.9250347018241882, 0.8989014625549316, 0.7763381004333496, 0.949320375919342, 0.9025768637657166, 0.9133304953575134, 0.9349236488342285, 0.8763080835342407, 0.9082362651824951, 0.9329214096069336, 0.9221249222755432, 0.8974685668945312, 0.9174962639808655], "confidence_by_field": 0.7763381004333496, "original_text": "被保険者の精神障害を原因とする事故"}, {"location": [[1031, 413], [1064, 413], [1064, 442], [1031, 442]], "type": "textline", "text": "故", "confidence_by_character": [0.9272506833076477], "confidence_by_field": 0.9272506833076477, "original_text": "故"}, {"location": [[1060, 381], [1487, 381], [1487, 406], [1060, 406]], "type": "textline", "text": "被保険者の泥枠の状態を原因とする事", "confidence_by_character": [0.9058098196983337, 0.8918941617012024, 0.9609171748161316, 0.9331488609313965, 0.9189014434814453, 0.3016768991947174, 0.021861780434846878, 0.9156504273414612, 0.9317156672477722, 0.9745687246322632, 0.9218509793281555, 0.9204690456390381, 0.8611617088317871, 0.9092339873313904, 0.928749144077301, 0.9200377464294434, 0.8865512013435364], "confidence_by_field": 0.021861780434846878, "original_text": "被保険者の泥枠の状態を原因とする事"}, {"location": [[1014, 449], [1053, 449], [1053, 474], [1014, 474]], "type": "textline", "text": "(5)", "confidence_by_character": [0.905350923538208, 0.9097034931182861, 0.9318872690200806], "confidence_by_field": 0.905350923538208, "original_text": "(5)"}, {"location": [[1013, 517], [1050, 517], [1050, 543], [1013, 543]], "type": "textline", "text": "(6)", "confidence_by_character": [0.9199791550636292, 0.9192972183227539, 0.9334228038787842], "confidence_by_field": 0.9192972183227539, "original_text": "(6)"}, {"location": [[1038, 483], [1461, 483], [1461, 508], [1038, 508]], "type": "textline", "text": "たないで運転している間に生じた事故", "confidence_by_character": [0.8745225071907043, 0.9364376068115234, 0.9291535019874573, 0.912203311920166, 0.9396879076957703, 0.9472920894622803, 0.913747251033783, 0.9332064986228943, 0.9370121955871582, 0.9289748072624207, 0.8305221796035767, 0.9069148898124695, 0.8998246192932129, 0.9040942788124084, 0.9210126399993896, 0.9003794193267822, 0.9214986562728882], "confidence_by_field": 0.8305221796035767, "original_text": "たないで運転している間に生じた事故"}, {"location": [[1056, 449], [1486, 449], [1486, 474], [1056, 474]], "type": "textline", "text": "被保険者が法令に定める運転資格を持", "confidence_by_character": [0.8091574907302856, 0.8815281987190247, 0.9598103165626526, 0.9332631826400757, 0.7020596265792847, 0.9252269268035889, 0.7443270087242126, 0.8977872729301453, 0.8827143907546997, 0.9426460266113281, 0.9135628342628479, 0.9700621962547302, 0.9651079177856445, 0.9405158758163452, 0.9336918592453003, 0.9058446884155273, 0.953168511390686], "confidence_by_field": 0.7020596265792847, "original_text": "被保険者が法令に定める運転資格を持"}, {"location": [[1039, 551], [1486, 551], [1486, 576], [1039, 576]], "type": "textline", "text": "またはこれに相当する運転をしている間", "confidence_by_character": [0.9094364047050476, 0.909597635269165, 0.921248197555542, 0.9263322353363037, 0.9232677817344666, 0.9048147201538086, 0.931138277053833, 0.956790030002594, 0.9315029382705688, 0.9254797101020813, 0.9605383276939392, 0.9623844027519226, 0.9155283570289612, 0.916050136089325, 0.9376280903816223, 0.9395624399185181, 0.9250877499580383, 0.8408172726631165], "confidence_by_field": 0.8408172726631165, "original_text": "またはこれに相当する運転をしている間"}, {"location": [[1047, 517], [1486, 517], [1486, 542], [1047, 542]], "type": "textline", "text": "被保険者が法令に定める適気帯び運転", "confidence_by_character": [0.8894526958465576, 0.899210512638092, 0.9527053833007812, 0.9373717308044434, 0.7518043518066406, 0.9299134612083435, 0.7552246451377869, 0.8751143217086792, 0.883527934551239, 0.9473134875297546, 0.9107137322425842, 0.01739545725286007, 0.9061570763587952, 0.9306173324584961, 0.913148045539856, 0.964957058429718, 0.9543430805206299], "confidence_by_field": 0.01739545725286007, "original_text": "被保険者が法令に定める適気帯び運転"}, {"location": [[1011, 686], [1261, 686], [1261, 713], [1011, 713]], "type": "textline", "text": "(9)戦手その他の変乱", "confidence_by_character": [0.9122046232223511, 0.8971946239471436, 0.9310984015464783, 0.2312525063753128, 0.032694216817617416, 0.9165077805519104, 0.9159199595451355, 0.9422404170036316, 0.9258876442909241, 0.9448782205581665, 0.9071643948554993], "confidence_by_field": 0.032694216817617416, "original_text": "(9)戦手その他の変乱"}, {"location": [[1013, 653], [1313, 653], [1313, 680], [1013, 680]], "type": "textline", "text": "(8)地衷,晴火または津波", "confidence_by_character": [0.9077377915382385, 0.9291187524795532, 0.9294179677963257, 0.8755853772163391, 0.020445361733436584, 0.9372184872627258, 0.12521469593048096, 0.919520914554596, 0.9321637749671936, 0.9144540429115295, 0.9103459119796753, 0.9024181365966797, 0.9709789156913757], "confidence_by_field": 0.020445361733436584, "original_text": "(8)地衷、晴火または津波"}, {"location": [[1013, 618], [1287, 618], [1287, 645], [1013, 645]], "type": "textline", "text": "(7)被保険者の薬物依存", "confidence_by_character": [0.90793377161026, 0.9301998019218445, 0.9329007267951965, 0.8974028825759888, 0.9265186190605164, 0.9508245587348938, 0.9322021007537842, 0.9191895127296448, 0.6369605660438538, 0.9209677577018738, 0.9514355063438416, 0.9564875364303589], "confidence_by_field": 0.6369605660438538, "original_text": "(7)被保険者の薬物依存"}, {"location": [[1037, 583], [1187, 583], [1187, 611], [1037, 611]], "type": "textline", "text": "に生じた事故", "confidence_by_character": [0.8794612884521484, 0.9123249650001526, 0.889522135257721, 0.9227935075759888, 0.9041955471038818, 0.9350793361663818], "confidence_by_field": 0.8794612884521484, "original_text": "に生じた事故"}, {"location": [[155, 756], [1499, 756], [1499, 782], [155, 782]], "type": "textline", "text": "2.第1頃の特約特定戻痛保険金の支払事由の(1)に該当した場合でも,この特約の責任開始期の属する日からその日を含", "confidence_by_character": [0.9133503437042236, 0.6143625974655151, 0.7715135812759399, 0.8832823038101196, 0.7951984405517578, 0.9022175073623657, 0.9051567316055298, 0.9134184718132019, 0.8472276926040649, 0.9173131585121155, 0.10220219939947128, 0.02597704716026783, 0.9150684475898743, 0.9227721691131592, 0.926496148109436, 0.9184929728507996, 0.9239609241485596, 0.9642760753631592, 0.9043384194374084, 0.981313943862915, 0.9067476391792297, 0.8933182954788208, 0.9240573048591614, 0.8915651440620422, 0.9041555523872375, 0.9090071320533752, 0.9483354091644287, 0.8898624777793884, 0.9484414458274841, 0.924523115158081, 0.9058770537376404, 0.9039298295974731, 0.8943801522254944, 0.9421780705451965, 0.9119808673858643, 0.904516875743866, 0.854859471321106, 0.9241307377815247, 0.9193037152290344, 0.6095772981643677, 0.9588587284088135, 0.9159275889396667, 0.9597417116165161, 0.9644231796264648, 0.878452479839325, 0.9817704558372498, 0.9251354336738586, 0.9222602248191833, 0.8768765330314636, 0.932780921459198, 0.9037608504295349, 0.9542140364646912, 0.9005016684532166, 0.9147620797157288, 0.9183657169342041, 0.9579572081565857], "confidence_by_field": 0.02597704716026783, "original_text": "2.第1頃の特約特定戻痛保険金の支払事由の(1)に該当した場合でも、この特約の責任開始期の属する日からその日を含"}, {"location": [[174, 826], [1498, 826], [1498, 851], [174, 851]], "type": "textline", "text": "確定されたときは,当会社は,特約特定戻保険金を支払いません.危だだし,その後(乳居の悪性新生物についてはこ", "confidence_by_character": [0.87237548828125, 0.9166489243507385, 0.9309921264648438, 0.9072751402854919, 0.8426917791366577, 0.9245090484619141, 0.8962528109550476, 0.9236044883728027, 0.9449207782745361, 0.937345564365387, 0.851574182510376, 0.8786336183547974, 0.9141161441802979, 0.9351183176040649, 0.93439781665802, 0.9029607176780701, 0.8484892249107361, 0.9109193682670593, 0.2301904559135437, 0.8972289562225342, 0.949977457523346, 0.9109274744987488, 0.9104551672935486, 0.8617236018180847, 0.9625527858734131, 0.9075011014938354, 0.9146422743797302, 0.9308747053146362, 0.8785820007324219, 0.9528940916061401, 0.204886332154274, 0.6509138345718384, 0.9346490502357483, 0.8710500001907349, 0.8474776744842529, 0.9357132911682129, 0.8958941102027893, 0.948139488697052, 0.9073454141616821, 0.9435133337974548, 0.02727276086807251, 0.8969207406044006, 0.9885104298591614, 0.9449867010116577, 0.8911770582199097, 0.8918397426605225, 0.9272972345352173, 0.9072995781898499, 0.9455183744430542, 0.920363187789917, 0.8844522833824158, 0.9109783172607422, 0.8434216976165771], "confidence_by_field": 0.02727276086807251, "original_text": "確定されたときは、当会社は、特約特定戻保険金を支払いません。危だだし、その後(乳居の悪性新生物についてはこ"}, {"location": [[174, 791], [1499, 791], [1499, 816], [174, 816]], "type": "textline", "text": "めて90日以内に乳居の悪性新生物(表1中,基本分類コードC50の悪性新生物.以下同じっ)に確悪し,区師により該断", "confidence_by_character": [0.929710865020752, 0.9256927371025085, 0.9216038584709167, 0.9146531820297241, 0.8912387490272522, 0.8992617130279541, 0.9232544898986816, 0.9091964960098267, 0.9531866908073425, 0.025101587176322937, 0.921570360660553, 0.9812342524528503, 0.9333548545837402, 0.8705258369445801, 0.9096611738204956, 0.874687910079956, 0.9022683501243591, 0.9234917759895325, 0.9020710587501526, 0.9170022010803223, 0.9377757906913757, 0.9631907939910889, 0.9194586277008057, 0.9142388701438904, 0.9670228362083435, 0.9209076166152954, 0.9034433364868164, 0.9304872751235962, 0.9430365562438965, 0.9158787727355957, 0.9104049801826477, 0.9234063029289246, 0.9882888793945312, 0.948005199432373, 0.8946257829666138, 0.9165608882904053, 0.8860792517662048, 0.8820375204086304, 0.968363344669342, 0.9140974283218384, 0.9216746687889099, 0.889940083026886, 0.8873427510261536, 0.8923988342285156, 0.8944783806800842, 0.4664972722530365, 0.01827845722436905, 0.8980045318603516, 0.9259824156761169, 0.007005617953836918, 0.5007253885269165, 0.9224089980125427, 0.9354652762413025, 0.9110630750656128, 0.13900485634803772, 0.9820354580879211], "confidence_by_field": 0.007005617953836918, "original_text": "めて90日以内に乳居の悪性新生物(表1中、基本分類コードC50の悪性新生物。以下同じっ)に確悪し、区師により該断"}, {"location": [[169, 924], [260, 924], [260, 957], [169, 957]], "type": "textline", "text": "います.", "confidence_by_character": [0.8951007723808289, 0.9293767213821411, 0.9321873784065247, 0.9434893131256104], "confidence_by_field": 0.8951007723808289, "original_text": "います。"}, {"location": [[174, 894], [1499, 894], [1499, 919], [174, 919]], "type": "textline", "text": "新生物と因果関係のない悪性新生物(表1)に確是し,区師により該断確定されたときは,特約特定戻床保険金を支払", "confidence_by_character": [0.8655517101287842, 0.9168426990509033, 0.9192061424255371, 0.9129778146743774, 0.8620309829711914, 0.9388502240180969, 0.9025878310203552, 0.6911900639533997, 0.9327775835990906, 0.9318856596946716, 0.9148240089416504, 0.9867463707923889, 0.9309524893760681, 0.8833543658256531, 0.9187103509902954, 0.9051030278205872, 0.9082005620002747, 0.9229358434677124, 0.849571943283081, 0.9140225052833557, 0.9094562530517578, 0.5785788893699646, 0.016305452212691307, 0.8984048962593079, 0.8961569666862488, 0.008113177493214607, 0.4689510762691498, 0.900852620601654, 0.9308187365531921, 0.9175528883934021, 0.16023430228233337, 0.9535970091819763, 0.9590919017791748, 0.9293999671936035, 0.9241911768913269, 0.9045529365539551, 0.6537969708442688, 0.9066706299781799, 0.8823226094245911, 0.9016591310501099, 0.943936824798584, 0.9658425450325012, 0.8949099779129028, 0.9064810276031494, 0.8924281597137451, 0.26485905051231384, 0.013734888285398483, 0.8871623277664185, 0.9554939270019531, 0.9117217659950256, 0.8871006965637207, 0.8987737894058228, 0.9213141798973083], "confidence_by_field": 0.008113177493214607, "original_text": "新生物と因果関係のない悪性新生物(表1)に確是し、区師により該断確定されたときは、特約特定戻床保険金を支払"}, {"location": [[175, 860], [1499, 860], [1499, 885], [175, 885]], "type": "textline", "text": "の特約の責任開始期の属する日からその日を含めて90日経過後),この特約の保険期間中に,被保険者がその乳戻の悪性", "confidence_by_character": [0.8996768593788147, 0.8813320398330688, 0.9130919575691223, 0.9179568290710449, 0.7003173828125, 0.947838306427002, 0.9322956800460815, 0.9628625512123108, 0.9562456011772156, 0.9206926226615906, 0.9650581479072571, 0.9242368936538696, 0.9216203689575195, 0.8873831033706665, 0.9355727434158325, 0.9169914722442627, 0.9334688782691956, 0.9152543544769287, 0.9061943888664246, 0.9253946542739868, 0.9488186240196228, 0.9291466474533081, 0.9286925792694092, 0.9352849125862122, 0.9170054197311401, 0.9051015377044678, 0.9554669260978699, 0.9603708386421204, 0.9265797138214111, 0.898590087890625, 0.9332919120788574, 0.9297603964805603, 0.9197165966033936, 0.9235996007919312, 0.9218770265579224, 0.9172816872596741, 0.9102473258972168, 0.9402798414230347, 0.9678902626037598, 0.954412043094635, 0.9248705506324768, 0.908632218837738, 0.9390446543693542, 0.949765682220459, 0.8778007626533508, 0.9645906686782837, 0.9497089385986328, 0.899435818195343, 0.9276584982872009, 0.9176824688911438, 0.9498625993728638, 0.035372570157051086, 0.9069256782531738, 0.9790205359458923, 0.9435662627220154], "confidence_by_field": 0.035372570157051086, "original_text": "の特約の責任開始期の属する日からその日を含めて90日経過後)、この特約の保険期間中に、被保険者がその乳戻の悪性"}, {"location": [[145, 1023], [880, 1023], [880, 1061], [145, 1061]], "type": "textline", "text": "表1対象となる悪性新生物,急性心筋種審,噛率中", "confidence_by_character": [0.9074915051460266, 0.8961107134819031, 0.9177449345588684, 0.9263193607330322, 0.9150716066360474, 0.9085202217102051, 0.9152582287788391, 0.9597517251968384, 0.9338421821594238, 0.8922591209411621, 0.9085873365402222, 0.9216390252113342, 0.9197784066200256, 0.9625741243362427, 0.9277080297470093, 0.9100111126899719, 0.9123287200927734, 0.033181942999362946, 0.032013051211833954, 0.9570453763008118, 0.011290576308965683, 0.2768919765949249, 0.9161956906318665], "confidence_by_field": 0.011290576308965683, "original_text": "表1対象となる悪性新生物、急性心筋種審、噛率中"}, {"location": [[149, 1167], [1308, 1167], [1308, 1192], [149, 1192]], "type": "textline", "text": "年版)準擬」に記載された分類項目中,次表の基本分類コードに規定される内容によるものをいいます.", "confidence_by_character": [0.9438110589981079, 0.15310123562812805, 0.9194369316101074, 0.8910210728645325, 0.00727533083409071, 0.9407992362976074, 0.9083548784255981, 0.9162870645523071, 0.9512794613838196, 0.9353171586990356, 0.9111342430114746, 0.9462519884109497, 0.9285037517547607, 0.9578003287315369, 0.954785168170929, 0.8687331676483154, 0.9154635071754456, 0.9281932711601257, 0.9469024538993835, 0.9232859015464783, 0.9099134802818298, 0.9521574378013611, 0.9255530834197998, 0.9450153112411499, 0.9792253971099854, 0.9223299026489258, 0.9177064895629883, 0.9425287842750549, 0.8884969353675842, 0.9258939027786255, 0.9276576042175293, 0.9384837746620178, 0.9043776988983154, 0.922357976436615, 0.9248386025428772, 0.9621220231056213, 0.9094951152801514, 0.9278768301010132, 0.9218244552612305, 0.9278918504714966, 0.9211139678955078, 0.9146290421485901, 0.9229846596717834, 0.8870921730995178, 0.9196764230728149, 0.9105105400085449, 0.9248099327087402], "confidence_by_field": 0.00727533083409071, "original_text": "年版)準擬」に記載された分類項目中、次表の基本分類コードに規定される内容によるものをいいます。"}, {"location": [[149, 1133], [974, 1133], [974, 1158], [149, 1158]], "type": "textline", "text": "総務省告示第176号にもとづく厚生労働省大豆官居統計情報部編「戻痛,", "confidence_by_character": [0.914582371711731, 0.8832526206970215, 0.7211626768112183, 0.926467776298523, 0.8898362517356873, 0.8901821374893188, 0.9166709184646606, 0.9195365309715271, 0.9170430302619934, 0.9237018823623657, 0.9073250889778137, 0.9328442215919495, 0.910341739654541, 0.9210383296012878, 0.9279012680053711, 0.9597152471542358, 0.9212519526481628, 0.30866745114326477, 0.9036763310432434, 0.7716177105903625, 0.9063420295715332, 0.024753907695412636, 0.9610095024108887, 0.01885157637298107, 0.7748990058898926, 0.9281960725784302, 0.9357317686080933, 0.9424527287483215, 0.8816371560096741, 0.2373867779970169, 0.9736163020133972, 0.037271566689014435, 0.019149551168084145, 0.8943811058998108], "confidence_by_field": 0.01885157637298107, "original_text": "総務省告示第176号にもとづく厚生労働省大豆官居統計情報部編「戻痛、"}, {"location": [[174, 1098], [1496, 1098], [1496, 1124], [174, 1124]], "type": "textline", "text": "対象となる悪性新生物,急性心筋硬基,膨率中とは,次表によって定義づけられる戻痛とし,かつ,平成21年3月23日", "confidence_by_character": [0.9036511182785034, 0.9316859841346741, 0.9102309346199036, 0.928290843963623, 0.9169566035270691, 0.9828899502754211, 0.9315550923347473, 0.871368944644928, 0.9073675274848938, 0.8747323751449585, 0.9170836210250854, 0.9672329425811768, 0.9038588404655457, 0.9064798355102539, 0.7889403104782104, 0.07324911653995514, 0.04274848476052284, 0.9023212194442749, 0.018564021214842796, 0.33413517475128174, 0.8845796585083008, 0.9071389436721802, 0.9191170930862427, 0.9287256002426147, 0.9551340341567993, 0.9292639493942261, 0.8973703384399414, 0.9430782794952393, 0.8996169567108154, 0.9095831513404846, 0.9139856696128845, 0.9216046929359436, 0.9578338265419006, 0.9469342231750488, 0.9143598675727844, 0.9147657752037048, 0.9172317385673523, 0.0475250668823719, 0.010878268629312515, 0.917140781879425, 0.9161637425422668, 0.8926597833633423, 0.9473259449005127, 0.8095999360084534, 0.9541155695915222, 0.9481278657913208, 0.947205662727356, 0.9098252654075623, 0.914816677570343, 0.9123479723930359, 0.9047079086303711, 0.9259662628173828, 0.8977828025817871, 0.9104963541030884, 0.8811171650886536], "confidence_by_field": 0.010878268629312515, "original_text": "対象となる悪性新生物、急性心筋硬基、膨率中とは、次表によって定義づけられる戻痛とし、かつ、平成21年3月23日"}, {"location": [[964, 1133], [1499, 1133], [1499, 1158], [964, 1158]], "type": "textline", "text": "傷害および列因統計分類提要ICD-10 (2003", "confidence_by_character": [0.2455982267856598, 0.8588825464248657, 0.9229297041893005, 0.9311205148696899, 0.911761999130249, 0.010547183454036713, 0.9180837869644165, 0.7663065791130066, 0.9502020478248596, 0.9393486380577087, 0.9795019030570984, 0.9178762435913086, 0.9453536868095398, 0.9248043298721313, 0.9001142978668213, 0.933853805065155, 0.9145983457565308, 0.923252522945404, 0.9140211939811707, 0.8902896046638489, 0.8837283849716187, 0.9033018946647644, 0.8941229581832886, 0.893203854560852, 0.9100231528282166], "confidence_by_field": 0.010547183454036713, "original_text": "傷害および列因統計分類提要ICD-10 (2003"}, {"location": [[184, 1252], [312, 1252], [312, 1279], [184, 1279]], "type": "textline", "text": "戻備名", "confidence_by_character": [0.012842840515077114, 0.013201931491494179, 0.873116135597229], "confidence_by_field": 0.012842840515077114, "original_text": "戻備名"}, {"location": [[423, 1255], [648, 1255], [648, 1276], [423, 1276]], "type": "textline", "text": "保府の定義", "confidence_by_character": [0.011707495898008347, 0.018125494942069054, 0.9022592306137085, 0.9150161147117615, 0.9627509713172913], "confidence_by_field": 0.011707495898008347, "original_text": "保府の定義"}, {"location": [[943, 1254], [1116, 1254], [1116, 1276], [943, 1276]], "type": "textline", "text": "分類項目", "confidence_by_character": [0.9300649166107178, 0.9858059287071228, 0.9217818975448608, 0.8993347883224487], "confidence_by_field": 0.8993347883224487, "original_text": "分類項目"}, {"location": [[1366, 1231], [1468, 1231], [1468, 1260], [1366, 1260]], "type": "textline", "text": "基本分類", "confidence_by_character": [0.9337550401687622, 0.9330757856369019, 0.9182294011116028, 0.9862266182899475], "confidence_by_field": 0.9182294011116028, "original_text": "基本分類"}, {"location": [[162, 1305], [286, 1305], [286, 1330], [162, 1330]], "type": "textline", "text": "悪性新生物", "confidence_by_character": [0.9746763110160828, 0.9391093254089355, 0.8779910802841187, 0.9250389337539673, 0.9127751588821411], "confidence_by_field": 0.8779910802841187, "original_text": "悪性新生物"}, {"location": [[1381, 1271], [1454, 1271], [1454, 1302], [1381, 1302]], "type": "textline", "text": "コード", "confidence_by_character": [0.9247515201568604, 0.9275415539741516, 0.9248496294021606], "confidence_by_field": 0.9247515201568604, "original_text": "コード"}, {"location": [[362, 1373], [694, 1373], [694, 1399], [362, 1399]], "type": "textline", "text": "特徴付けられる狭痛.ただし,", "confidence_by_character": [0.9296258687973022, 0.9508774876594543, 0.9156838059425354, 0.9513049721717834, 0.9285538196563721, 0.9181780815124512, 0.9240930676460266, 0.015158301219344139, 0.0251588374376297, 0.8960133790969849, 0.8855206370353699, 0.9638392329216003, 0.9081665277481079, 0.810248076915741], "confidence_by_field": 0.015158301219344139, "original_text": "特徴付けられる狭痛。ただし、"}, {"location": [[362, 1339], [711, 1339], [711, 1364], [362, 1364]], "type": "textline", "text": "無制限かつ浸潤破壊的増殖で", "confidence_by_character": [0.967445969581604, 0.9279484152793884, 0.9389320015907288, 0.8652892708778381, 0.9180076718330383, 0.9546732902526855, 0.9824090600013733, 0.9415576457977295, 0.8113678693771362, 0.9589750170707703, 0.9629969596862793, 0.9509502649307251, 0.9196974039077759], "confidence_by_field": 0.8113678693771362, "original_text": "無制限かつ浸潤破壊的増殖で"}, {"location": [[362, 1305], [710, 1305], [710, 1330], [362, 1330]], "type": "textline", "text": "悪性種暴細泡の存在,組繊への", "confidence_by_character": [0.9728379845619202, 0.94627845287323, 0.24144531786441803, 0.012244775891304016, 0.8996930122375488, 0.010519507341086864, 0.9229828119277954, 0.9381704330444336, 0.888323187828064, 0.9246969819068909, 0.9277499914169312, 0.04154447093605995, 0.8847850561141968, 0.8698146343231201], "confidence_by_field": 0.010519507341086864, "original_text": "悪性種暴細泡の存在、組繊への"}, {"location": [[738, 1305], [1136, 1305], [1136, 1330], [738, 1330]], "type": "textline", "text": "口屋,ロ座および吸頭の悪性新生物", "confidence_by_character": [0.45258355140686035, 0.020115606486797333, 0.9090479612350464, 0.7495995163917542, 0.012871522456407547, 0.9233554005622864, 0.9294077754020691, 0.9152020812034607, 0.1165565550327301, 0.9779418110847473, 0.9184020161628723, 0.9667780995368958, 0.9319384098052979, 0.8740564584732056, 0.9125255942344666, 0.9012724757194519], "confidence_by_field": 0.012871522456407547, "original_text": "口屋、ロ座および吸頭の悪性新生物"}, {"location": [[795, 1339], [999, 1339], [999, 1365], [795, 1365]], "type": "textline", "text": "口屋の悪性新生物", "confidence_by_character": [0.6368818283081055, 0.021265249699354172, 0.9255138635635376, 0.9669010043144226, 0.9363402724266052, 0.8668568134307861, 0.918738067150116, 0.9213213920593262], "confidence_by_field": 0.021265249699354172, "original_text": "口屋の悪性新生物"}, {"location": [[1359, 1307], [1480, 1307], [1480, 1327], [1359, 1327]], "type": "textline", "text": "C00-C14", "confidence_by_character": [0.8986369371414185, 0.898701548576355, 0.9139512181282043, 0.9082396030426025, 0.9174861311912537, 0.9167423844337463, 0.9213985800743103], "confidence_by_field": 0.8986369371414185, "original_text": "C00-C14"}, {"location": [[1392, 1337], [1445, 1337], [1445, 1367], [1392, 1367]], "type": "textline", "text": "C00", "confidence_by_character": [0.8951256275177002, 0.6359421610832214, 0.906408429145813], "confidence_by_field": 0.6359421610832214, "original_text": "C00"}, {"location": [[360, 1475], [418, 1475], [418, 1503], [360, 1503]], "type": "textline", "text": "層痕", "confidence_by_character": [0.26910609006881714, 0.06557167321443558], "confidence_by_field": 0.06557167321443558, "original_text": "層痕"}, {"location": [[362, 1442], [710, 1442], [710, 1467], [362, 1467]], "type": "textline", "text": "び皮層の悪性黒色種以外の皮", "confidence_by_character": [0.758568286895752, 0.8034421801567078, 0.25006139278411865, 0.9265586733818054, 0.9558303356170654, 0.9332054257392883, 0.9394322633743286, 0.9357962012290955, 0.06947016716003418, 0.9496994614601135, 0.9512398838996887, 0.9007985591888428, 0.7511059641838074], "confidence_by_field": 0.06947016716003418, "original_text": "び皮層の悪性黒色種以外の皮"}, {"location": [[367, 1408], [467, 1408], [467, 1433], [367, 1433]], "type": "textline", "text": "上皮内痕", "confidence_by_character": [0.9161220192909241, 0.7934583425521851, 0.9102979898452759, 0.06469375640153885], "confidence_by_field": 0.06469375640153885, "original_text": "上皮内痕"}, {"location": [[478, 1408], [709, 1408], [709, 1433], [478, 1433]], "type": "textline", "text": "(D00-D09),およ", "confidence_by_character": [0.9025329947471619, 0.9375748634338379, 0.9037434458732605, 0.9152474403381348, 0.9029403328895569, 0.9056081771850586, 0.921098530292511, 0.9092146754264832, 0.9098373055458069, 0.9148155450820923, 0.9333376288414001, 0.9314593076705933], "confidence_by_field": 0.9025329947471619, "original_text": "(D00-D09)、およ"}, {"location": [[798, 1374], [1099, 1374], [1099, 1399], [798, 1399]], "type": "textline", "text": "否根<基底>部の悪性新生物", "confidence_by_character": [0.4294792115688324, 0.9128656387329102, 0.7775249481201172, 0.8791069984436035, 0.6771238446235657, 0.9451752305030823, 0.9134429693222046, 0.8972947001457214, 0.9695613384246826, 0.9270921349525452, 0.8691036701202393, 0.9073283672332764, 0.924135684967041], "confidence_by_field": 0.4294792115688324, "original_text": "否根<基底>部の悪性新生物"}, {"location": [[1396, 1408], [1444, 1408], [1444, 1432], [1396, 1432]], "type": "textline", "text": "C02", "confidence_by_character": [0.9006422758102417, 0.893243134021759, 0.9137285947799683], "confidence_by_field": 0.893243134021759, "original_text": "C02"}, {"location": [[1396, 1374], [1441, 1374], [1441, 1398], [1396, 1398]], "type": "textline", "text": "C01", "confidence_by_character": [0.8937407732009888, 0.9000719785690308, 0.912903904914856], "confidence_by_field": 0.8937407732009888, "original_text": "C01"}, {"location": [[425, 1476], [599, 1476], [599, 1503], [425, 1503]], "type": "textline", "text": "(C44)を除く.", "confidence_by_character": [0.9101359248161316, 0.9026187062263489, 0.9163239002227783, 0.9141454100608826, 0.9123993515968323, 0.9205005168914795, 0.9082781076431274, 0.9771544337272644, 0.5784278512001038], "confidence_by_field": 0.5784278512001038, "original_text": "(C44)を除く。"}, {"location": [[799, 1443], [1000, 1443], [1000, 1468], [799, 1468]], "type": "textline", "text": "菌肉の悪性新生物", "confidence_by_character": [0.040625136345624924, 0.905549943447113, 0.9107758402824402, 0.9675039052963257, 0.9342446327209473, 0.869798481464386, 0.9166626334190369, 0.9223466515541077], "confidence_by_field": 0.040625136345624924, "original_text": "菌肉の悪性新生物"}, {"location": [[800, 1408], [1249, 1408], [1249, 1433], [800, 1433]], "type": "textline", "text": "否のその他および部位不明の悪性新生物", "confidence_by_character": [0.4462492763996124, 0.9277081489562988, 0.9224132895469666, 0.9247999787330627, 0.9535807371139526, 0.9011226892471313, 0.931006908416748, 0.9339547753334045, 0.9160341024398804, 0.9344133734703064, 0.9131272435188293, 0.9579702019691467, 0.9186021685600281, 0.9754248857498169, 0.9296293258666992, 0.8530932068824768, 0.9136108756065369, 0.9206787347793579], "confidence_by_field": 0.4462492763996124, "original_text": "否のその他および部位不明の悪性新生物"}, {"location": [[800, 1477], [1074, 1477], [1074, 1502], [800, 1502]], "type": "textline", "text": "ロ(座)底の悪性新生物", "confidence_by_character": [0.32884350419044495, 0.9116025567054749, 0.04057365655899048, 0.9166210889816284, 0.5400206446647644, 0.9234635233879089, 0.9688517451286316, 0.9422140717506409, 0.8865251541137695, 0.9233120679855347, 0.9119672179222107], "confidence_by_field": 0.04057365655899048, "original_text": "ロ(座)底の悪性新生物"}, {"location": [[1396, 1444], [1444, 1444], [1444, 1467], [1396, 1467]], "type": "textline", "text": "C03", "confidence_by_character": [0.8915637135505676, 0.8966322541236877, 0.9224615693092346], "confidence_by_field": 0.8915637135505676, "original_text": "C03"}, {"location": [[801, 1511], [999, 1511], [999, 1536], [801, 1536]], "type": "textline", "text": "ロ蒸の悪性新生物", "confidence_by_character": [0.4804602265357971, 0.08357749134302139, 0.9250825643539429, 0.96983802318573, 0.937073826789856, 0.8715708255767822, 0.9150838255882263, 0.917188286781311], "confidence_by_field": 0.08357749134302139, "original_text": "ロ蒸の悪性新生物"}, {"location": [[1396, 1513], [1444, 1513], [1444, 1535], [1396, 1535]], "type": "textline", "text": "C05", "confidence_by_character": [0.8777514100074768, 0.9022819399833679, 0.9184401631355286], "confidence_by_field": 0.8777514100074768, "original_text": "C05"}, {"location": [[1396, 1478], [1444, 1478], [1444, 1500], [1396, 1500]], "type": "textline", "text": "C04", "confidence_by_character": [0.8983680009841919, 0.9066975712776184, 0.9171065092086792], "confidence_by_field": 0.8983680009841919, "original_text": "C04"}, {"location": [[800, 1648], [999, 1648], [999, 1673], [800, 1673]], "type": "textline", "text": "扉枕の悪性新生物", "confidence_by_character": [0.31593331694602966, 0.012440877966582775, 0.9186950325965881, 0.9705434441566467, 0.9368704557418823, 0.8730571269989014, 0.9145127534866333, 0.9206555485725403], "confidence_by_field": 0.012440877966582775, "original_text": "扉枕の悪性新生物"}, {"location": [[800, 1613], [1323, 1613], [1323, 1638], [800, 1638]], "type": "textline", "text": "その他および部位不明の大吐液脱の悪性新生物", "confidence_by_character": [0.9242069721221924, 0.9221584796905518, 0.9531664252281189, 0.9182451963424683, 0.929571270942688, 0.9338886141777039, 0.8997310400009155, 0.9435169100761414, 0.903868556022644, 0.9440850019454956, 0.92194664478302, 0.8972599506378174, 0.007051920518279076, 0.9664226174354553, 0.019562000408768654, 0.9034262299537659, 0.9664596915245056, 0.9270156025886536, 0.8542009592056274, 0.9136555790901184, 0.9242619872093201], "confidence_by_field": 0.007051920518279076, "original_text": "その他および部位不明の大吐液脱の悪性新生物"}, {"location": [[800, 1579], [1024, 1579], [1024, 1604], [800, 1604]], "type": "textline", "text": "目下泉の悪性新生物", "confidence_by_character": [0.5930241942405701, 0.9049043655395508, 0.015857910737395287, 0.9273105263710022, 0.9746786952018738, 0.9285457134246826, 0.8658884763717651, 0.9171488285064697, 0.9228485226631165], "confidence_by_field": 0.015857910737395287, "original_text": "目下泉の悪性新生物"}, {"location": [[801, 1545], [1274, 1545], [1274, 1570], [801, 1570]], "type": "textline", "text": "その他および部位不明のロ燃の悪性新生物", "confidence_by_character": [0.9286778569221497, 0.9257676005363464, 0.9497038722038269, 0.9192854166030884, 0.9348761439323425, 0.9364481568336487, 0.9033363461494446, 0.9423826932907104, 0.9135015606880188, 0.9543812870979309, 0.9247151613235474, 0.6922500133514404, 0.014857431873679161, 0.9205247163772583, 0.9740933179855347, 0.9256362318992615, 0.8514779210090637, 0.913331151008606, 0.9272739887237549], "confidence_by_field": 0.014857431873679161, "original_text": "その他および部位不明のロ燃の悪性新生物"}, {"location": [[1396, 1546], [1444, 1546], [1444, 1568], [1396, 1568]], "type": "textline", "text": "C06", "confidence_by_character": [0.8983678817749023, 0.9005429744720459, 0.9190194010734558], "confidence_by_field": 0.8983678817749023, "original_text": "C06"}, {"location": [[1396, 1614], [1444, 1614], [1444, 1638], [1396, 1638]], "type": "textline", "text": "C08", "confidence_by_character": [0.8937616944313049, 0.9008639454841614, 0.9090192914009094], "confidence_by_field": 0.8937616944313049, "original_text": "C08"}, {"location": [[1396, 1579], [1442, 1579], [1442, 1603], [1396, 1603]], "type": "textline", "text": "C07", "confidence_by_character": [0.8816462755203247, 0.8914135694503784, 0.9272432327270508], "confidence_by_field": 0.8816462755203247, "original_text": "C07"}, {"location": [[790, 1750], [1099, 1750], [1099, 1775], [790, 1775]], "type": "textline", "text": "梨状階凹く週>の悪性新生物", "confidence_by_character": [0.4785003662109375, 0.9374155402183533, 0.01415649987757206, 0.8677905797958374, 0.5194202661514282, 0.010128945112228394, 0.9416370987892151, 0.908594012260437, 0.9725305438041687, 0.9378481507301331, 0.8867722153663635, 0.9082691073417664, 0.9130178689956665], "confidence_by_field": 0.010128945112228394, "original_text": "梨状階凹く週>の悪性新生物"}, {"location": [[796, 1716], [1074, 1716], [1074, 1741], [796, 1741]], "type": "textline", "text": "昇く上>吸頭の悪性新生物", "confidence_by_character": [0.025524985045194626, 0.8934352397918701, 0.9271260499954224, 0.9392359256744385, 0.033683229237794876, 0.9792892336845398, 0.8990358710289001, 0.971620500087738, 0.9406260848045349, 0.890758216381073, 0.9031410217285156, 0.9190925359725952], "confidence_by_field": 0.025524985045194626, "original_text": "昇く上>吸頭の悪性新生物"}, {"location": [[796, 1682], [1024, 1682], [1024, 1707], [796, 1707]], "type": "textline", "text": "中吸頭の悪性新生物", "confidence_by_character": [0.9284709692001343, 0.06794892996549606, 0.984067976474762, 0.907443106174469, 0.9707232713699341, 0.9341641068458557, 0.8723862767219543, 0.9184305667877197, 0.9176739454269409], "confidence_by_field": 0.06794892996549606, "original_text": "中吸頭の悪性新生物"}, {"location": [[1396, 1716], [1442, 1716], [1442, 1740], [1396, 1740]], "type": "textline", "text": "C11", "confidence_by_character": [0.8971912264823914, 0.9275742769241333, 0.9174836277961731], "confidence_by_field": 0.8971912264823914, "original_text": "C11"}, {"location": [[1396, 1681], [1444, 1681], [1444, 1707], [1396, 1707]], "type": "textline", "text": "C10", "confidence_by_character": [0.9025443196296692, 0.918376624584198, 0.9206975698471069], "confidence_by_field": 0.9025443196296692, "original_text": "C10"}, {"location": [[1396, 1648], [1444, 1648], [1444, 1672], [1396, 1672]], "type": "textline", "text": "C09", "confidence_by_character": [0.895420491695404, 0.9037134647369385, 0.9129383563995361], "confidence_by_field": 0.895420491695404, "original_text": "C09"}, {"location": [[795, 1784], [1024, 1784], [1024, 1809], [795, 1809]], "type": "textline", "text": "下吸頭の悪性新生物", "confidence_by_character": [0.9195528626441956, 0.034070324152708054, 0.9836310148239136, 0.9136298894882202, 0.973427951335907, 0.9322265386581421, 0.8701528906822205, 0.9183077216148376, 0.9187859892845154], "confidence_by_field": 0.034070324152708054, "original_text": "下吸頭の悪性新生物"}, {"location": [[796, 1818], [1323, 1818], [1323, 1843], [796, 1843]], "type": "textline", "text": "その他および部位不明確のロ層,ロ燃および吸", "confidence_by_character": [0.9318774342536926, 0.9232571125030518, 0.9500783085823059, 0.9243751168251038, 0.9302060008049011, 0.9279889464378357, 0.9053834676742554, 0.930399477481842, 0.9159597754478455, 0.9392445087432861, 0.9305707812309265, 0.9229483008384705, 0.806891143321991, 0.02225085347890854, 0.9139421582221985, 0.6818311810493469, 0.022198768332600594, 0.9432104229927063, 0.9353025555610657, 0.9138333201408386, 0.13913965225219727], "confidence_by_field": 0.022198768332600594, "original_text": "その他および部位不明確のロ層、ロ燃および吸"}, {"location": [[1396, 1784], [1444, 1784], [1444, 1808], [1396, 1808]], "type": "textline", "text": "C13", "confidence_by_character": [0.905774712562561, 0.9163073897361755, 0.9222668409347534], "confidence_by_field": 0.905774712562561, "original_text": "C13"}, {"location": [[1396, 1749], [1444, 1749], [1444, 1773], [1396, 1773]], "type": "textline", "text": "C12", "confidence_by_character": [0.9066162109375, 0.9170100688934326, 0.9163629412651062], "confidence_by_field": 0.9066162109375, "original_text": "C12"}, {"location": [[799, 1853], [974, 1853], [974, 1878], [799, 1878]], "type": "textline", "text": "頭の悪性新生物", "confidence_by_character": [0.9804045557975769, 0.910281777381897, 0.9710597991943359, 0.9354541897773743, 0.8693702816963196, 0.9122170209884644, 0.9148290157318115], "confidence_by_field": 0.8693702816963196, "original_text": "頭の悪性新生物"}, {"location": [[1396, 1853], [1444, 1853], [1444, 1877], [1396, 1877]], "type": "textline", "text": "C14", "confidence_by_character": [0.9047407507896423, 0.9160767197608948, 0.9188416600227356], "confidence_by_field": 0.9047407507896423, "original_text": "C14"}, {"location": [[144, 2237], [226, 2237], [226, 2288], [144, 2288]], "type": "textline", "text": "230", "confidence_by_character": [0.9160026907920837, 0.9224262833595276, 0.9218127131462097], "confidence_by_field": 0.9160026907920837, "original_text": "230"}, {"location": [[43, 574], [70, 574], [70, 1099], [43, 1099]], "type": "textline", "text": "5年ごと配当付特定状態保障定期保険特約", "confidence_by_character": [0.9999817609786987, 0.9999939203262329, 0.999440610408783, 0.9999921321868896, 0.9999923706054688, 0.9999927282333374, 0.999988317489624, 0.9999979734420776, 0.9999949932098389, 0.9999876022338867, 0.9997574687004089, 0.9999936819076538, 0.9998949766159058, 0.9999946355819702, 0.9999922513961792, 0.9999923706054688, 0.9999113082885742, 0.9999916553497314, 0.9999662637710571], "confidence_by_field": 0.999440610408783, "original_text": "5年ごと配当付特定状態保障定期保険特約"}, {"location": [[181, 319], [206, 319], [206, 568], [181, 568]], "type": "textline", "text": "特約介護保険金", "confidence_by_character": [0.9999964237213135, 0.999936580657959, 0.9999880790710449, 0.9999940395355225, 0.9999983310699463, 0.9999942779541016, 0.9999850988388062], "confidence_by_field": 0.999936580657959, "original_text": "特約介護保険金"}, {"location": [[798, 338], [825, 338], [825, 550], [798, 550]], "type": "textline", "text": "特約保険金額", "confidence_by_character": [0.9999959468841553, 0.9999551773071289, 0.9999978542327881, 0.999985933303833, 0.9999955892562866, 0.9999222755432129], "confidence_by_field": 0.9999222755432129, "original_text": "特約保険金額"}, {"location": [[924, 263], [949, 263], [949, 626], [924, 626]], "type": "textline", "text": "特約介護保険金受取人", "confidence_by_character": [0.9999934434890747, 0.999797523021698, 0.9999891519546509, 0.9999940395355225, 0.9999979734420776, 0.9999916553497314, 0.9999940395355225, 0.9999964237213135, 0.9999842643737793, 0.9999736547470093], "confidence_by_field": 0.999797523021698, "original_text": "特約介護保険金受取人"}], "table": [{"location": [[1339, 1337], [1496, 1337], [1496, 1880], [1339, 1880]], "bbox": [1339, 1337, 1496, 1880], "points": [[1339, 1339], [1340, 1337], [1341, 1339], [1397, 1339], [1398, 1337], [1410, 1337], [1411, 1339], [1417, 1339], [1418, 1337], [1419, 1337], [1420, 1339], [1423, 1339], [1424, 1337], [1446, 1337], [1447, 1339], [1487, 1339], [1488, 1337], [1494, 1337], [1496, 1340], [1496, 1348], [1495, 1349], [1496, 1350], [1496, 1879], [1495, 1880], [1340, 1880], [1339, 1879]], "type": "cell", "rows": [2, 2], "columns": [4, 4], "text_list": []}, {"location": [[764, 1337], [1334, 1337], [1334, 1880], [764, 1880]], "bbox": [764, 1337, 1334, 1880], "points": [[764, 1339], [766, 1337], [767, 1339], [768, 1337], [769, 1339], [777, 1339], [778, 1337], [901, 1337], [902, 1339], [904, 1337], [974, 1337], [975, 1339], [981, 1339], [982, 1337], [983, 1339], [988, 1339], [989, 1337], [990, 1339], [1333, 1339], [1334, 1340], [1334, 1879], [1333, 1880], [766, 1880], [764, 1879]], "type": "cell", "rows": [2, 2], "columns": [3, 3], "text_list": []}, {"location": [[1339, 1302], [1496, 1302], [1496, 1334], [1339, 1334]], "bbox": [1339, 1302, 1496, 1334], "points": [[1339, 1303], [1340, 1302], [1341, 1303], [1361, 1303], [1362, 1302], [1364, 1302], [1365, 1303], [1367, 1302], [1371, 1302], [1372, 1303], [1378, 1303], [1380, 1302], [1390, 1302], [1391, 1303], [1392, 1302], [1409, 1302], [1410, 1303], [1436, 1303], [1437, 1302], [1458, 1302], [1459, 1303], [1461, 1303], [1463, 1302], [1467, 1302], [1468, 1303], [1471, 1303], [1472, 1302], [1473, 1303], [1475, 1303], [1477, 1302], [1482, 1302], [1484, 1303], [1495, 1303], [1496, 1305], [1496, 1333], [1495, 1334], [1340, 1334], [1339, 1333]], "type": "cell", "rows": [1, 1], "columns": [4, 4], "text_list": []}, {"location": [[726, 1302], [1334, 1302], [1334, 1880], [726, 1880]], "bbox": [726, 1302, 1334, 1880], "points": [[726, 1303], [727, 1302], [728, 1303], [742, 1303], [743, 1302], [750, 1302], [751, 1303], [767, 1303], [768, 1302], [781, 1302], [782, 1303], [794, 1303], [795, 1302], [799, 1302], [801, 1303], [816, 1303], [817, 1302], [832, 1302], [833, 1303], [835, 1302], [836, 1303], [840, 1303], [842, 1302], [849, 1302], [850, 1303], [852, 1303], [853, 1302], [857, 1302], [858, 1303], [933, 1303], [934, 1302], [935, 1302], [936, 1303], [940, 1303], [941, 1302], [944, 1302], [946, 1303], [947, 1303], [948, 1302], [961, 1302], [962, 1303], [963, 1303], [964, 1302], [977, 1302], [978, 1303], [995, 1303], [996, 1302], [1001, 1302], [1002, 1303], [1009, 1303], [1010, 1302], [1011, 1303], [1013, 1303], [1015, 1302], [1037, 1302], [1038, 1303], [1040, 1303], [1042, 1302], [1045, 1302], [1046, 1303], [1049, 1303], [1050, 1302], [1051, 1303], [1054, 1303], [1056, 1302], [1057, 1303], [1060, 1303], [1061, 1302], [1063, 1303], [1067, 1303], [1068, 1302], [1073, 1302], [1074, 1303], [1075, 1303], [1077, 1302], [1087, 1302], [1088, 1303], [1093, 1303], [1094, 1302], [1095, 1303], [1333, 1303], [1334, 1305], [1334, 1333], [1333, 1334], [1129, 1334], [1128, 1333], [1127, 1334], [760, 1334], [759, 1335], [759, 1879], [757, 1880], [727, 1880], [726, 1879]], "type": "cell", "rows": [1, 2], "columns": [2, 3], "text_list": []}, {"location": [[350, 1302], [721, 1302], [721, 1880], [350, 1880]], "bbox": [350, 1302, 721, 1880], "points": [[366, 1303], [367, 1302], [385, 1302], [387, 1303], [391, 1303], [392, 1302], [395, 1302], [396, 1303], [398, 1303], [399, 1302], [401, 1303], [415, 1303], [416, 1302], [426, 1302], [428, 1303], [444, 1303], [445, 1302], [446, 1302], [447, 1303], [450, 1303], [451, 1302], [453, 1302], [454, 1303], [467, 1303], [468, 1302], [470, 1302], [471, 1303], [475, 1303], [477, 1302], [485, 1302], [486, 1303], [492, 1303], [493, 1302], [494, 1302], [495, 1303], [499, 1303], [500, 1302], [501, 1303], [618, 1303], [619, 1302], [621, 1303], [642, 1303], [643, 1302], [644, 1303], [720, 1303], [721, 1305], [721, 1879], [720, 1880], [352, 1880], [350, 1879], [350, 1305], [352, 1303]], "type": "cell", "rows": [1, 2], "columns": [1, 1], "text_list": []}, {"location": [[150, 1302], [347, 1302], [347, 1880], [150, 1880]], "bbox": [150, 1302, 347, 1880], "points": [[150, 1303], [152, 1302], [153, 1303], [162, 1303], [163, 1302], [187, 1302], [188, 1303], [190, 1303], [191, 1302], [194, 1302], [195, 1303], [204, 1303], [205, 1302], [207, 1303], [217, 1303], [218, 1302], [223, 1302], [224, 1303], [225, 1303], [226, 1302], [236, 1302], [237, 1303], [243, 1303], [244, 1302], [245, 1303], [345, 1303], [346, 1305], [346, 1878], [347, 1879], [346, 1880], [153, 1880], [150, 1878]], "type": "cell", "rows": [1, 2], "columns": [0, 0], "text_list": []}, {"location": [[1339, 1234], [1496, 1234], [1496, 1298], [1339, 1298]], "bbox": [1339, 1234, 1496, 1298], "points": [[1339, 1236], [1340, 1234], [1495, 1234], [1496, 1236], [1496, 1250], [1495, 1251], [1496, 1252], [1495, 1253], [1496, 1254], [1495, 1256], [1496, 1257], [1495, 1258], [1496, 1259], [1495, 1260], [1496, 1261], [1495, 1263], [1495, 1295], [1496, 1296], [1495, 1298], [1340, 1298], [1339, 1296]], "type": "cell", "rows": [0, 0], "columns": [4, 4], "text_list": []}, {"location": [[726, 1234], [1334, 1234], [1334, 1298], [726, 1298]], "bbox": [726, 1234, 1334, 1298], "points": [[726, 1236], [727, 1234], [1333, 1234], [1334, 1236], [1334, 1296], [1333, 1298], [727, 1298], [726, 1296]], "type": "cell", "rows": [0, 0], "columns": [2, 3], "text_list": []}, {"location": [[350, 1234], [721, 1234], [721, 1298], [350, 1298]], "bbox": [350, 1234, 721, 1298], "points": [[350, 1236], [352, 1234], [720, 1234], [721, 1236], [721, 1296], [720, 1298], [352, 1298], [350, 1296]], "type": "cell", "rows": [0, 0], "columns": [1, 1], "text_list": []}, {"location": [[150, 1234], [347, 1234], [347, 1298], [150, 1298]], "bbox": [150, 1234, 347, 1298], "points": [[150, 1236], [152, 1234], [346, 1234], [347, 1236], [346, 1237], [346, 1296], [345, 1298], [152, 1298], [150, 1296]], "type": "cell", "rows": [0, 0], "columns": [0, 0], "text_list": []}, {"location": [[146, 1229], [1501, 1229], [1501, 1885], [146, 1885]], "bbox": [146, 1229, 1501, 1885], "points": [[147, 1229], [147, 1230], [146, 1231], [146, 1885], [1501, 1885], [1501, 1229]], "type": "table", "contains": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}, {"location": [[1001, 173], [1496, 173], [1496, 716], [1001, 716]], "bbox": [1001, 173, 1496, 716], "points": [[1001, 174], [1002, 173], [1054, 173], [1056, 174], [1058, 174], [1059, 173], [1422, 173], [1423, 174], [1424, 174], [1425, 173], [1494, 173], [1496, 175], [1496, 715], [1495, 716], [1002, 716], [1001, 715]], "type": "cell", "rows": [1, 1], "columns": [4, 4], "text_list": []}, {"location": [[875, 173], [996, 173], [996, 716], [875, 716]], "bbox": [875, 173, 996, 716], "points": [[875, 174], [877, 173], [995, 173], [996, 174], [996, 715], [995, 716], [877, 716], [875, 715]], "type": "cell", "rows": [1, 1], "columns": [3, 3], "text_list": []}, {"location": [[750, 173], [871, 173], [871, 716], [750, 716]], "bbox": [750, 173, 871, 716], "points": [[750, 174], [751, 173], [870, 173], [871, 174], [871, 715], [870, 716], [751, 716], [750, 715]], "type": "cell", "rows": [1, 1], "columns": [2, 2], "text_list": []}, {"location": [[240, 173], [747, 173], [747, 716], [240, 716]], "bbox": [240, 173, 747, 716], "points": [[240, 174], [242, 173], [253, 173], [254, 174], [256, 173], [337, 173], [339, 174], [340, 173], [443, 173], [444, 174], [445, 174], [446, 173], [458, 173], [459, 174], [460, 173], [466, 173], [467, 174], [468, 174], [470, 173], [536, 173], [537, 174], [539, 174], [540, 173], [585, 173], [587, 174], [588, 174], [589, 173], [610, 173], [611, 174], [612, 173], [617, 173], [618, 174], [619, 173], [744, 173], [746, 174], [746, 714], [747, 715], [746, 716], [242, 716], [240, 715]], "type": "cell", "rows": [1, 1], "columns": [1, 1], "text_list": []}, {"location": [[150, 173], [237, 173], [237, 716], [150, 716]], "bbox": [150, 173, 237, 716], "points": [[150, 174], [152, 173], [235, 173], [236, 174], [236, 714], [237, 715], [236, 716], [152, 716], [150, 715]], "type": "cell", "rows": [1, 1], "columns": [0, 0], "text_list": []}, {"location": [[1001, 104], [1496, 104], [1496, 168], [1001, 168]], "bbox": [1001, 104, 1496, 168], "points": [[1001, 105], [1002, 104], [1495, 104], [1496, 105], [1496, 116], [1495, 118], [1496, 119], [1495, 120], [1496, 121], [1495, 122], [1495, 167], [1494, 168], [1002, 168], [1001, 167]], "type": "cell", "rows": [0, 0], "columns": [4, 4], "text_list": []}, {"location": [[875, 104], [996, 104], [996, 168], [875, 168]], "bbox": [875, 104, 996, 168], "points": [[875, 105], [877, 104], [995, 104], [996, 105], [996, 167], [995, 168], [877, 168], [875, 167]], "type": "cell", "rows": [0, 0], "columns": [3, 3], "text_list": []}, {"location": [[750, 104], [871, 104], [871, 168], [750, 168]], "bbox": [750, 104, 871, 168], "points": [[750, 105], [751, 104], [870, 104], [871, 105], [871, 167], [870, 168], [751, 168], [750, 167]], "type": "cell", "rows": [0, 0], "columns": [2, 2], "text_list": []}, {"location": [[240, 104], [747, 104], [747, 168], [240, 168]], "bbox": [240, 104, 747, 168], "points": [[240, 105], [242, 104], [746, 104], [747, 105], [747, 108], [746, 109], [746, 167], [744, 168], [242, 168], [240, 167]], "type": "cell", "rows": [0, 0], "columns": [1, 1], "text_list": []}, {"location": [[150, 104], [237, 104], [237, 168], [150, 168]], "bbox": [150, 104, 237, 168], "points": [[150, 105], [152, 104], [236, 104], [237, 105], [237, 107], [236, 108], [236, 167], [235, 168], [153, 168], [150, 166]], "type": "cell", "rows": [0, 0], "columns": [0, 0], "text_list": []}, {"location": [[146, 99], [1501, 99], [1501, 721], [146, 721]], "bbox": [146, 99, 1501, 721], "points": [[147, 99], [147, 100], [146, 101], [146, 721], [1501, 721], [1501, 99]], "type": "table", "contains": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]}]}}] diff --git a/tests/resources/policy.md b/tests/resources/policy.md new file mode 100644 index 0000000..e8f1ba4 --- /dev/null +++ b/tests/resources/policy.md @@ -0,0 +1,131 @@ +# 5 年ごと配当付特定状態保障定期保険特約条項 目次 + +## 1. この特約の概要 + +第 1 条 特約保険金の支払 + +第 2 条 特約保険金の支払に関する補則 + +第 3 条 特約保険金の免責事由に該当した場合の取扱 + +第 4 条 特約保険金の請求、支払時期および支払場所 + +第 5 条 特約の保険料払込の免除 + +第 6 条 特約の締結 + +第 7 条 特約の責任開始期 + +第 8 条 特約の保険期間および保険料払込期間 + +第 9 条 特約の保険料の払込 + +第 10 条 猶予期間中の保険事故亡保険料の取扱 + +第 11 条 特約の失効 + +第 12 条 特約の復活 + +第 13 条 告知義務 + +第 14 条 告知義務違反による解除 + +第 15 条 特約を解除できない場合 + +第 16 条 重大事由による解除 + +第 17 条 特約の解約 + +第 18 条 特約の返還金 + +第 19 条 特約の消滅とみなす場合 + +第 20 条 債権者等により特約が解約される場合の取扱 + +第 21 条 特約保険金額の減額 + +第 22 条 特約の更新 + +第 23 条 特約の契約者配当金 + +第 24 条 主契約の内容变更に伴う特約の取扱 + +第 25 条 主契約について保険料の自動貸付の規定を適用 する場合の取扱 + +第 26 条 主契約を払済保険に变更する場合の取扱 + +第 27 条 法令等の改正等に伴う特約障害保険金および特 約介護保険金の支払事由に関する規定の变更 + +第 28 条 管轄裁判所 + +第 29 条 契約内容の登録 + +第 30 条 主約款の規定の準用 + +第 31 条 5 年ごと配当付定期保険または 5 年ごと利差配 当付定期保険に付加した場合の特則 + +第 32 条 5 年ごと配当付生存給付金付定期保険または 5 年己゙と利差配当付生存給付金付定期保険に付加 した場合の特則 +第 33 条 5 年ごと配当付逓増定期保険または 5 年ごと利 差配当付逓增定期保険沉付加した場合の特則 + +第 34 条 5 年ごと配当付養老保険または 5 年ごと利差配 当付養老保険に付加した場合の特則 + +第 35 条 5 年ごと配当付終身保険に 5 年ごと配当付年金 支払移行特約等を付加した場合または 5 年ごと 利差配当付終身保険厄 5 年己゙と利差配当付年金 支払移行特約等を付加した場合の特約の取扱 + +第 36 条 保険料払込期間が終身の 5 年ごと配当付終身保 険または保険料払込期間が終身の 5 年ごと利差 配当付終身保険尺付加した場合の特則 + +第 37 条 5 年ごと配当付更新型終身移行保険または 5 年 ごと利差配当付更新型終身移行保険に付加した 場合の特則 + +第 38 条 5 年ごと配当付更新型終身移行保険または 5 年 ごと利差配当付更新型終身移行保険に 5 年ごと 配当付年金支払移行特約等を付加した場合の特 約の取扱 + +第 39 条 5 年ごと配当付介護年金終身保障保険または 5 年ごと利差配当付介護年金終身保障保険に付加 した場合の特則 + +第 40 条 5 年己゙と配当付終身医療保険または 5 年ごと利 差配当付経身医療保険汇付加した場合の特則 + +第 41 条 5 年ごと配当付介護年金保険(解約返還金なし 型)に付加した場合の特則 + +第 42 条 転換後契約または变更後契約に付加した場合の 特則 + +第 43 条 転換特約、部分保障变更特約または家族内保障 承継特約を付加した場合の特則 + +第 44 条 特別条件を付けた場合の特則 + +第 45 条 契約日が平成 22 年 3 月 1 日以前の主契約に付加 した場合の特則 + +第 46 条 契約日が平成 24 年 10 月 1 日以前の主契約に付加 した場合の特約特定疾病保険金、特約障害保険 金および特約介護保険金の代理請求 + +## 2. 5 年ごと配当付特定状態保障定期保険特約条項 + +## 3. (この特約の概要) + +(2015 年 5 月 21 日改正) + +この特約は、つぎの給付を行うことを主な内容とするものです。なお、特約死亡保険金額、特約特定疾病保険金額、特 約障害保険金額および特約介護保険金額は同額です。 + +| | 給付の内容 | +| :----------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| 特約死亡保険金 | 被保険者がこの特約の保険期間中に死亡したときに支払います。 | +| 特約特定疾病保険金 | $\begin{array}{l}\text { 被保険者がこの特約の保険期間中に特定の疾病(悪性新生物(がん)、急性心筋梗塞または脳 } \\ \text { 卒中)により所定の状態に該当したときに支払います。 }\end{array}$ | +| 特約障害保険金 | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-1.jpg?height=93&width=1317&top_left_y=2514&top_left_x=537) | +| 特約介護保険金 | 被保険者がこの特約の保険期間中に傷害または疾病により所定の要介護状態に該当したとき | + +1。この特約において支払う特約保険金はつぎのとおりです。 + +| | $\begin{array}{l}\text { 特約保険金を支払う場合(以下「支払事由」 } \\ \text { といいます。) }\end{array}$ | 支払額 | 受取人 | $\begin{array}{l}\text { 支払事由に該当しても特約保険金を支払 } \\ \text { わない場合 (以下「免責事由」といいます。) }\end{array}$ | +| :-------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 死 } \\ 亡 \\ \text { 亡 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 }\end{array}$ | $\begin{array}{l}\text { 被保険者がこの特約の保険期間中に死亡し } \\ \text { たとき }\end{array}$ | $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 } \\ \text { 額 }\end{array}$ | $\begin{array}{l}\text { 特 } \\ \text { 絢 } \\ \text { 㨐 } \\ \text { 険 } \\ \text { 善 } \\ \text { 聚 }\end{array}$ | $\begin{array}{l}\text { つぎのいずれかにより左記の支払事由が } \\ \text { 生じたとき } \\ \text { (1) この特約の責任開始期(復活の取扱が } \\ \text { 行われた後は、最後の復活の際の責任開 } \\ \text { 始期。以下同じ。)の属するもからその } \\ \text { 日を含めて } 3 \text { 年以内の自殺 } \\ \text { (2) 保険契約者または特約死亡保険金受 } \\ \text { 取人の故意 } \\ \text { (3) 戦争その他の变乱 }\end{array}$ | +| $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 特 } \\ \text { 定 } \\ \text { 疾 } \\ \text { 病 } \\ \text { 除 } \\ \text { 金 }\end{array}$ | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-2.jpg?height=1118&width=621&top_left_y=724&top_left_x=305) | | $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 特 } \\ \text { 定 } \\ \text { 疾 } \\ \text { 病 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 } \\ \text { 受 } \\ \text { 取 } \\ \text { 人 }\end{array}$ | + | +| $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 障 } \\ \text { 害 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 }\end{array}$ | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-2.jpg?height=900&width=621&top_left_y=1837&top_left_x=305) | | $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 障 } \\ \text { 害 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 } \\ \text { 受 } \\ \text { 取 } \\ \text { 人 }\end{array}$ | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-2.jpg?height=904&width=594&top_left_y=1837&top_left_x=1262) | + +| | 支払事由 | 支払額 | 受取人 | 免責事由 | +| :---------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 介 } \\ \text { 護 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 }\end{array}$ | $\begin{array}{l}\text { 被保険者がこの特約の責任開始期以後の傷 } \\ \text { 害または疾病を原因として、この特約の保 } \\ \text { 険期間中に要介護状態(表4)に該当した } \\ \text { とき }\end{array}$ | $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 } \\ \text { 額 }\end{array}$ | $\begin{array}{l}\text { 特 } \\ \text { 約 } \\ \text { 介 } \\ \text { 護 } \\ \text { 保 } \\ \text { 険 } \\ \text { 金 } \\ \text { 受 } \\ \text { 取 } \\ \text { 人 }\end{array}$ | $\begin{array}{l}\text { つぎのいずれかにより左記の支払事由が生 } \\ \text { じたとき } \\ \text { (1) 保険契約者または被保険者の故意また } \\ \text { は重大な過失 } \\ \text { (2) 被保険者の犯罪行為 } \\ \text { (3) 被保険者の精神障害を原因とする事故 } \\ \text { (4) 被保険者の泥酔の状態を原因とする事 } \\ \text { 故 } \\ \text { (5) 被保険者が法令に定める運転資格を持 } \\ \text { たないで運転している間に生じた事故 } \\ \text { (6) 被保険者が法令に定める酒気帯び運転 } \\ \text { またはこれに相当する運転をしている間 } \\ \text { に生じた事故 } \\ \text { (7) 被保険者の薬物依存 } \\ \text { (8) 地震、噴火または津波 } \\ \text { (9) 戦争その他の变乱 }\end{array}$ | + +2. 第 1 項の特約特定疾病保険金の支払事由の(1)に該当した場合でも、この特約の責任開始期の属する日からその日を含 めて 90 日以内に乳房の悪性新生物(表 1 中、基本分類コード C 50 の悪性新生物。以下同じ。)に䍜患し、医師により診断 確定されたときは、当会社は、特約特定疾病保険金を支払いません。ただし、その後(乳房の悪性新生物についてはこ の特約の責任開始期の属する日からその日を含めて 90 日経過後)、この特約の保険期間中に、被保険者がその乳房の悪性 新生物と因果関係のない悪性新生物(表 1)に罹患し、医師により診断確定されたときは、特約特定疾病保険金を支払 います。 + +## 4. 表 1 対象となる悪性新生物、急性心筋梗塞、脳卒中 + +対象となる悪性新生物、急性心筋梗塞、脳卒中とは、次表によって定義づけられる疾病とし、かつ、平成 21 年 3 月 23 日 総務省告示第 176 号にもとづ<厚生労働省大臣官房統計情報部編「疾病、傷害および死因統計分類提要ICD-10(2003 年版)準拠」に記載された分類項目中、次表の基本分類コードに規定される内容によるものをいいます。 + +| 疾 病 名 | 疾 病 の 定 義 | 分 類 項 目 | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-3.jpg?height=85&width=150&top_left_y=1540&top_left_x=1689) | +| :--------: | :-----------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| 悪性新生物 | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-3.jpg?height=732&width=445&top_left_y=1617&top_left_x=442) | ![](https://cdn.mathpix.com/cropped/2023_09_15_60b7a05a11e6ef69c8bbg-3.jpg?height=732&width=750&top_left_y=1617&top_left_x=909) | $\begin{array}{l}\mathrm{C} 00-\mathrm{C} 1 \\ \mathrm{C} 00 \\ \mathrm{C} 01 \\ \mathrm{C} 02 \\ \mathrm{C} 03 \\ \mathrm{C} 04 \\ \mathrm{C} 05 \\ \mathrm{C} 06 \\ \mathrm{C} 07 \\ \mathrm{C} 08 \\ \mathrm{C} 09 \\ \mathrm{C} 10 \\ \mathrm{C} 11 \\ \mathrm{C} 12 \\ \mathrm{C} 13 \\ \mathrm{C} 14\end{array}$ | diff --git a/tests/test_table_reader.py b/tests/test_table_reader.py new file mode 100644 index 0000000..682642d --- /dev/null +++ b/tests/test_table_reader.py @@ -0,0 +1,45 @@ +import json +from pathlib import Path + +import pytest + +from kotaemon.loaders import MathpixPDFReader, OCRReader, PandasExcelReader + +input_file = Path(__file__).parent / "resources" / "dummy.pdf" +input_file_excel = Path(__file__).parent / "resources" / "dummy.xlsx" + + +@pytest.fixture +def fullocr_output(): + with open(Path(__file__).parent / "resources" / "fullocr_sample_output.json") as f: + fullocr = json.load(f) + return fullocr + + +@pytest.fixture +def mathpix_output(): + with open(Path(__file__).parent / "resources" / "policy.md") as f: + content = f.read() + return content + + +def test_ocr_reader(fullocr_output): + reader = OCRReader() + documents = reader.load_data(input_file, response_content=fullocr_output) + table_docs = [doc for doc in documents if doc.metadata.get("type", "") == "table"] + assert len(table_docs) == 4 + + +def test_mathpix_reader(mathpix_output): + reader = MathpixPDFReader() + documents = reader.load_data(input_file, response_content=mathpix_output) + table_docs = [doc for doc in documents if doc.metadata.get("type", "") == "table"] + assert len(table_docs) == 4 + + +def test_excel_reader(): + reader = PandasExcelReader() + documents = reader.load_data( + input_file_excel, + ) + assert len(documents) == 1