1. きっかけ
とあるHPの更新に困ってましてね。
PDFファイルを読んで、その情報を使ってHPを更新したいなと。
最初に目を付けたのはこちら。YomiToku
これ、マジで素晴らしい。
何度かテストしましたが、漫画でも文脈に沿って取得するという。
これを神いわず、なにを神というのか・・・
そんな素晴らしいライブラリ。
とはいえ、AIをローカルで動かすのは重いので、APIで動かしたいよね~ってことになりました。
と言いうことでAzure Document Intelligence
。今回の話題。
2. リソースの構築
ここでは詳しく書きません。
Azureの基礎とリソースの作り方はUdemyやらYouTubeなどでしっかり探してみてください。というのも僕もよくわかっていない部分が多く、下手にしゃべれないというのが本音です。
価格レベルはひとまずF0 Free
で作りました。いつでも変更可能です。
ただし、注意が必要です。
利用できる量であったり、ファイル容量であったり、制限があります。特にファイルサイズは4MBまでなので、テスト用のpdfは自作したほうが良いと思います。
3. サンプルの作成
テスト用のpdfを自作しました。
GPTに「海を題材に適当なストーリー」を作ってもらいました。計算式やQRコードも作って適当に配置してみました。
さて、これをpdfs
というフォルダに保存して実行していきます。
4. バージョン情報
バージョン情報
azure-ai-documentintelligence==1.0.0
python-dotenv
Python3.11.9
インストールをするときは以下で。
pip install azure-ai-documentintelligence --pre
ドキュメントは違う方法を書いてあり、うまく動きませんでしたが、GitHubにはこれが記載されていて、うまく動きました。
5. 環境設定
.env
ファイルにAPIキー、エンドポイントを記載しておきます。
endpoint = "Your End Point"
key = "Your key"
Azure Document Intelligenceのリソースを作ると、概要タブの下の方にあります。
6. プログラム
6-1. ライブラリインポート
import os
from dotenv import load_dotenv
from azure.core.credentials import AzureKeyCredential
from azure.ai.documentintelligence import DocumentIntelligenceClient
from azure.ai.documentintelligence.models import AnalyzeResult, AnalyzeOutputOption, DocumentAnalysisFeature
6-1. 環境設定
load_dotenv()
ENDPOINT = os.getenv('endpoint')
APIKEY = os.getenv('key')
6-1. Document Intelligence Client
document_intelligence_client = DocumentIntelligenceClient(
endpoint=ENDPOINT,
credential=AzureKeyCredential(APIKEY)
)
インスタンスを立てます。この時にエンドポイントとAPIキーを渡しておきます。
6-2. 実行
path_to_sample_documents = './pdfs/original_text_qr.pdf'
with open(path_to_sample_documents, "rb") as f:
poller = document_intelligence_client.begin_analyze_document(
"prebuilt-layout", # レイアウトモデル
# "prebuilt-contract", # 契約書モデル
body=f,
output=[AnalyzeOutputOption.FIGURES],
output_content_format="markdown",
features=[
DocumentAnalysisFeature.BARCODES,
DocumentAnalysisFeature.FORMULAS,
DocumentAnalysisFeature.OCR_HIGH_RESOLUTION,
DocumentAnalysisFeature.STYLE_FONT,
]
)
result: AnalyzeResult = poller.result()
wiht open
構文でバイナリでpdfを読み込みます。DocumentIntelligenceClient
のインスタンスにいろいろな設定とともに読み込んだ情報を渡します。詳細は後ほど。
6-3. 実行結果を確認する
6-3-1. どんなキーが帰ってきてる?
print(result.keys())
# dict_keys(['apiVersion', 'modelId', 'stringIndexType', 'content', 'pages', 'paragraphs', 'styles', 'documents', 'contentFormat', 'sections'])
それでは、それぞれを確認していきましょう。
6-3-2. 出力確認
出力内容を見ていきます。
for key in result.keys():
print('*' * 20, '\t', key)
print(result[key])
print('*' * 40)
print()
超長いので全出力はこちらから
******************** apiVersion
2024-11-30
****************************************
******************** modelId
prebuilt-layout
****************************************
******************** stringIndexType
textElements
****************************************
******************** content
# 『海の声を聴く少女』
遥か昔、海辺の小さな村に、ミナという名の少女が住んでいました。ミナは生まれながらにして耳が不自由で、人々の声を聞くことはできませんでしたが、不思議なことに海の
声だけは聞こえるのです。
毎日、ミナは浜辺に座り、波の音に耳を傾けていました。ざわざわと寄せては返す波の音は、ミナにとって美しい歌のように聞こえました。時には激しく、時には穏やかに、海は様々な表情を
見せてくれます。
ある日、ミナは海から不思議な声を聞きました。それは人間の声でも動物の鳴き声でもなく、どこか神秘的な響きを持っていました。好奇心に駆られたミナは、その声の正体を探ろうと決心し
ました。
村の人々は、ミナが海の声を聞けると知って驚きました。多くの人は信じられないという顔をしましたが、年老いた漁師のタロウじいさんだけは違いました。
「昔から伝わる言い伝えがあるんじゃ」とタロウじいさんは話し始めました。「海の底には古代の神殿があって、そこに住む海の精霊が時々人間を呼ぶんだと。
でも、その声が聞こえる者はめったにおらんのじゃ」
$$\bar { x } = \frac { \sum _ { i = 1 } ^ { N } x _ { i } } { N }$$
$$S = \frac { 1 } { N } \sum _ { i = 1 } ^ { N } \left( x _ { i } - \bar { x } \right) ^ { 2 }$$
$$\sigma = \sqrt { S }$$
<table>
<tr>
<th></th>
<th>Python</th>
<th>Go</th>
<th>$\mathrm { J a v a S c r i p t }$</th>
</tr>
<tr>
<td>$A \quad$</td>
<td>〇</td>
<td>$x$ ☒</td>
<td>初心者</td>
</tr>
<tr>
<td>$B \quad$</td>
<td>$\bigtriangleup$</td>
<td>〇</td>
<td>$t = k$</td>
</tr>
<tr>
<td>C氏</td>
<td>$x$ ☒</td>
<td>〇</td>
<td>$\bigtriangleup$</td>
</tr>
</table>

精霊はミナに、海の秘密や自然の摂理について多くのことを教えてくれました。嵐の前兆や魚の回遊、潮の満ち引きの
理由など、海に関する深い知識を授けられました。そして夜が明ける頃、ミナは再び浜辺に立っていました。村人たち
は、一晩中姿を消していたミナの無事な帰還を喜びました。それからというもの、ミナは村人たちに海の声を伝える役
目を果たすようになりました。嵐の接近を予測したり、大漁の時期を知らせたりと、ミナの助言は村人たちの生活に大
きな変化をもたらしました。年月が過ぎ、ミナは美しい大人の女性へと成長しました。彼女の噂は遠くまで広がり、多く
の人々が海の声を聞く少女の話を聞きに来るようになりました。ミナは、海の声を聞く能力を持つ子供たちを見出し、
その才能を育てることにも力を注ぎました。海と人間の世界をつなぐ架け橋を、次の世代へと繋いでいったのです。歳を
重ねたミナは、いつしか「海の巫女」と呼ばれるようになりました。彼女の周りには常に、海の精霊たちの優しい気配が
漂っていました。
****************************************
******************** pages
[{'pageNumber': 1, 'angle': 0.05515244975686073, 'width': 11.6806, 'height': 8.2639, 'unit': 'inch', 'words': [{'content': '『', 'polygon': [0.4539, 1.0525, 0.5318, 1.0531, 0.5315, 1.1965, 0.4537, 1.1962], 'confidence': 0.991, 'span': {'offset': 2, 'length': 1}}, {'content': '海', 'polygon': [0.5341, 1.053, 0.6261, 1.053, 0.6257, 1.197, 0.5339, 1.1965], 'confidence': 0.996, 'span': {'offset': 3, 'length': 1}}, {'content': 'の', 'polygon': [0.6473, 1.0532, 0.7393, 1.0537, 0.7389, 1.1975, 0.6469, 1.197], 'confidence': 0.996, 'span': {'offset': 4, 'length': 1}}, {'content': '声', 'polygon': [0.7794, 1.0539, 0.8714, 1.0547, 0.8709, 1.1985, 0.779, 1.1977], 'confidence': 0.996, 'span': {'offset': 5, 'length': 1}}, {'content': 'を', 'polygon': [0.9115, 1.0551, 1.0035, 1.0557, 1.0029, 1.2001, 0.9111, 1.1992], 'confidence': 0.995, 'span': {'offset': 6, 'length': 1}}, {'content': '聴', 'polygon': [1.0059, 1.0557, 1.0978, 1.0556, 1.0972, 1.2002, 1.0053, 1.2001], 'confidence': 0.995, 'span': {'offset': 7, 'length': 1}}, {'content': 'く', 'polygon': [1.1191, 1.056, 1.1922, 1.0572, 1.1913, 1.2002, 1.1183, 1.1999], 'confidence': 0.911, 'span': {'offset': 8, 'length': 1}}, {'content': '少', 'polygon': [1.1945, 1.0572, 1.2865, 1.0582, 1.2855, 1.2014, 1.1937, 1.2003], 'confidence': 0.995, 'span': {'offset': 9, 'length': 1}}, {'content': '女', 'polygon': [1.3455, 1.0576, 1.4375, 1.0572, 1.4368, 1.2026, 1.3446, 1.2018], 'confidence': 0.996, 'span': {'offset': 10, 'length': 1}}, {'content': '』', 'polygon': [1.4587, 1.0573, 1.5334, 1.0581, 1.5334, 1.2011, 1.4581, 1.2027], 'confidence': 0.995, 'span': {'offset': 11, 'length': 1}}, {'content': '遥', 'polygon': [0.4526, 1.2275, 0.5732, 1.2276, 0.573, 1.3734, 0.4524, 1.3734], 'confidence': 0.995, 'span': {'offset': 14, 'length': 1}}, {'content': 'か', 'polygon': [0.5756, 1.2276, 0.6716, 1.2277, 0.6714, 1.3734, 0.5755, 1.3734], 'confidence': 0.995, 'span': {'offset': 15, 'length': 1}}, {'content': '昔', 'polygon': [0.7331, 1.2278, 0.829, 1.2279, 0.8289, 1.3734, 0.7329, 1.3734], 'confidence': 0.996, 'span': {'offset': 16, 'length': 1}}, {'content': '、', 'polygon': [0.8315, 1.2279, 0.9077, 1.2279, 0.9077, 1.3734, 0.8314, 1.3734], 'confidence': 0.996, 'span': {'offset': 17, 'length': 1}}, {'content': '海', 'polygon': [0.9496, 1.228, 1.0455, 1.228, 1.0455, 1.3733, 0.9495, 1.3734], 'confidence': 0.996, 'span': {'offset': 18, 'length': 1}}, {'content': '辺', 'polygon': [1.0873, 1.2281, 1.1833, 1.2276, 1.1832, 1.3732, 1.0873, 1.3731], 'confidence': 0.995, 'span': {'offset': 19, 'length': 1}}, {'content': 'の', 'polygon': [1.2054, 1.2275, 1.3014, 1.2266, 1.3013, 1.3734, 1.2054, 1.3732], 'confidence': 0.993, 'span': {'offset': 20, 'length': 1}}, {'content': '小', 'polygon': [1.3235, 1.2264, 1.4195, 1.2256, 1.4193, 1.3734, 1.3234, 1.3734], 'confidence': 0.996, 'span': {'offset': 21, 'length': 1}}, {'content': 'さ', 'polygon': [1.481, 1.2251, 1.5769, 1.2242, 1.5766, 1.3734, 1.4807, 1.3734], 'confidence': 0.995, 'span': {'offset': 22, 'length': 1}}, {'content': 'な', 'polygon': [1.5794, 1.2242, 1.6753, 1.2234, 1.675, 1.3734, 1.5791, 1.3734], 'confidence': 0.996, 'span': {'offset': 23, 'length': 1}}, {'content': '村', 'polygon': [1.7171, 1.223, 1.8131, 1.2222, 1.8127, 1.3734, 1.7168, 1.3734], 'confidence': 0.996, 'span': {'offset': 24, 'length': 1}}, {'content': 'に', 'polygon': [1.8155, 1.2222, 1.9115, 1.2219, 1.9111, 1.3734, 1.8152, 1.3734], 'confidence': 0.996, 'span': {'offset': 25, 'length': 1}}, {'content': '、', 'polygon': [1.9336, 1.2219, 2.0074, 1.2218, 2.0071, 1.3734, 1.9333, 1.3734], 'confidence': 0.996, 'span': {'offset': 26, 'length': 1}}, {'content': 'ミ', 'polygon': [2.0517, 1.2217, 2.128, 1.2216, 2.1277, 1.3734, 2.0514, 1.3734], 'confidence': 0.996, 'span': {'offset': 27, 'length': 1}}, {'content': 'ナ', 'polygon': [2.1305, 1.2216, 2.2264, 1.2214, 2.2262, 1.3734, 2.1302, 1.3734], 'confidence': 0.996, 'span': {'offset': 28, 'length': 1}}, {'content': 'と', 'polygon': [2.2485, 1.2214, 2.3445, 1.2212, 2.3443, 1.3733, 2.2484, 1.3734], 'confidence': 0.995, 'span': {'offset': 29, 'length': 1}}, {'content': 'い', 'polygon': [2.347, 1.2212, 2.4429, 1.221, 2.4428, 1.3731, 2.3468, 1.3733], 'confidence': 0.996, 'span': {'offset': 30, 'length': 1}}, {'content': 'う', 'polygon': [2.465, 1.221, 2.561, 1.221, 2.561, 1.373, 2.465, 1.3731], 'confidence': 0.996, 'span': {'offset': 31, 'length': 1}}, {'content': '名', 'polygon': [2.6028, 1.221, 2.6988, 1.2211, 2.6988, 1.373, 2.6028, 1.373], 'confidence': 0.996, 'span': {'offset': 32, 'length': 1}}, {'content': 'の', 'polygon': [2.7012, 1.2211, 2.7972, 1.2211, 2.7973, 1.373, 2.7013, 1.373], 'confidence': 0.995, 'span': {'offset': 33, 'length': 1}}, {'content': '少', 'polygon': [2.839, 1.2212, 2.9349, 1.2213, 2.9351, 1.3731, 2.8391, 1.3731], 'confidence': 0.996, 'span': {'offset': 34, 'length': 1}}, {'content': '女', 'polygon': [2.9965, 1.2213, 3.0924, 1.2214, 3.0927, 1.3731, 2.9967, 1.3731], 'confidence': 0.996, 'span': {'offset': 35, 'length': 1}}, {'content': 'が', 'polygon': [3.1145, 1.2214, 3.2105, 1.2215, 3.2108, 1.3731, 3.1148, 1.3731], 'confidence': 0.996, 'span': {'offset': 36, 'length': 1}}, {'content': '住', 'polygon': [3.2523, 1.2217, 3.3679, 1.2221, 3.3683, 1.3734, 3.2526, 1.3732], 'confidence': 0.994, 'span': {'offset': 37, 'length': 1}}, {'content': 'ん', 'polygon': [3.3901, 1.2222, 3.486, 1.2226, 3.4864, 1.3734, 3.3904, 1.3734], 'confidence': 0.996, 'span': {'offset': 38, 'length': 1}}, {'content': 'で', 'polygon': [3.5082, 1.2227, 3.6041, 1.2231, 3.6045, 1.3734, 3.5085, 1.3734], 'confidence': 0.996, 'span': {'offset': 39, 'length': 1}}, {'content': 'い', 'polygon': [3.6263, 1.2232, 3.7222, 1.2235, 3.7226, 1.3734, 3.6266, 1.3734], 'confidence': 0.996, 'span': {'offset': 40, 'length': 1}}, {'content': 'ま', 'polygon': [3.764, 1.2237, 3.86, 1.2241, 3.8604, 1.3734, 3.7644, 1.3734], 'confidence': 0.996, 'span': {'offset': 41, 'length': 1}}, {'content': 'し', 'polygon': [3.8624, 1.2241, 3.9584, 1.224, 3.9588, 1.3734, 3.8628, 1.3734], 'confidence': 0.996, 'span': {'offset': 42, 'length': 1}}, {'content': 'た', 'polygon': [3.9805, 1.224, 4.0765, 1.2238, 4.0768, 1.3734, 3.9809, 1.3734], 'confidence': 0.996, 'span': {'offset': 43, 'length': 1}}, {'content': '。', 'polygon': [4.0789, 1.2238, 4.1552, 1.2236, 4.1555, 1.3734, 4.0793, 1.3734], 'confidence': 0.996, 'span': {'offset': 44, 'length': 1}}, {'content': 'ミ', 'polygon': [4.1995, 1.2235, 4.2733, 1.2233, 4.2736, 1.3734, 4.1998, 1.3734], 'confidence': 0.995, 'span': {'offset': 45, 'length': 1}}, {'content': 'ナ', 'polygon': [4.2758, 1.2233, 4.3717, 1.2231, 4.372, 1.3734, 4.2761, 1.3734], 'confidence': 0.995, 'span': {'offset': 46, 'length': 1}}, {'content': 'は', 'polygon': [4.3939, 1.223, 4.4898, 1.2228, 4.4901, 1.3732, 4.3942, 1.3734], 'confidence': 0.995, 'span': {'offset': 47, 'length': 1}}, {'content': '生', 'polygon': [4.5513, 1.2227, 4.6473, 1.2225, 4.6476, 1.3732, 4.5516, 1.3731], 'confidence': 0.996, 'span': {'offset': 48, 'length': 1}}, {'content': 'ま', 'polygon': [4.6891, 1.2225, 4.785, 1.2223, 4.7854, 1.3734, 4.6894, 1.3733], 'confidence': 0.996, 'span': {'offset': 49, 'length': 1}}, {'content': 'れ', 'polygon': [4.8072, 1.2223, 4.9031, 1.2221, 4.9035, 1.3734, 4.8075, 1.3734], 'confidence': 0.996, 'span': {'offset': 50, 'length': 1}}, {'content': 'な', 'polygon': [4.9253, 1.2221, 5.0212, 1.2219, 5.0216, 1.3734, 4.9256, 1.3734], 'confidence': 0.996, 'span': {'offset': 51, 'length': 1}}, {'content': 'が', 'polygon': [5.0434, 1.2219, 5.1393, 1.2218, 5.1397, 1.3734, 5.0437, 1.3734], 'confidence': 0.996, 'span': {'offset': 52, 'length': 1}}, {'content': 'ら', 'polygon': [5.1811, 1.2217, 5.2771, 1.2217, 5.2775, 1.3734, 5.1815, 1.3734], 'confidence': 0.996, 'span': {'offset': 53, 'length': 1}}, {'content': 'に', 'polygon': [5.2795, 1.2217, 5.3755, 1.2221, 5.376, 1.3734, 5.28, 1.3734], 'confidence': 0.996, 'span': {'offset': 54, 'length': 1}}, {'content': 'し', 'polygon': [5.3976, 1.2221, 5.4936, 1.2225, 5.4941, 1.3734, 5.3981, 1.3734], 'confidence': 0.996, 'span': {'offset': 55, 'length': 1}}, {'content': 'て', 'polygon': [5.5157, 1.2225, 5.6117, 1.2229, 5.6123, 1.3734, 5.5163, 1.3734], 'confidence': 0.996, 'span': {'offset': 56, 'length': 1}}, {'content': '耳', 'polygon': [5.6535, 1.223, 5.7494, 1.2233, 5.7501, 1.3734, 5.6541, 1.3734], 'confidence': 0.996, 'span': {'offset': 57, 'length': 1}}, {'content': 'が', 'polygon': [5.7716, 1.2234, 5.8675, 1.2237, 5.8683, 1.3734, 5.7723, 1.3734], 'confidence': 0.995, 'span': {'offset': 58, 'length': 1}}, {'content': '不', 'polygon': [5.9093, 1.2239, 6.0299, 1.2236, 6.0306, 1.3734, 5.9101, 1.3734], 'confidence': 0.996, 'span': {'offset': 59, 'length': 1}}, {'content': '自', 'polygon': [6.0619, 1.2235, 6.1504, 1.2232, 6.1511, 1.3734, 6.0626, 1.3734], 'confidence': 0.996, 'span': {'offset': 60, 'length': 1}}, {'content': '由', 'polygon': [6.1898, 1.2231, 6.2808, 1.2228, 6.2814, 1.3734, 6.1904, 1.3734], 'confidence': 0.996, 'span': {'offset': 61, 'length': 1}}, {'content': 'で', 'polygon': [6.303, 1.2228, 6.3989, 1.2225, 6.3994, 1.3733, 6.3035, 1.3734], 'confidence': 0.995, 'span': {'offset': 62, 'length': 1}}, {'content': '、', 'polygon': [6.4014, 1.2225, 6.4777, 1.2222, 6.4781, 1.3731, 6.4019, 1.3733], 'confidence': 0.99, 'span': {'offset': 63, 'length': 1}}, {'content': '人', 'polygon': [6.5244, 1.2221, 6.6154, 1.2218, 6.6158, 1.3728, 6.5249, 1.373], 'confidence': 0.996, 'span': {'offset': 64, 'length': 1}}, {'content': '々', 'polygon': [6.6573, 1.2219, 6.7532, 1.2219, 6.7536, 1.3728, 6.6576, 1.3728], 'confidence': 0.995, 'span': {'offset': 65, 'length': 1}}, {'content': 'の', 'polygon': [6.7753, 1.2219, 6.8713, 1.222, 6.8716, 1.3727, 6.7757, 1.3727], 'confidence': 0.995, 'span': {'offset': 66, 'length': 1}}, {'content': '声', 'polygon': [6.9328, 1.222, 7.0288, 1.222, 7.029, 1.3727, 6.9331, 1.3727], 'confidence': 0.996, 'span': {'offset': 67, 'length': 1}}, {'content': 'を', 'polygon': [7.0706, 1.2221, 7.1665, 1.2221, 7.1667, 1.3726, 7.0708, 1.3726], 'confidence': 0.996, 'span': {'offset': 68, 'length': 1}}, {'content': '聞', 'polygon': [7.169, 1.2221, 7.2846, 1.2222, 7.2848, 1.3726, 7.1692, 1.3726], 'confidence': 0.994, 'span': {'offset': 69, 'length': 1}}, {'content': 'く', 'polygon': [7.2871, 1.2221, 7.3633, 1.2221, 7.3634, 1.3724, 7.2872, 1.3726], 'confidence': 0.995, 'span': {'offset': 70, 'length': 1}}, {'content': 'こ', 'polygon': [7.3658, 1.2221, 7.4617, 1.222, 7.4618, 1.3722, 7.3659, 1.3724], 'confidence': 0.995, 'span': {'offset': 71, 'length': 1}}, {'content': 'と', 'polygon': [7.4839, 1.222, 7.5798, 1.222, 7.5798, 1.372, 7.4839, 1.3722], 'confidence': 0.996, 'span': {'offset': 72, 'length': 1}}, {'content': 'は', 'polygon': [7.5823, 1.222, 7.6782, 1.2219, 7.6782, 1.3718, 7.5823, 1.372], 'confidence': 0.994, 'span': {'offset': 73, 'length': 1}}, {'content': 'で', 'polygon': [7.7201, 1.2219, 7.816, 1.2218, 7.8159, 1.3715, 7.72, 1.3717], 'confidence': 0.996, 'span': {'offset': 74, 'length': 1}}, {'content': 'き', 'polygon': [7.8578, 1.2218, 7.9538, 1.2218, 7.9536, 1.3712, 7.8577, 1.3714], 'confidence': 0.995, 'span': {'offset': 75, 'length': 1}}, {'content': 'ま', 'polygon': [7.9759, 1.2217, 8.0719, 1.2217, 8.0717, 1.3714, 7.9757, 1.3712], 'confidence': 0.995, 'span': {'offset': 76, 'length': 1}}, {'content': 'せ', 'polygon': [8.094, 1.2216, 8.19, 1.2216, 8.1899, 1.3716, 8.0939, 1.3714], 'confidence': 0.996, 'span': {'offset': 77, 'length': 1}}, {'content': 'ん', 'polygon': [8.2121, 1.2215, 8.3081, 1.2215, 8.3081, 1.3718, 8.2121, 1.3716], 'confidence': 0.996, 'span': {'offset': 78, 'length': 1}}, {'content': 'で', 'polygon': [8.3302, 1.2215, 8.4458, 1.2214, 8.446, 1.3721, 8.3302, 1.3718], 'confidence': 0.994, 'span': {'offset': 79, 'length': 1}}, {'content': 'し', 'polygon': [8.4483, 1.2214, 8.5443, 1.2213, 8.5445, 1.3722, 8.4484, 1.3721], 'confidence': 0.996, 'span': {'offset': 80, 'length': 1}}, {'content': 'た', 'polygon': [8.5664, 1.2213, 8.6623, 1.2212, 8.6626, 1.3725, 8.5666, 1.3723], 'confidence': 0.996, 'span': {'offset': 81, 'length': 1}}, {'content': 'が', 'polygon': [8.6845, 1.2213, 8.7804, 1.2216, 8.7807, 1.3727, 8.6848, 1.3725], 'confidence': 0.995, 'span': {'offset': 82, 'length': 1}}, {'content': '、', 'polygon': [8.8026, 1.2217, 8.8985, 1.222, 8.8987, 1.373, 8.8028, 1.3728], 'confidence': 0.995, 'span': {'offset': 83, 'length': 1}}, {'content': '不', 'polygon': [8.9207, 1.2221, 9.0166, 1.2224, 9.0168, 1.3733, 8.9209, 1.3731], 'confidence': 0.996, 'span': {'offset': 84, 'length': 1}}, {'content': '思', 'polygon': [9.0584, 1.2225, 9.1544, 1.2229, 9.1545, 1.3734, 9.0586, 1.3734], 'confidence': 0.996, 'span': {'offset': 85, 'length': 1}}, {'content': '議', 'polygon': [9.1962, 1.223, 9.2922, 1.2233, 9.2922, 1.3734, 9.1963, 1.3734], 'confidence': 0.996, 'span': {'offset': 86, 'length': 1}}, {'content': 'な', 'polygon': [9.3143, 1.2234, 9.4102, 1.2235, 9.4102, 1.3734, 9.3143, 1.3734], 'confidence': 0.996, 'span': {'offset': 87, 'length': 1}}, {'content': 'こ', 'polygon': [9.4324, 1.2235, 9.5283, 1.2235, 9.5283, 1.373, 9.4324, 1.3734], 'confidence': 0.996, 'span': {'offset': 88, 'length': 1}}, {'content': 'と', 'polygon': [9.5308, 1.2235, 9.6267, 1.2236, 9.6267, 1.3725, 9.5308, 1.373], 'confidence': 0.996, 'span': {'offset': 89, 'length': 1}}, {'content': 'に', 'polygon': [9.6292, 1.2236, 9.7252, 1.2236, 9.725, 1.3721, 9.6291, 1.3725], 'confidence': 0.996, 'span': {'offset': 90, 'length': 1}}, {'content': '海', 'polygon': [9.7867, 1.2236, 9.8826, 1.2237, 9.8824, 1.3713, 9.7865, 1.3718], 'confidence': 0.996, 'span': {'offset': 91, 'length': 1}}, {'content': 'の', 'polygon': [9.8851, 1.2237, 10.0238, 1.2236, 10.0238, 1.3706, 9.8849, 1.3713], 'confidence': 0.996, 'span': {'offset': 92, 'length': 1}}, {'content': '声', 'polygon': [0.4523, 1.3855, 0.5653, 1.3853, 0.5647, 1.5261, 0.452, 1.5257], 'confidence': 0.994, 'span': {'offset': 94, 'length': 1}}, {'content': 'だ', 'polygon': [0.586, 1.3855, 0.6759, 1.3862, 0.6751, 1.5263, 0.5854, 1.5261], 'confidence': 0.996, 'span': {'offset': 95, 'length': 1}}, {'content': 'け', 'polygon': [0.6966, 1.3863, 0.8049, 1.3872, 0.804, 1.5273, 0.6958, 1.5265], 'confidence': 0.995, 'span': {'offset': 96, 'length': 1}}, {'content': 'は', 'polygon': [0.8257, 1.3873, 0.9155, 1.3875, 0.9147, 1.528, 0.8248, 1.5273], 'confidence': 0.996, 'span': {'offset': 97, 'length': 1}}, {'content': '聞', 'polygon': [0.9732, 1.3875, 1.0815, 1.3879, 1.0808, 1.5292, 0.9724, 1.5285], 'confidence': 0.995, 'span': {'offset': 98, 'length': 1}}, {'content': 'こ', 'polygon': [1.1022, 1.3879, 1.1921, 1.3875, 1.1915, 1.5295, 1.1016, 1.5292], 'confidence': 0.988, 'span': {'offset': 99, 'length': 1}}, {'content': 'え', 'polygon': [1.2128, 1.3874, 1.3027, 1.3875, 1.3022, 1.5294, 1.2123, 1.5296], 'confidence': 0.996, 'span': {'offset': 100, 'length': 1}}, {'content': 'る', 'polygon': [1.3419, 1.3881, 1.4318, 1.3882, 1.4313, 1.5295, 1.3413, 1.5292], 'confidence': 0.996, 'span': {'offset': 101, 'length': 1}}, {'content': 'の', 'polygon': [1.4341, 1.3882, 1.5239, 1.3882, 1.5235, 1.5293, 1.4336, 1.5295], 'confidence': 0.995, 'span': {'offset': 102, 'length': 1}}, {'content': 'で', 'polygon': [1.5816, 1.3885, 1.6714, 1.3886, 1.6707, 1.5288, 1.5809, 1.5289], 'confidence': 0.996, 'span': {'offset': 103, 'length': 1}}, {'content': 'す', 'polygon': [1.7106, 1.3888, 1.8005, 1.3894, 1.7999, 1.5286, 1.7099, 1.5287], 'confidence': 0.996, 'span': {'offset': 104, 'length': 1}}, {'content': '。', 'polygon': [1.8212, 1.3893, 1.8868, 1.3889, 1.8868, 1.5281, 1.8206, 1.5285], 'confidence': 0.996, 'span': {'offset': 105, 'length': 1}}, {'content': '毎', 'polygon': [0.4463, 1.5412, 0.5657, 1.5414, 0.5655, 1.6868, 0.4459, 1.6868], 'confidence': 0.99, 'span': {'offset': 108, 'length': 1}}, {'content': '日', 'polygon': [0.5877, 1.5414, 0.6827, 1.5416, 0.6826, 1.6868, 0.5874, 1.6868], 'confidence': 0.995, 'span': {'offset': 109, 'length': 1}}, {'content': '、', 'polygon': [0.6852, 1.5416, 0.7802, 1.5417, 0.7802, 1.6868, 0.685, 1.6868], 'confidence': 0.996, 'span': {'offset': 110, 'length': 1}}, {'content': 'ミ', 'polygon': [0.7827, 1.5417, 0.8778, 1.5419, 0.8778, 1.6868, 0.7826, 1.6868], 'confidence': 0.995, 'span': {'offset': 111, 'length': 1}}, {'content': 'ナ', 'polygon': [0.8802, 1.5419, 0.9753, 1.5421, 0.9754, 1.6868, 0.8802, 1.6868], 'confidence': 0.986, 'span': {'offset': 112, 'length': 1}}, {'content': 'は', 'polygon': [0.9777, 1.5421, 1.0728, 1.5422, 1.073, 1.6868, 0.9778, 1.6868], 'confidence': 0.995, 'span': {'offset': 113, 'length': 1}}, {'content': '浜', 'polygon': [1.1142, 1.5423, 1.2093, 1.5418, 1.2094, 1.6868, 1.1145, 1.6868], 'confidence': 0.996, 'span': {'offset': 114, 'length': 1}}, {'content': '辺', 'polygon': [1.2507, 1.5415, 1.3458, 1.5409, 1.3458, 1.6868, 1.2508, 1.6868], 'confidence': 0.995, 'span': {'offset': 115, 'length': 1}}, {'content': 'に', 'polygon': [1.3482, 1.5409, 1.4628, 1.5402, 1.4627, 1.6868, 1.3482, 1.6868], 'confidence': 0.997, 'span': {'offset': 116, 'length': 1}}, {'content': '座', 'polygon': [1.4847, 1.54, 1.5798, 1.5395, 1.5796, 1.6868, 1.4846, 1.6868], 'confidence': 0.996, 'span': {'offset': 117, 'length': 1}}, {'content': 'り', 'polygon': [1.6017, 1.5393, 1.6773, 1.5389, 1.677, 1.6868, 1.6015, 1.6868], 'confidence': 0.996, 'span': {'offset': 118, 'length': 1}}, {'content': '、', 'polygon': [1.6797, 1.5388, 1.7748, 1.5382, 1.7744, 1.6868, 1.6794, 1.6868], 'confidence': 0.996, 'span': {'offset': 119, 'length': 1}}, {'content': '波', 'polygon': [1.7967, 1.5381, 1.8918, 1.5381, 1.8914, 1.6868, 1.7963, 1.6868], 'confidence': 0.996, 'span': {'offset': 120, 'length': 1}}, {'content': 'の', 'polygon': [1.8942, 1.5381, 1.9893, 1.5382, 1.989, 1.6868, 1.8938, 1.6868], 'confidence': 0.995, 'span': {'offset': 121, 'length': 1}}, {'content': '音', 'polygon': [2.0308, 1.5382, 2.1258, 1.5383, 2.1255, 1.6868, 2.0304, 1.6868], 'confidence': 0.995, 'span': {'offset': 122, 'length': 1}}, {'content': 'に', 'polygon': [2.1478, 1.5384, 2.2428, 1.5385, 2.2426, 1.6868, 2.1475, 1.6868], 'confidence': 0.996, 'span': {'offset': 123, 'length': 1}}, {'content': '耳', 'polygon': [2.2648, 1.5385, 2.3598, 1.5386, 2.3597, 1.6868, 2.2646, 1.6868], 'confidence': 0.996, 'span': {'offset': 124, 'length': 1}}, {'content': 'を', 'polygon': [2.4013, 1.5387, 2.4963, 1.5388, 2.4963, 1.6868, 2.4012, 1.6868], 'confidence': 0.996, 'span': {'offset': 125, 'length': 1}}, {'content': '傾', 'polygon': [2.4988, 1.5388, 2.5939, 1.5385, 2.5939, 1.6868, 2.4987, 1.6868], 'confidence': 0.992, 'span': {'offset': 126, 'length': 1}}, {'content': 'け', 'polygon': [2.6158, 1.5384, 2.7304, 1.538, 2.7305, 1.6868, 2.6158, 1.6868], 'confidence': 0.994, 'span': {'offset': 127, 'length': 1}}, {'content': 'て', 'polygon': [2.7328, 1.538, 2.8279, 1.5376, 2.8281, 1.6868, 2.733, 1.6868], 'confidence': 0.996, 'span': {'offset': 128, 'length': 1}}, {'content': 'い', 'polygon': [2.8303, 1.5376, 2.9254, 1.5373, 2.9257, 1.6868, 2.8306, 1.6868], 'confidence': 0.995, 'span': {'offset': 129, 'length': 1}}, {'content': 'ま', 'polygon': [2.9668, 1.5371, 3.0229, 1.5369, 3.0233, 1.6868, 2.9672, 1.6868], 'confidence': 0.996, 'span': {'offset': 130, 'length': 1}}, {'content': 'し', 'polygon': [3.0253, 1.5369, 3.1399, 1.5365, 3.1404, 1.6868, 3.0258, 1.6868], 'confidence': 0.994, 'span': {'offset': 131, 'length': 1}}, {'content': 'た', 'polygon': [3.1423, 1.5365, 3.2374, 1.5364, 3.238, 1.6867, 3.1429, 1.6868], 'confidence': 0.996, 'span': {'offset': 132, 'length': 1}}, {'content': '。', 'polygon': [3.2398, 1.5364, 3.3349, 1.5365, 3.3354, 1.6868, 3.2404, 1.6867], 'confidence': 0.996, 'span': {'offset': 133, 'length': 1}}, {'content': 'ざ', 'polygon': [3.3373, 1.5365, 3.4324, 1.5366, 3.4329, 1.6868, 3.3378, 1.6868], 'confidence': 0.988, 'span': {'offset': 134, 'length': 1}}, {'content': 'わ', 'polygon': [3.4543, 1.5367, 3.5494, 1.5368, 3.5498, 1.6868, 3.4548, 1.6868], 'confidence': 0.988, 'span': {'offset': 135, 'length': 1}}, {'content': 'ざ', 'polygon': [3.5519, 1.5368, 3.6469, 1.5369, 3.6472, 1.6868, 3.5522, 1.6868], 'confidence': 0.99, 'span': {'offset': 136, 'length': 1}}, {'content': 'わ', 'polygon': [3.6689, 1.5369, 3.7639, 1.537, 3.7642, 1.6868, 3.6692, 1.6868], 'confidence': 0.975, 'span': {'offset': 137, 'length': 1}}, {'content': 'と', 'polygon': [3.7664, 1.537, 3.8614, 1.5371, 3.8616, 1.6868, 3.7666, 1.6868], 'confidence': 0.985, 'span': {'offset': 138, 'length': 1}}, {'content': '寄', 'polygon': [3.8834, 1.5371, 3.9784, 1.537, 3.9786, 1.6868, 3.8835, 1.6868], 'confidence': 0.996, 'span': {'offset': 139, 'length': 1}}, {'content': 'せ', 'polygon': [4.0004, 1.537, 4.0955, 1.5368, 4.0956, 1.6868, 4.0005, 1.6868], 'confidence': 0.996, 'span': {'offset': 140, 'length': 1}}, {'content': 'て', 'polygon': [4.1174, 1.5368, 4.193, 1.5367, 4.193, 1.6866, 4.1175, 1.6867], 'confidence': 0.996, 'span': {'offset': 141, 'length': 1}}, {'content': 'は', 'polygon': [4.1954, 1.5367, 4.2905, 1.5366, 4.2905, 1.6864, 4.1955, 1.6866], 'confidence': 0.992, 'span': {'offset': 142, 'length': 1}}, {'content': '返', 'polygon': [4.3514, 1.5365, 4.4465, 1.5364, 4.4465, 1.6862, 4.3514, 1.6863], 'confidence': 0.996, 'span': {'offset': 143, 'length': 1}}, {'content': 'す', 'polygon': [4.4684, 1.5364, 4.5635, 1.5362, 4.5635, 1.6861, 4.4684, 1.6862], 'confidence': 0.995, 'span': {'offset': 144, 'length': 1}}, {'content': '波', 'polygon': [4.5854, 1.5363, 4.6805, 1.5363, 4.6806, 1.6863, 4.5854, 1.6861], 'confidence': 0.996, 'span': {'offset': 145, 'length': 1}}, {'content': 'の', 'polygon': [4.7024, 1.5363, 4.7975, 1.5363, 4.7977, 1.6865, 4.7026, 1.6863], 'confidence': 0.995, 'span': {'offset': 146, 'length': 1}}, {'content': '音', 'polygon': [4.8389, 1.5363, 4.934, 1.5363, 4.9344, 1.6867, 4.8392, 1.6866], 'confidence': 0.996, 'span': {'offset': 147, 'length': 1}}, {'content': 'は', 'polygon': [4.9364, 1.5363, 5.0315, 1.5363, 5.0319, 1.6868, 4.9368, 1.6867], 'confidence': 0.995, 'span': {'offset': 148, 'length': 1}}, {'content': '、', 'polygon': [5.0535, 1.5363, 5.1485, 1.5364, 5.1491, 1.6868, 5.0539, 1.6868], 'confidence': 0.996, 'span': {'offset': 149, 'length': 1}}, {'content': 'ミ', 'polygon': [5.151, 1.5364, 5.2265, 1.5364, 5.2271, 1.6868, 5.1515, 1.6868], 'confidence': 0.995, 'span': {'offset': 150, 'length': 1}}, {'content': 'ナ', 'polygon': [5.229, 1.5364, 5.324, 1.5367, 5.3247, 1.6868, 5.2296, 1.6868], 'confidence': 0.994, 'span': {'offset': 151, 'length': 1}}, {'content': 'に', 'polygon': [5.3265, 1.5367, 5.4215, 1.5369, 5.4223, 1.6868, 5.3272, 1.6868], 'confidence': 0.995, 'span': {'offset': 152, 'length': 1}}, {'content': 'と', 'polygon': [5.4435, 1.537, 5.519, 1.5372, 5.5198, 1.6868, 5.4442, 1.6868], 'confidence': 0.995, 'span': {'offset': 153, 'length': 1}}, {'content': 'っ', 'polygon': [5.5215, 1.5372, 5.6166, 1.5374, 5.6174, 1.6868, 5.5223, 1.6868], 'confidence': 0.996, 'span': {'offset': 154, 'length': 1}}, {'content': 'て', 'polygon': [5.619, 1.5374, 5.7141, 1.5377, 5.715, 1.6868, 5.6198, 1.6868], 'confidence': 0.996, 'span': {'offset': 155, 'length': 1}}, {'content': '美', 'polygon': [5.736, 1.5377, 5.8311, 1.538, 5.832, 1.6868, 5.7369, 1.6868], 'confidence': 0.996, 'span': {'offset': 156, 'length': 1}}, {'content': 'し', 'polygon': [5.8335, 1.538, 5.9286, 1.538, 5.9295, 1.6868, 5.8345, 1.6868], 'confidence': 0.996, 'span': {'offset': 157, 'length': 1}}, {'content': 'い', 'polygon': [5.931, 1.538, 6.0261, 1.5377, 6.0269, 1.6868, 5.932, 1.6868], 'confidence': 0.996, 'span': {'offset': 158, 'length': 1}}, {'content': '歌', 'polygon': [6.0675, 1.5376, 6.1626, 1.5372, 6.1632, 1.6867, 6.0683, 1.6868], 'confidence': 0.996, 'span': {'offset': 159, 'length': 1}}, {'content': 'の', 'polygon': [6.1845, 1.5372, 6.2796, 1.5368, 6.2801, 1.6864, 6.1852, 1.6866], 'confidence': 0.995, 'span': {'offset': 160, 'length': 1}}, {'content': 'よ', 'polygon': [6.3015, 1.5368, 6.3966, 1.5364, 6.397, 1.6861, 6.302, 1.6863], 'confidence': 0.996, 'span': {'offset': 161, 'length': 1}}, {'content': 'う', 'polygon': [6.399, 1.5364, 6.4746, 1.5362, 6.4749, 1.686, 6.3994, 1.6861], 'confidence': 0.996, 'span': {'offset': 162, 'length': 1}}, {'content': 'に', 'polygon': [6.477, 1.5362, 6.5916, 1.5359, 6.5918, 1.6857, 6.4773, 1.686], 'confidence': 0.994, 'span': {'offset': 163, 'length': 1}}, {'content': '聞', 'polygon': [6.6136, 1.536, 6.7086, 1.5363, 6.7088, 1.6855, 6.6137, 1.6857], 'confidence': 0.996, 'span': {'offset': 164, 'length': 1}}, {'content': 'こ', 'polygon': [6.7306, 1.5363, 6.8256, 1.5366, 6.8258, 1.6854, 6.7307, 1.6855], 'confidence': 0.996, 'span': {'offset': 165, 'length': 1}}, {'content': 'え', 'polygon': [6.8281, 1.5366, 6.9231, 1.5369, 6.9233, 1.6853, 6.8282, 1.6854], 'confidence': 0.996, 'span': {'offset': 166, 'length': 1}}, {'content': 'ま', 'polygon': [6.9256, 1.5369, 7.0011, 1.5371, 7.0013, 1.6852, 6.9258, 1.6853], 'confidence': 0.994, 'span': {'offset': 167, 'length': 1}}, {'content': 'し', 'polygon': [7.0036, 1.5371, 7.1182, 1.5375, 7.1184, 1.685, 7.0038, 1.6852], 'confidence': 0.994, 'span': {'offset': 168, 'length': 1}}, {'content': 'た', 'polygon': [7.1206, 1.5375, 7.2157, 1.5378, 7.2159, 1.6849, 7.1208, 1.685], 'confidence': 0.996, 'span': {'offset': 169, 'length': 1}}, {'content': '。', 'polygon': [7.2181, 1.5378, 7.3132, 1.5377, 7.3134, 1.6848, 7.2183, 1.6849], 'confidence': 0.995, 'span': {'offset': 170, 'length': 1}}, {'content': '時', 'polygon': [7.3351, 1.5376, 7.4302, 1.5373, 7.4304, 1.6847, 7.3353, 1.6848], 'confidence': 0.996, 'span': {'offset': 171, 'length': 1}}, {'content': 'に', 'polygon': [7.4326, 1.5373, 7.5472, 1.537, 7.5474, 1.6845, 7.4328, 1.6847], 'confidence': 0.966, 'span': {'offset': 172, 'length': 1}}, {'content': 'は', 'polygon': [7.5496, 1.5369, 7.6447, 1.5367, 7.6449, 1.6844, 7.5498, 1.6845], 'confidence': 0.993, 'span': {'offset': 173, 'length': 1}}, {'content': '激', 'polygon': [7.6861, 1.5365, 7.7812, 1.5362, 7.7814, 1.6843, 7.6863, 1.6844], 'confidence': 0.996, 'span': {'offset': 174, 'length': 1}}, {'content': 'し', 'polygon': [7.7836, 1.5362, 7.8787, 1.5359, 7.8789, 1.6842, 7.7838, 1.6843], 'confidence': 0.995, 'span': {'offset': 175, 'length': 1}}, {'content': 'く', 'polygon': [7.8811, 1.5359, 7.9567, 1.5358, 7.9569, 1.6842, 7.8813, 1.6842], 'confidence': 0.995, 'span': {'offset': 176, 'length': 1}}, {'content': '、', 'polygon': [7.9591, 1.5358, 8.0542, 1.5358, 8.0544, 1.6844, 7.9593, 1.6842], 'confidence': 0.996, 'span': {'offset': 177, 'length': 1}}, {'content': '時', 'polygon': [8.0762, 1.5358, 8.1712, 1.5357, 8.1715, 1.6846, 8.0764, 1.6844], 'confidence': 0.996, 'span': {'offset': 178, 'length': 1}}, {'content': 'に', 'polygon': [8.1737, 1.5357, 8.2882, 1.5357, 8.2885, 1.6848, 8.1739, 1.6846], 'confidence': 0.995, 'span': {'offset': 179, 'length': 1}}, {'content': 'は', 'polygon': [8.2907, 1.5357, 8.3857, 1.5357, 8.386, 1.6849, 8.2909, 1.6848], 'confidence': 0.994, 'span': {'offset': 180, 'length': 1}}, {'content': '穏', 'polygon': [8.4272, 1.5357, 8.5222, 1.5357, 8.5226, 1.6852, 8.4275, 1.685], 'confidence': 0.986, 'span': {'offset': 181, 'length': 1}}, {'content': 'や', 'polygon': [8.5442, 1.5357, 8.6393, 1.5359, 8.6396, 1.6854, 8.5445, 1.6852], 'confidence': 0.996, 'span': {'offset': 182, 'length': 1}}, {'content': 'か', 'polygon': [8.6612, 1.536, 8.7563, 1.5364, 8.7565, 1.6858, 8.6615, 1.6855], 'confidence': 0.996, 'span': {'offset': 183, 'length': 1}}, {'content': 'に', 'polygon': [8.7587, 1.5364, 8.8538, 1.5369, 8.854, 1.6861, 8.759, 1.6858], 'confidence': 0.996, 'span': {'offset': 184, 'length': 1}}, {'content': '、', 'polygon': [8.8562, 1.5369, 8.9513, 1.5373, 8.9514, 1.6864, 8.8564, 1.6861], 'confidence': 0.996, 'span': {'offset': 185, 'length': 1}}, {'content': '海', 'polygon': [8.9732, 1.5374, 9.0878, 1.538, 9.0878, 1.6868, 8.9733, 1.6865], 'confidence': 0.994, 'span': {'offset': 186, 'length': 1}}, {'content': 'は', 'polygon': [9.0902, 1.538, 9.1853, 1.5384, 9.1853, 1.6868, 9.0903, 1.6868], 'confidence': 0.996, 'span': {'offset': 187, 'length': 1}}, {'content': '様', 'polygon': [9.2267, 1.5386, 9.3218, 1.539, 9.3217, 1.6868, 9.2267, 1.6868], 'confidence': 0.989, 'span': {'offset': 188, 'length': 1}}, {'content': '々', 'polygon': [9.3632, 1.5391, 9.4534, 1.5393, 9.4533, 1.6868, 9.3631, 1.6868], 'confidence': 0.996, 'span': {'offset': 189, 'length': 1}}, {'content': 'な', 'polygon': [9.4827, 1.5393, 9.5753, 1.5395, 9.5751, 1.6867, 9.4825, 1.6868], 'confidence': 0.991, 'span': {'offset': 190, 'length': 1}}, {'content': '表', 'polygon': [9.6167, 1.5396, 9.7118, 1.5398, 9.7115, 1.6863, 9.6165, 1.6865], 'confidence': 0.996, 'span': {'offset': 191, 'length': 1}}, {'content': '情', 'polygon': [9.7338, 1.5399, 9.8288, 1.5401, 9.8285, 1.686, 9.7335, 1.6862], 'confidence': 0.996, 'span': {'offset': 192, 'length': 1}}, {'content': 'を', 'polygon': [9.8703, 1.5402, 9.9705, 1.5404, 9.9705, 1.6856, 9.8699, 1.6859], 'confidence': 0.996, 'span': {'offset': 193, 'length': 1}}, {'content': '見', 'polygon': [0.4532, 1.7017, 0.5639, 1.7025, 0.5633, 1.8412, 0.4528, 1.8407], 'confidence': 0.996, 'span': {'offset': 195, 'length': 1}}, {'content': 'せ', 'polygon': [0.5843, 1.7024, 0.6724, 1.7027, 0.6715, 1.8413, 0.5835, 1.8412], 'confidence': 0.996, 'span': {'offset': 196, 'length': 1}}, {'content': 'て', 'polygon': [0.7108, 1.7028, 0.7989, 1.7032, 0.798, 1.841, 0.7099, 1.8411], 'confidence': 0.996, 'span': {'offset': 197, 'length': 1}}, {'content': 'く', 'polygon': [0.8012, 1.7032, 0.8712, 1.704, 0.8701, 1.8419, 0.8003, 1.841], 'confidence': 0.996, 'span': {'offset': 198, 'length': 1}}, {'content': 'れ', 'polygon': [0.8735, 1.704, 0.9797, 1.7055, 0.9789, 1.8427, 0.8724, 1.842], 'confidence': 0.996, 'span': {'offset': 199, 'length': 1}}, {'content': 'ま', 'polygon': [1, 1.7053, 1.0882, 1.7053, 1.0871, 1.8421, 0.9992, 1.8424], 'confidence': 0.996, 'span': {'offset': 200, 'length': 1}}, {'content': 'す', 'polygon': [1.1085, 1.7053, 1.1966, 1.7048, 1.1957, 1.842, 1.1074, 1.8421], 'confidence': 0.996, 'span': {'offset': 201, 'length': 1}}, {'content': '。', 'polygon': [1.1989, 1.7047, 1.2667, 1.7045, 1.2667, 1.8423, 1.198, 1.842], 'confidence': 0.996, 'span': {'offset': 202, 'length': 1}}, {'content': 'あ', 'polygon': [0.4486, 1.8638, 0.5487, 1.8638, 0.5484, 2.0101, 0.4484, 2.0101], 'confidence': 0.995, 'span': {'offset': 205, 'length': 1}}, {'content': 'る', 'polygon': [0.5511, 1.8638, 0.6658, 1.8639, 0.6656, 2.0101, 0.5509, 2.0101], 'confidence': 0.992, 'span': {'offset': 206, 'length': 1}}, {'content': '日', 'polygon': [0.6683, 1.8639, 0.7634, 1.864, 0.7632, 2.0101, 0.668, 2.0101], 'confidence': 0.99, 'span': {'offset': 207, 'length': 1}}, {'content': '、', 'polygon': [0.7659, 1.864, 0.8611, 1.864, 0.8608, 2.0101, 0.7656, 2.0101], 'confidence': 0.996, 'span': {'offset': 208, 'length': 1}}, {'content': 'ミ', 'polygon': [0.8635, 1.864, 0.9587, 1.8641, 0.9584, 2.0101, 0.8632, 2.0101], 'confidence': 0.995, 'span': {'offset': 209, 'length': 1}}, {'content': 'ナ', 'polygon': [0.9611, 1.8641, 1.0563, 1.8641, 1.056, 2.01, 0.9608, 2.0101], 'confidence': 0.989, 'span': {'offset': 210, 'length': 1}}, {'content': 'は', 'polygon': [1.0587, 1.8641, 1.1539, 1.8641, 1.1536, 2.0101, 1.0585, 2.01], 'confidence': 0.996, 'span': {'offset': 211, 'length': 1}}, {'content': '海', 'polygon': [1.1954, 1.864, 1.2906, 1.8637, 1.2902, 2.0101, 1.1951, 2.0101], 'confidence': 0.996, 'span': {'offset': 212, 'length': 1}}, {'content': 'か', 'polygon': [1.3126, 1.8636, 1.4077, 1.8634, 1.4073, 2.0101, 1.3122, 2.0101], 'confidence': 0.996, 'span': {'offset': 213, 'length': 1}}, {'content': 'ら', 'polygon': [1.4297, 1.8633, 1.5249, 1.863, 1.5244, 2.0101, 1.4293, 2.0101], 'confidence': 0.996, 'span': {'offset': 214, 'length': 1}}, {'content': '不', 'polygon': [1.5273, 1.863, 1.6225, 1.8627, 1.622, 2.0101, 1.5269, 2.0101], 'confidence': 0.996, 'span': {'offset': 215, 'length': 1}}, {'content': '思', 'polygon': [1.664, 1.8626, 1.7592, 1.8624, 1.7586, 2.0101, 1.6635, 2.0101], 'confidence': 0.996, 'span': {'offset': 216, 'length': 1}}, {'content': '議', 'polygon': [1.8007, 1.8622, 1.8959, 1.8621, 1.8953, 2.0101, 1.8001, 2.0101], 'confidence': 0.995, 'span': {'offset': 217, 'length': 1}}, {'content': 'な', 'polygon': [1.9178, 1.8621, 2.013, 1.862, 2.0126, 2.0101, 1.9173, 2.0101], 'confidence': 0.991, 'span': {'offset': 218, 'length': 1}}, {'content': '声', 'polygon': [2.035, 1.862, 2.1302, 1.862, 2.1299, 2.0101, 2.0346, 2.0101], 'confidence': 0.996, 'span': {'offset': 219, 'length': 1}}, {'content': 'を', 'polygon': [2.1716, 1.862, 2.2668, 1.8619, 2.2668, 2.0101, 2.1715, 2.0101], 'confidence': 0.995, 'span': {'offset': 220, 'length': 1}}, {'content': '聞', 'polygon': [2.2693, 1.8619, 2.3644, 1.8619, 2.3645, 2.0101, 2.2692, 2.0101], 'confidence': 0.996, 'span': {'offset': 221, 'length': 1}}, {'content': 'き', 'polygon': [2.4059, 1.8618, 2.5011, 1.8618, 2.5013, 2.0101, 2.406, 2.0101], 'confidence': 0.989, 'span': {'offset': 222, 'length': 1}}, {'content': 'ま', 'polygon': [2.5036, 1.8618, 2.5792, 1.8615, 2.5795, 2.0101, 2.5038, 2.0101], 'confidence': 0.996, 'span': {'offset': 223, 'length': 1}}, {'content': 'し', 'polygon': [2.5817, 1.8615, 2.6768, 1.861, 2.6772, 2.01, 2.5819, 2.0101], 'confidence': 0.996, 'span': {'offset': 224, 'length': 1}}, {'content': 'た', 'polygon': [2.6988, 1.8609, 2.7745, 1.8605, 2.7749, 2.0096, 2.6992, 2.0099], 'confidence': 0.996, 'span': {'offset': 225, 'length': 1}}, {'content': '。', 'polygon': [2.7769, 1.8605, 2.8526, 1.8601, 2.8531, 2.0093, 2.7774, 2.0096], 'confidence': 0.996, 'span': {'offset': 226, 'length': 1}}, {'content': 'そ', 'polygon': [2.8965, 1.8599, 2.9892, 1.8594, 2.9899, 2.0088, 2.8971, 2.0092], 'confidence': 0.99, 'span': {'offset': 227, 'length': 1}}, {'content': 'れ', 'polygon': [2.9917, 1.8594, 3.0868, 1.8589, 3.0876, 2.0084, 2.9923, 2.0088], 'confidence': 0.996, 'span': {'offset': 228, 'length': 1}}, {'content': 'は', 'polygon': [3.0893, 1.8589, 3.1845, 1.8584, 3.1853, 2.008, 3.09, 2.0084], 'confidence': 0.991, 'span': {'offset': 229, 'length': 1}}, {'content': '人', 'polygon': [3.226, 1.8583, 3.3211, 1.8585, 3.3219, 2.0081, 3.2268, 2.0079], 'confidence': 0.996, 'span': {'offset': 230, 'length': 1}}, {'content': '間', 'polygon': [3.3626, 1.8585, 3.4578, 1.8587, 3.4586, 2.0083, 3.3634, 2.0082], 'confidence': 0.989, 'span': {'offset': 231, 'length': 1}}, {'content': 'の', 'polygon': [3.4798, 1.8588, 3.575, 1.859, 3.5757, 2.0085, 3.4805, 2.0083], 'confidence': 0.996, 'span': {'offset': 232, 'length': 1}}, {'content': '声', 'polygon': [3.6164, 1.859, 3.7116, 1.8592, 3.7123, 2.0087, 3.6171, 2.0086], 'confidence': 0.996, 'span': {'offset': 233, 'length': 1}}, {'content': 'で', 'polygon': [3.7336, 1.8593, 3.8288, 1.8595, 3.8294, 2.0089, 3.7342, 2.0087], 'confidence': 0.996, 'span': {'offset': 234, 'length': 1}}, {'content': 'も', 'polygon': [3.8507, 1.8595, 3.9459, 1.8595, 3.9465, 2.009, 3.8513, 2.0089], 'confidence': 0.995, 'span': {'offset': 235, 'length': 1}}, {'content': '動', 'polygon': [3.9679, 1.8594, 4.0631, 1.8591, 4.0637, 2.0089, 3.9685, 2.009], 'confidence': 0.995, 'span': {'offset': 236, 'length': 1}}, {'content': '物', 'polygon': [4.085, 1.8591, 4.1802, 1.8588, 4.1809, 2.0088, 4.0857, 2.0088], 'confidence': 0.996, 'span': {'offset': 237, 'length': 1}}, {'content': 'の', 'polygon': [4.2022, 1.8588, 4.2974, 1.8585, 4.2981, 2.0086, 4.2029, 2.0087], 'confidence': 0.996, 'span': {'offset': 238, 'length': 1}}, {'content': '鳴', 'polygon': [4.3388, 1.8584, 4.434, 1.8581, 4.4348, 2.0085, 4.3396, 2.0086], 'confidence': 0.988, 'span': {'offset': 239, 'length': 1}}, {'content': 'き', 'polygon': [4.456, 1.858, 4.5512, 1.8578, 4.552, 2.0084, 4.4568, 2.0085], 'confidence': 0.989, 'span': {'offset': 240, 'length': 1}}, {'content': '声', 'polygon': [4.5731, 1.8577, 4.6683, 1.8577, 4.6691, 2.0085, 4.5739, 2.0084], 'confidence': 0.995, 'span': {'offset': 241, 'length': 1}}, {'content': 'で', 'polygon': [4.6903, 1.8578, 4.7855, 1.8579, 4.7863, 2.0087, 4.6911, 2.0085], 'confidence': 0.996, 'span': {'offset': 242, 'length': 1}}, {'content': 'も', 'polygon': [4.8074, 1.8579, 4.9026, 1.858, 4.9034, 2.0089, 4.8082, 2.0088], 'confidence': 0.996, 'span': {'offset': 243, 'length': 1}}, {'content': 'な', 'polygon': [4.9246, 1.858, 5.0002, 1.8581, 5.001, 2.0091, 4.9254, 2.009], 'confidence': 0.995, 'span': {'offset': 244, 'length': 1}}, {'content': 'く', 'polygon': [5.0027, 1.8581, 5.0588, 1.8582, 5.0596, 2.0092, 5.0035, 2.0091], 'confidence': 0.995, 'span': {'offset': 245, 'length': 1}}, {'content': '、', 'polygon': [5.0613, 1.8582, 5.1564, 1.8583, 5.1572, 2.0094, 5.0621, 2.0092], 'confidence': 0.995, 'span': {'offset': 246, 'length': 1}}, {'content': 'ど', 'polygon': [5.1589, 1.8583, 5.2541, 1.8584, 5.2549, 2.0096, 5.1597, 2.0094], 'confidence': 0.994, 'span': {'offset': 247, 'length': 1}}, {'content': 'こ', 'polygon': [5.2565, 1.8584, 5.3517, 1.8588, 5.3525, 2.0097, 5.2573, 2.0096], 'confidence': 0.996, 'span': {'offset': 248, 'length': 1}}, {'content': 'か', 'polygon': [5.3541, 1.8588, 5.4493, 1.8591, 5.4502, 2.0098, 5.355, 2.0097], 'confidence': 0.996, 'span': {'offset': 249, 'length': 1}}, {'content': '神', 'polygon': [5.4713, 1.8592, 5.5664, 1.8596, 5.5674, 2.01, 5.4722, 2.0099], 'confidence': 0.996, 'span': {'offset': 250, 'length': 1}}, {'content': '秘', 'polygon': [5.6079, 1.8598, 5.7031, 1.8601, 5.7041, 2.0101, 5.6089, 2.0101], 'confidence': 0.991, 'span': {'offset': 251, 'length': 1}}, {'content': '的', 'polygon': [5.7251, 1.8602, 5.8203, 1.8606, 5.8213, 2.0101, 5.7261, 2.0101], 'confidence': 0.995, 'span': {'offset': 252, 'length': 1}}, {'content': 'な', 'polygon': [5.8813, 1.8608, 5.9765, 1.8611, 5.9776, 2.0101, 5.8824, 2.0101], 'confidence': 0.995, 'span': {'offset': 253, 'length': 1}}, {'content': '響', 'polygon': [5.9984, 1.8611, 6.0936, 1.8611, 6.0947, 2.0101, 5.9995, 2.0101], 'confidence': 0.993, 'span': {'offset': 254, 'length': 1}}, {'content': 'き', 'polygon': [6.1156, 1.8611, 6.2108, 1.861, 6.2118, 2.01, 6.1167, 2.0101], 'confidence': 0.991, 'span': {'offset': 255, 'length': 1}}, {'content': 'を', 'polygon': [6.2132, 1.861, 6.3084, 1.861, 6.3094, 2.0097, 6.2143, 2.0099], 'confidence': 0.995, 'span': {'offset': 256, 'length': 1}}, {'content': '持', 'polygon': [6.3303, 1.8609, 6.4255, 1.8609, 6.4266, 2.0094, 6.3314, 2.0097], 'confidence': 0.996, 'span': {'offset': 257, 'length': 1}}, {'content': 'っ', 'polygon': [6.428, 1.8609, 6.5231, 1.8608, 6.5242, 2.0092, 6.429, 2.0094], 'confidence': 0.996, 'span': {'offset': 258, 'length': 1}}, {'content': 'て', 'polygon': [6.5256, 1.8608, 6.6208, 1.8608, 6.6218, 2.0089, 6.5266, 2.0092], 'confidence': 0.996, 'span': {'offset': 259, 'length': 1}}, {'content': 'い', 'polygon': [6.6232, 1.8608, 6.7184, 1.8609, 6.7193, 2.009, 6.6242, 2.0089], 'confidence': 0.995, 'span': {'offset': 260, 'length': 1}}, {'content': 'ま', 'polygon': [6.7599, 1.8609, 6.816, 1.8609, 6.8169, 2.0091, 6.7608, 2.009], 'confidence': 0.996, 'span': {'offset': 261, 'length': 1}}, {'content': 'し', 'polygon': [6.8185, 1.8609, 6.9136, 1.861, 6.9144, 2.0092, 6.8193, 2.0091], 'confidence': 0.995, 'span': {'offset': 262, 'length': 1}}, {'content': 'た', 'polygon': [6.9356, 1.8611, 7.0308, 1.8611, 7.0314, 2.0093, 6.9363, 2.0092], 'confidence': 0.996, 'span': {'offset': 263, 'length': 1}}, {'content': '。', 'polygon': [7.0332, 1.8611, 7.1284, 1.8612, 7.129, 2.0095, 7.0339, 2.0093], 'confidence': 0.995, 'span': {'offset': 264, 'length': 1}}, {'content': '好', 'polygon': [7.1504, 1.8613, 7.2455, 1.8613, 7.246, 2.0096, 7.1509, 2.0095], 'confidence': 0.995, 'span': {'offset': 265, 'length': 1}}, {'content': '奇', 'polygon': [7.287, 1.8614, 7.3822, 1.8612, 7.3826, 2.0095, 7.2875, 2.0096], 'confidence': 0.996, 'span': {'offset': 266, 'length': 1}}, {'content': '心', 'polygon': [7.3847, 1.8612, 7.4994, 1.8607, 7.4997, 2.0091, 7.3851, 2.0095], 'confidence': 0.995, 'span': {'offset': 267, 'length': 1}}, {'content': 'に', 'polygon': [7.5213, 1.8606, 7.636, 1.8602, 7.6363, 2.0087, 7.5216, 2.0091], 'confidence': 0.994, 'span': {'offset': 268, 'length': 1}}, {'content': '駆', 'polygon': [7.658, 1.8601, 7.7532, 1.8598, 7.7534, 2.0083, 7.6582, 2.0086], 'confidence': 0.994, 'span': {'offset': 269, 'length': 1}}, {'content': 'ら', 'polygon': [7.7751, 1.8597, 7.8703, 1.8593, 7.8704, 2.008, 7.7753, 2.0083], 'confidence': 0.996, 'span': {'offset': 270, 'length': 1}}, {'content': 'れ', 'polygon': [7.8728, 1.8593, 7.9679, 1.859, 7.968, 2.0077, 7.8729, 2.008], 'confidence': 0.996, 'span': {'offset': 271, 'length': 1}}, {'content': 'た', 'polygon': [7.9899, 1.8589, 8.0851, 1.8587, 8.0852, 2.0076, 7.99, 2.0076], 'confidence': 0.996, 'span': {'offset': 272, 'length': 1}}, {'content': 'ミ', 'polygon': [8.0875, 1.8587, 8.1632, 1.8587, 8.1634, 2.0077, 8.0876, 2.0076], 'confidence': 0.995, 'span': {'offset': 273, 'length': 1}}, {'content': 'ナ', 'polygon': [8.1656, 1.8587, 8.2608, 1.8586, 8.2611, 2.0079, 8.1658, 2.0077], 'confidence': 0.994, 'span': {'offset': 274, 'length': 1}}, {'content': 'は', 'polygon': [8.2633, 1.8586, 8.3584, 1.8586, 8.3588, 2.008, 8.2635, 2.0079], 'confidence': 0.995, 'span': {'offset': 275, 'length': 1}}, {'content': '、', 'polygon': [8.3804, 1.8585, 8.4756, 1.8585, 8.476, 2.0081, 8.3807, 2.008], 'confidence': 0.995, 'span': {'offset': 276, 'length': 1}}, {'content': 'そ', 'polygon': [8.4976, 1.8585, 8.5732, 1.8584, 8.5737, 2.0083, 8.498, 2.0082], 'confidence': 0.996, 'span': {'offset': 277, 'length': 1}}, {'content': 'の', 'polygon': [8.5757, 1.8584, 8.6708, 1.8583, 8.6714, 2.0084, 8.5762, 2.0083], 'confidence': 0.995, 'span': {'offset': 278, 'length': 1}}, {'content': '声', 'polygon': [8.7123, 1.8584, 8.8075, 1.859, 8.8081, 2.0087, 8.7129, 2.0084], 'confidence': 0.996, 'span': {'offset': 279, 'length': 1}}, {'content': 'の', 'polygon': [8.8099, 1.859, 8.9051, 1.8595, 8.9057, 2.0089, 8.8105, 2.0087], 'confidence': 0.996, 'span': {'offset': 280, 'length': 1}}, {'content': '正', 'polygon': [8.9466, 1.8597, 9.0418, 1.8603, 9.0424, 2.0092, 8.9472, 2.009], 'confidence': 0.995, 'span': {'offset': 281, 'length': 1}}, {'content': '体', 'polygon': [9.0833, 1.8605, 9.1785, 1.861, 9.179, 2.0095, 9.0838, 2.0093], 'confidence': 0.995, 'span': {'offset': 282, 'length': 1}}, {'content': 'を', 'polygon': [9.2199, 1.8613, 9.3151, 1.8618, 9.3157, 2.0098, 9.2205, 2.0096], 'confidence': 0.996, 'span': {'offset': 283, 'length': 1}}, {'content': '探', 'polygon': [9.3176, 1.8618, 9.4323, 1.8621, 9.4328, 2.01, 9.3181, 2.0098], 'confidence': 0.994, 'span': {'offset': 284, 'length': 1}}, {'content': 'ろ', 'polygon': [9.4542, 1.862, 9.5299, 1.8618, 9.5303, 2.0099, 9.4547, 2.01], 'confidence': 0.996, 'span': {'offset': 285, 'length': 1}}, {'content': 'う', 'polygon': [9.5323, 1.8618, 9.6275, 1.8616, 9.6278, 2.0099, 9.5327, 2.0099], 'confidence': 0.996, 'span': {'offset': 286, 'length': 1}}, {'content': 'と', 'polygon': [9.63, 1.8616, 9.7251, 1.8614, 9.7254, 2.0098, 9.6303, 2.0099], 'confidence': 0.966, 'span': {'offset': 287, 'length': 1}}, {'content': '決', 'polygon': [9.7276, 1.8614, 9.8228, 1.8612, 9.8229, 2.0098, 9.7278, 2.0098], 'confidence': 0.996, 'span': {'offset': 288, 'length': 1}}, {'content': '心', 'polygon': [9.8252, 1.8612, 9.9399, 1.861, 9.9399, 2.0097, 9.8253, 2.0098], 'confidence': 0.996, 'span': {'offset': 289, 'length': 1}}, {'content': 'し', 'polygon': [9.9619, 1.8609, 10.0771, 1.8607, 10.0771, 2.0097, 9.9619, 2.0097], 'confidence': 0.996, 'span': {'offset': 290, 'length': 1}}, {'content': 'ま', 'polygon': [0.453, 2.0299, 0.5415, 2.0304, 0.5411, 2.1611, 0.4528, 2.1609], 'confidence': 0.996, 'span': {'offset': 292, 'length': 1}}, {'content': 'し', 'polygon': [0.5436, 2.0304, 0.6278, 2.0306, 0.6273, 2.1625, 0.5433, 2.1611], 'confidence': 0.996, 'span': {'offset': 293, 'length': 1}}, {'content': 'た', 'polygon': [0.6472, 2.031, 0.7313, 2.0311, 0.7309, 2.1632, 0.6467, 2.1629], 'confidence': 0.996, 'span': {'offset': 294, 'length': 1}}, {'content': '。', 'polygon': [0.7508, 2.0307, 0.8167, 2.0302, 0.8167, 2.1635, 0.7503, 2.1632], 'confidence': 0.996, 'span': {'offset': 295, 'length': 1}}, {'content': '村', 'polygon': [0.4495, 2.1896, 0.5479, 2.1899, 0.5476, 2.3368, 0.4491, 2.3368], 'confidence': 0.996, 'span': {'offset': 298, 'length': 1}}, {'content': 'の', 'polygon': [0.5695, 2.1899, 0.6631, 2.1902, 0.6629, 2.3368, 0.5692, 2.3368], 'confidence': 0.996, 'span': {'offset': 299, 'length': 1}}, {'content': '人', 'polygon': [0.7232, 2.1904, 0.8168, 2.1907, 0.8166, 2.3367, 0.7229, 2.3368], 'confidence': 0.996, 'span': {'offset': 300, 'length': 1}}, {'content': '々', 'polygon': [0.8576, 2.1908, 0.9512, 2.1911, 0.951, 2.3364, 0.8574, 2.3366], 'confidence': 0.996, 'span': {'offset': 301, 'length': 1}}, {'content': 'は', 'polygon': [0.9728, 2.1912, 1.0664, 2.1915, 1.0663, 2.3361, 0.9726, 2.3363], 'confidence': 0.995, 'span': {'offset': 302, 'length': 1}}, {'content': '、', 'polygon': [1.088, 2.1916, 1.1673, 2.1914, 1.1671, 2.3358, 1.0879, 2.336], 'confidence': 0.995, 'span': {'offset': 303, 'length': 1}}, {'content': 'ミ', 'polygon': [1.2873, 2.1908, 1.3545, 2.1905, 1.3544, 2.3354, 1.2872, 2.3356], 'confidence': 0.996, 'span': {'offset': 304, 'length': 1}}, {'content': 'ナ', 'polygon': [1.3761, 2.1904, 1.4697, 2.19, 1.4696, 2.3352, 1.376, 2.3354], 'confidence': 0.996, 'span': {'offset': 305, 'length': 1}}, {'content': 'が', 'polygon': [1.5105, 2.1898, 1.6041, 2.1894, 1.604, 2.3349, 1.5104, 2.3351], 'confidence': 0.996, 'span': {'offset': 306, 'length': 1}}, {'content': '海', 'polygon': [1.6642, 2.1891, 1.7578, 2.1887, 1.7577, 2.3345, 1.6641, 2.3347], 'confidence': 0.996, 'span': {'offset': 307, 'length': 1}}, {'content': 'の', 'polygon': [1.7794, 2.1886, 1.873, 2.1883, 1.873, 2.3344, 1.7793, 2.3345], 'confidence': 0.996, 'span': {'offset': 308, 'length': 1}}, {'content': '声', 'polygon': [1.933, 2.1881, 2.0266, 2.1879, 2.0267, 2.3343, 1.933, 2.3344], 'confidence': 0.996, 'span': {'offset': 309, 'length': 1}}, {'content': 'を', 'polygon': [2.0674, 2.1877, 2.1611, 2.1875, 2.1613, 2.3343, 2.0676, 2.3343], 'confidence': 0.996, 'span': {'offset': 310, 'length': 1}}, {'content': '聞', 'polygon': [2.2019, 2.1873, 2.2955, 2.1871, 2.2958, 2.3342, 2.2021, 2.3342], 'confidence': 0.987, 'span': {'offset': 311, 'length': 1}}, {'content': 'け', 'polygon': [2.3171, 2.187, 2.4515, 2.1866, 2.452, 2.3341, 2.3174, 2.3342], 'confidence': 0.996, 'span': {'offset': 312, 'length': 1}}, {'content': 'る', 'polygon': [2.4803, 2.1865, 2.5739, 2.186, 2.5744, 2.3337, 2.4808, 2.3341], 'confidence': 0.996, 'span': {'offset': 313, 'length': 1}}, {'content': 'と', 'polygon': [2.622, 2.1858, 2.7012, 2.1854, 2.7016, 2.3333, 2.6224, 2.3336], 'confidence': 0.996, 'span': {'offset': 314, 'length': 1}}, {'content': '知', 'polygon': [2.7324, 2.1853, 2.8332, 2.1848, 2.8336, 2.3329, 2.7328, 2.3332], 'confidence': 0.996, 'span': {'offset': 315, 'length': 1}}, {'content': 'っ', 'polygon': [2.8548, 2.1847, 2.9484, 2.1842, 2.9489, 2.3325, 2.8552, 2.3328], 'confidence': 0.995, 'span': {'offset': 316, 'length': 1}}, {'content': 'て', 'polygon': [2.9892, 2.184, 3.1021, 2.1835, 3.1025, 2.332, 2.9897, 2.3323], 'confidence': 0.993, 'span': {'offset': 317, 'length': 1}}, {'content': '驚', 'polygon': [3.1429, 2.1833, 3.2365, 2.1839, 3.237, 2.3324, 3.1433, 2.3319], 'confidence': 0.996, 'span': {'offset': 318, 'length': 1}}, {'content': 'き', 'polygon': [3.2773, 2.1841, 3.3757, 2.1847, 3.3764, 2.3333, 3.2779, 2.3327], 'confidence': 0.996, 'span': {'offset': 319, 'length': 1}}, {'content': 'ま', 'polygon': [3.4117, 2.1849, 3.5053, 2.1855, 3.5061, 2.334, 3.4124, 2.3335], 'confidence': 0.996, 'span': {'offset': 320, 'length': 1}}, {'content': 'し', 'polygon': [3.5269, 2.1856, 3.6206, 2.1862, 3.6214, 2.3347, 3.5277, 2.3342], 'confidence': 0.996, 'span': {'offset': 321, 'length': 1}}, {'content': 'た', 'polygon': [3.6614, 2.1864, 3.755, 2.187, 3.7559, 2.3355, 3.6622, 2.335], 'confidence': 0.996, 'span': {'offset': 322, 'length': 1}}, {'content': '。', 'polygon': [3.7766, 2.1871, 3.839, 2.1873, 3.8399, 2.3357, 3.7775, 2.3357], 'confidence': 0.995, 'span': {'offset': 323, 'length': 1}}, {'content': '多', 'polygon': [3.9422, 2.1873, 4.043, 2.1873, 4.0438, 2.3353, 3.9431, 2.3355], 'confidence': 0.996, 'span': {'offset': 324, 'length': 1}}, {'content': 'く', 'polygon': [4.0647, 2.1873, 4.1583, 2.1873, 4.159, 2.3351, 4.0654, 2.3353], 'confidence': 0.996, 'span': {'offset': 325, 'length': 1}}, {'content': 'の', 'polygon': [4.1799, 2.1873, 4.2735, 2.1874, 4.2741, 2.3348, 4.1806, 2.335], 'confidence': 0.994, 'span': {'offset': 326, 'length': 1}}, {'content': '人', 'polygon': [4.3335, 2.1874, 4.4271, 2.1874, 4.4276, 2.3345, 4.3341, 2.3347], 'confidence': 0.996, 'span': {'offset': 327, 'length': 1}}, {'content': 'は', 'polygon': [4.4487, 2.1874, 4.5424, 2.1872, 4.5428, 2.3343, 4.4492, 2.3345], 'confidence': 0.995, 'span': {'offset': 328, 'length': 1}}, {'content': '信', 'polygon': [4.6024, 2.1871, 4.696, 2.1869, 4.6964, 2.3341, 4.6028, 2.3342], 'confidence': 0.996, 'span': {'offset': 329, 'length': 1}}, {'content': 'じ', 'polygon': [4.7368, 2.1867, 4.8304, 2.1865, 4.8308, 2.3338, 4.7372, 2.334], 'confidence': 0.996, 'span': {'offset': 330, 'length': 1}}, {'content': 'ら', 'polygon': [4.8712, 2.1864, 4.9648, 2.1862, 4.9652, 2.3336, 4.8716, 2.3338], 'confidence': 0.996, 'span': {'offset': 331, 'length': 1}}, {'content': 'れ', 'polygon': [5.0057, 2.1861, 5.0993, 2.1858, 5.0995, 2.3334, 5.0059, 2.3335], 'confidence': 0.996, 'span': {'offset': 332, 'length': 1}}, {'content': 'な', 'polygon': [5.1401, 2.1857, 5.2337, 2.1859, 5.2341, 2.3333, 5.1403, 2.3333], 'confidence': 0.996, 'span': {'offset': 333, 'length': 1}}, {'content': 'い', 'polygon': [5.2553, 2.186, 5.3489, 2.1863, 5.3494, 2.3335, 5.2557, 2.3334], 'confidence': 0.996, 'span': {'offset': 334, 'length': 1}}, {'content': 'と', 'polygon': [5.4089, 2.1865, 5.5026, 2.1868, 5.5033, 2.3337, 5.4095, 2.3336], 'confidence': 0.996, 'span': {'offset': 335, 'length': 1}}, {'content': 'い', 'polygon': [5.5242, 2.1869, 5.6178, 2.1872, 5.6186, 2.3339, 5.5249, 2.3338], 'confidence': 0.996, 'span': {'offset': 336, 'length': 1}}, {'content': 'う', 'polygon': [5.6778, 2.1874, 5.7714, 2.1877, 5.7725, 2.3341, 5.6787, 2.334], 'confidence': 0.996, 'span': {'offset': 337, 'length': 1}}, {'content': '顔', 'polygon': [5.805, 2.1878, 5.9058, 2.1878, 5.9069, 2.334, 5.8061, 2.3342], 'confidence': 0.991, 'span': {'offset': 338, 'length': 1}}, {'content': 'を', 'polygon': [5.9467, 2.1877, 6.0403, 2.1875, 6.0413, 2.3335, 5.9477, 2.3338], 'confidence': 0.996, 'span': {'offset': 339, 'length': 1}}, {'content': 'し', 'polygon': [6.0619, 2.1875, 6.1747, 2.1873, 6.1758, 2.3331, 6.0629, 2.3335], 'confidence': 0.996, 'span': {'offset': 340, 'length': 1}}, {'content': 'ま', 'polygon': [6.2155, 2.1872, 6.3091, 2.187, 6.3102, 2.3327, 6.2166, 2.333], 'confidence': 0.996, 'span': {'offset': 341, 'length': 1}}, {'content': 'し', 'polygon': [6.3307, 2.187, 6.4436, 2.1868, 6.4446, 2.3323, 6.3318, 2.3327], 'confidence': 0.993, 'span': {'offset': 342, 'length': 1}}, {'content': 'た', 'polygon': [6.4652, 2.1867, 6.578, 2.1868, 6.579, 2.3321, 6.4662, 2.3323], 'confidence': 0.994, 'span': {'offset': 343, 'length': 1}}, {'content': 'が', 'polygon': [6.5996, 2.1868, 6.7124, 2.1869, 6.7134, 2.332, 6.6006, 2.3321], 'confidence': 0.986, 'span': {'offset': 344, 'length': 1}}, {'content': '、', 'polygon': [6.7148, 2.1869, 6.7868, 2.187, 6.7877, 2.3319, 6.7158, 2.332], 'confidence': 0.995, 'span': {'offset': 345, 'length': 1}}, {'content': '年', 'polygon': [6.8781, 2.1871, 6.9813, 2.1872, 6.9821, 2.3318, 6.8789, 2.3319], 'confidence': 0.996, 'span': {'offset': 346, 'length': 1}}, {'content': '老', 'polygon': [7.0221, 2.1872, 7.1157, 2.1873, 7.1165, 2.3317, 7.0229, 2.3318], 'confidence': 0.996, 'span': {'offset': 347, 'length': 1}}, {'content': 'い', 'polygon': [7.1373, 2.1873, 7.2309, 2.1872, 7.2316, 2.3316, 7.1381, 2.3317], 'confidence': 0.996, 'span': {'offset': 348, 'length': 1}}, {'content': 'た', 'polygon': [7.2717, 2.187, 7.3654, 2.1868, 7.3658, 2.3313, 7.2724, 2.3315], 'confidence': 0.995, 'span': {'offset': 349, 'length': 1}}, {'content': '漁', 'polygon': [7.4254, 2.1866, 7.519, 2.1864, 7.5192, 2.3309, 7.4258, 2.3311], 'confidence': 0.995, 'span': {'offset': 350, 'length': 1}}, {'content': '師', 'polygon': [7.5406, 2.1863, 7.6534, 2.186, 7.6535, 2.3307, 7.5408, 2.3309], 'confidence': 0.973, 'span': {'offset': 351, 'length': 1}}, {'content': 'の', 'polygon': [7.675, 2.186, 7.8023, 2.1856, 7.8021, 2.3303, 7.675, 2.3306], 'confidence': 0.996, 'span': {'offset': 352, 'length': 1}}, {'content': 'タ', 'polygon': [7.8311, 2.1855, 7.9223, 2.1856, 7.9221, 2.3306, 7.8308, 2.3303], 'confidence': 0.995, 'span': {'offset': 353, 'length': 1}}, {'content': 'ロ', 'polygon': [7.9439, 2.1856, 8.0543, 2.1857, 8.0542, 2.3311, 7.9437, 2.3307], 'confidence': 0.996, 'span': {'offset': 354, 'length': 1}}, {'content': 'ウ', 'polygon': [8.1047, 2.1857, 8.1719, 2.1858, 8.1719, 2.3315, 8.1047, 2.3312], 'confidence': 0.995, 'span': {'offset': 355, 'length': 1}}, {'content': 'じ', 'polygon': [8.2127, 2.1858, 8.3064, 2.1859, 8.3065, 2.332, 8.2128, 2.3316], 'confidence': 0.995, 'span': {'offset': 356, 'length': 1}}, {'content': 'い', 'polygon': [8.328, 2.1859, 8.472, 2.186, 8.4722, 2.3326, 8.3281, 2.3321], 'confidence': 0.995, 'span': {'offset': 357, 'length': 1}}, {'content': 'さ', 'polygon': [8.5056, 2.186, 8.5944, 2.1866, 8.5947, 2.3331, 8.5059, 2.3327], 'confidence': 0.996, 'span': {'offset': 358, 'length': 1}}, {'content': 'ん', 'polygon': [8.5968, 2.1866, 8.7096, 2.1874, 8.71, 2.3337, 8.5971, 2.3331], 'confidence': 0.994, 'span': {'offset': 359, 'length': 1}}, {'content': 'だ', 'polygon': [8.7505, 2.1877, 8.8441, 2.1883, 8.8445, 2.3344, 8.7508, 2.3339], 'confidence': 0.996, 'span': {'offset': 360, 'length': 1}}, {'content': 'け', 'polygon': [8.8657, 2.1885, 8.9593, 2.1891, 8.9597, 2.335, 8.8661, 2.3346], 'confidence': 0.996, 'span': {'offset': 361, 'length': 1}}, {'content': 'は', 'polygon': [9.0001, 2.1894, 9.0937, 2.1901, 9.0942, 2.3358, 9.0006, 2.3353], 'confidence': 0.995, 'span': {'offset': 362, 'length': 1}}, {'content': '違', 'polygon': [9.1729, 2.1906, 9.2666, 2.1908, 9.267, 2.3365, 9.1734, 2.3362], 'confidence': 0.995, 'span': {'offset': 363, 'length': 1}}, {'content': 'い', 'polygon': [9.269, 2.1908, 9.3626, 2.191, 9.3629, 2.3367, 9.2694, 2.3365], 'confidence': 0.996, 'span': {'offset': 364, 'length': 1}}, {'content': 'ま', 'polygon': [9.4226, 2.191, 9.5162, 2.1912, 9.5164, 2.3368, 9.4228, 2.3368], 'confidence': 0.996, 'span': {'offset': 365, 'length': 1}}, {'content': 'し', 'polygon': [9.5378, 2.1912, 9.6506, 2.1913, 9.6506, 2.3368, 9.5379, 2.3368], 'confidence': 0.996, 'span': {'offset': 366, 'length': 1}}, {'content': 'た', 'polygon': [9.6914, 2.1914, 9.7851, 2.1915, 9.7849, 2.3368, 9.6914, 2.3368], 'confidence': 0.996, 'span': {'offset': 367, 'length': 1}}, {'content': '。', 'polygon': [9.7875, 2.1915, 9.8738, 2.1916, 9.8738, 2.3368, 9.7873, 2.3368], 'confidence': 0.995, 'span': {'offset': 368, 'length': 1}}, {'content': '「', 'polygon': [0.5237, 2.3461, 0.6041, 2.3465, 0.6035, 2.495, 0.523, 2.4948], 'confidence': 0.996, 'span': {'offset': 370, 'length': 1}}, {'content': '昔', 'polygon': [0.6066, 2.3466, 0.7015, 2.3471, 0.701, 2.4953, 0.6059, 2.495], 'confidence': 0.996, 'span': {'offset': 371, 'length': 1}}, {'content': 'か', 'polygon': [0.7235, 2.3472, 0.8185, 2.3477, 0.818, 2.4956, 0.7229, 2.4953], 'confidence': 0.996, 'span': {'offset': 372, 'length': 1}}, {'content': 'ら', 'polygon': [0.8599, 2.3479, 0.9549, 2.3484, 0.9546, 2.4959, 0.8595, 2.4957], 'confidence': 0.996, 'span': {'offset': 373, 'length': 1}}, {'content': '伝', 'polygon': [0.9963, 2.3486, 1.0913, 2.3491, 1.0911, 2.4963, 0.996, 2.4961], 'confidence': 0.996, 'span': {'offset': 374, 'length': 1}}, {'content': 'わ', 'polygon': [1.1327, 2.3493, 1.2496, 2.3496, 1.2495, 2.4967, 1.1325, 2.4964], 'confidence': 0.992, 'span': {'offset': 375, 'length': 1}}, {'content': 'る', 'polygon': [1.2788, 2.3495, 1.3641, 2.3494, 1.364, 2.4969, 1.2788, 2.4968], 'confidence': 0.996, 'span': {'offset': 376, 'length': 1}}, {'content': '言', 'polygon': [1.386, 2.3493, 1.5005, 2.3491, 1.5004, 2.4971, 1.386, 2.4969], 'confidence': 0.994, 'span': {'offset': 377, 'length': 1}}, {'content': 'い', 'polygon': [1.5029, 2.3491, 1.5979, 2.349, 1.5979, 2.4973, 1.5029, 2.4971], 'confidence': 0.996, 'span': {'offset': 378, 'length': 1}}, {'content': '伝', 'polygon': [1.6588, 2.3489, 1.7733, 2.3487, 1.7733, 2.4975, 1.6588, 2.4973], 'confidence': 0.995, 'span': {'offset': 379, 'length': 1}}, {'content': 'え', 'polygon': [1.7952, 2.3486, 1.8902, 2.3485, 1.8902, 2.4977, 1.7952, 2.4976], 'confidence': 0.996, 'span': {'offset': 380, 'length': 1}}, {'content': 'が', 'polygon': [1.9316, 2.3486, 2.0486, 2.349, 2.0484, 2.4978, 1.9316, 2.4977], 'confidence': 0.996, 'span': {'offset': 381, 'length': 1}}, {'content': 'あ', 'polygon': [2.0778, 2.3491, 2.185, 2.3494, 2.1848, 2.4978, 2.0777, 2.4978], 'confidence': 0.996, 'span': {'offset': 382, 'length': 1}}, {'content': 'る', 'polygon': [2.2142, 2.3495, 2.3068, 2.3497, 2.3065, 2.4979, 2.214, 2.4979], 'confidence': 0.996, 'span': {'offset': 383, 'length': 1}}, {'content': 'ん', 'polygon': [2.3384, 2.3498, 2.4164, 2.3501, 2.4161, 2.498, 2.3382, 2.4979], 'confidence': 0.996, 'span': {'offset': 384, 'length': 1}}, {'content': 'じ', 'polygon': [2.4578, 2.3502, 2.5528, 2.3505, 2.5524, 2.4981, 2.4574, 2.498], 'confidence': 0.996, 'span': {'offset': 385, 'length': 1}}, {'content': 'ゃ', 'polygon': [2.6137, 2.3503, 2.7087, 2.3499, 2.7084, 2.4977, 2.6134, 2.4979], 'confidence': 0.986, 'span': {'offset': 386, 'length': 1}}, {'content': '」', 'polygon': [2.7111, 2.3499, 2.772, 2.3496, 2.7718, 2.4975, 2.7109, 2.4977], 'confidence': 0.994, 'span': {'offset': 387, 'length': 1}}, {'content': 'と', 'polygon': [2.8889, 2.3492, 2.9693, 2.3489, 2.9694, 2.4969, 2.8889, 2.4972], 'confidence': 0.996, 'span': {'offset': 388, 'length': 1}}, {'content': 'タ', 'polygon': [3.0131, 2.3487, 3.1081, 2.3483, 3.1083, 2.4966, 3.0132, 2.4968], 'confidence': 0.995, 'span': {'offset': 389, 'length': 1}}, {'content': 'ロ', 'polygon': [3.152, 2.3482, 3.2372, 2.3479, 3.2376, 2.4962, 3.1522, 2.4964], 'confidence': 0.996, 'span': {'offset': 390, 'length': 1}}, {'content': 'ウ', 'polygon': [3.2884, 2.3479, 3.3712, 2.348, 3.3716, 2.4965, 3.2887, 2.4963], 'confidence': 0.995, 'span': {'offset': 391, 'length': 1}}, {'content': 'じ', 'polygon': [3.3931, 2.3481, 3.4881, 2.3482, 3.4885, 2.4967, 3.3935, 2.4965], 'confidence': 0.995, 'span': {'offset': 392, 'length': 1}}, {'content': 'い', 'polygon': [3.5101, 2.3482, 3.5904, 2.3483, 3.5908, 2.4969, 3.5104, 2.4967], 'confidence': 0.995, 'span': {'offset': 393, 'length': 1}}, {'content': 'さ', 'polygon': [3.6197, 2.3484, 3.7804, 2.3486, 3.7809, 2.4973, 3.6201, 2.497], 'confidence': 0.994, 'span': {'offset': 394, 'length': 1}}, {'content': 'ん', 'polygon': [3.7829, 2.3486, 3.8974, 2.3487, 3.8978, 2.4975, 3.7833, 2.4973], 'confidence': 0.995, 'span': {'offset': 395, 'length': 1}}, {'content': 'は', 'polygon': [3.9193, 2.3487, 4.0143, 2.3487, 4.0147, 2.4974, 3.9197, 2.4975], 'confidence': 0.995, 'span': {'offset': 396, 'length': 1}}, {'content': '話', 'polygon': [4.0752, 2.3487, 4.1702, 2.3487, 4.1706, 2.4972, 4.0756, 2.4973], 'confidence': 0.996, 'span': {'offset': 397, 'length': 1}}, {'content': 'し', 'polygon': [4.1921, 2.3487, 4.3066, 2.3487, 4.307, 2.497, 4.1925, 2.4972], 'confidence': 0.992, 'span': {'offset': 398, 'length': 1}}, {'content': '始', 'polygon': [4.348, 2.3487, 4.443, 2.3487, 4.4434, 2.4969, 4.3484, 2.497], 'confidence': 0.995, 'span': {'offset': 399, 'length': 1}}, {'content': 'め', 'polygon': [4.4844, 2.3487, 4.5794, 2.3487, 4.5798, 2.4967, 4.4848, 2.4968], 'confidence': 0.996, 'span': {'offset': 400, 'length': 1}}, {'content': 'ま', 'polygon': [4.6208, 2.3486, 4.7158, 2.3484, 4.7163, 2.4969, 4.6212, 2.4968], 'confidence': 0.996, 'span': {'offset': 401, 'length': 1}}, {'content': 'し', 'polygon': [4.7377, 2.3483, 4.8327, 2.3481, 4.8332, 2.497, 4.7382, 2.4969], 'confidence': 0.996, 'span': {'offset': 402, 'length': 1}}, {'content': 'た', 'polygon': [4.8741, 2.348, 4.9691, 2.3478, 4.9697, 2.4972, 4.8747, 2.4971], 'confidence': 0.996, 'span': {'offset': 403, 'length': 1}}, {'content': '。', 'polygon': [4.9716, 2.3478, 5.0446, 2.3476, 5.0452, 2.4973, 4.9721, 2.4972], 'confidence': 0.995, 'span': {'offset': 404, 'length': 1}}, {'content': '「', 'polygon': [5.2249, 2.3472, 5.2809, 2.3471, 5.2816, 2.4976, 5.2256, 2.4976], 'confidence': 0.99, 'span': {'offset': 405, 'length': 1}}, {'content': '海', 'polygon': [5.2833, 2.3471, 5.3783, 2.3475, 5.3791, 2.4977, 5.2841, 2.4976], 'confidence': 0.996, 'span': {'offset': 406, 'length': 1}}, {'content': 'の', 'polygon': [5.4003, 2.3476, 5.4953, 2.3479, 5.4962, 2.4978, 5.4011, 2.4977], 'confidence': 0.996, 'span': {'offset': 407, 'length': 1}}, {'content': '底', 'polygon': [5.5367, 2.348, 5.6512, 2.3485, 5.6522, 2.498, 5.5376, 2.4979], 'confidence': 0.995, 'span': {'offset': 408, 'length': 1}}, {'content': 'に', 'polygon': [5.6536, 2.3485, 5.7486, 2.3488, 5.7497, 2.4981, 5.6546, 2.498], 'confidence': 0.995, 'span': {'offset': 409, 'length': 1}}, {'content': 'は', 'polygon': [5.79, 2.349, 5.885, 2.3493, 5.8862, 2.4982, 5.7911, 2.4981], 'confidence': 0.994, 'span': {'offset': 410, 'length': 1}}, {'content': '古', 'polygon': [5.9459, 2.3495, 6.0409, 2.3495, 6.0421, 2.4983, 5.9471, 2.4983], 'confidence': 0.996, 'span': {'offset': 411, 'length': 1}}, {'content': '代', 'polygon': [6.0823, 2.3495, 6.1773, 2.3495, 6.1785, 2.4984, 6.0835, 2.4983], 'confidence': 0.996, 'span': {'offset': 412, 'length': 1}}, {'content': 'の', 'polygon': [6.1992, 2.3495, 6.2942, 2.3494, 6.2954, 2.4984, 6.2004, 2.4984], 'confidence': 0.995, 'span': {'offset': 413, 'length': 1}}, {'content': '神', 'polygon': [6.3551, 2.3494, 6.4501, 2.3494, 6.4512, 2.4985, 6.3563, 2.4985], 'confidence': 0.996, 'span': {'offset': 414, 'length': 1}}, {'content': '殿', 'polygon': [6.4915, 2.3494, 6.5865, 2.3493, 6.5876, 2.4985, 6.4926, 2.4985], 'confidence': 0.996, 'span': {'offset': 415, 'length': 1}}, {'content': 'が', 'polygon': [6.6084, 2.3493, 6.7034, 2.3494, 6.7045, 2.4986, 6.6095, 2.4986], 'confidence': 0.996, 'span': {'offset': 416, 'length': 1}}, {'content': 'あ', 'polygon': [6.7643, 2.3495, 6.8593, 2.3496, 6.8602, 2.4986, 6.7653, 2.4986], 'confidence': 0.996, 'span': {'offset': 417, 'length': 1}}, {'content': 'っ', 'polygon': [6.8618, 2.3496, 6.9909, 2.3498, 6.9916, 2.4986, 6.8626, 2.4986], 'confidence': 0.995, 'span': {'offset': 418, 'length': 1}}, {'content': 'て', 'polygon': [7.0201, 2.3498, 7.1127, 2.35, 7.1133, 2.4987, 7.0208, 2.4986], 'confidence': 0.996, 'span': {'offset': 419, 'length': 1}}, {'content': '、', 'polygon': [7.1151, 2.35, 7.1882, 2.3501, 7.1888, 2.4987, 7.1158, 2.4987], 'confidence': 0.996, 'span': {'offset': 420, 'length': 1}}, {'content': 'そ', 'polygon': [7.2856, 2.3502, 7.3855, 2.3498, 7.3859, 2.4984, 7.2861, 2.4987], 'confidence': 0.996, 'span': {'offset': 421, 'length': 1}}, {'content': 'こ', 'polygon': [7.4074, 2.3497, 7.5219, 2.3493, 7.5221, 2.4979, 7.4078, 2.4983], 'confidence': 0.994, 'span': {'offset': 422, 'length': 1}}, {'content': 'に', 'polygon': [7.5243, 2.3493, 7.6193, 2.349, 7.6195, 2.4976, 7.5246, 2.4979], 'confidence': 0.996, 'span': {'offset': 423, 'length': 1}}, {'content': '住', 'polygon': [7.6802, 2.3488, 7.7752, 2.3485, 7.7752, 2.4971, 7.6803, 2.4974], 'confidence': 0.996, 'span': {'offset': 424, 'length': 1}}, {'content': 'む', 'polygon': [7.8166, 2.3483, 7.9116, 2.348, 7.9115, 2.4967, 7.8166, 2.497], 'confidence': 0.99, 'span': {'offset': 425, 'length': 1}}, {'content': '海', 'polygon': [7.953, 2.3479, 8.048, 2.3477, 8.0479, 2.4962, 7.9529, 2.4966], 'confidence': 0.996, 'span': {'offset': 426, 'length': 1}}, {'content': 'の', 'polygon': [8.0699, 2.3476, 8.1649, 2.3475, 8.1648, 2.4959, 8.0698, 2.4962], 'confidence': 0.996, 'span': {'offset': 427, 'length': 1}}, {'content': '精', 'polygon': [8.2258, 2.3474, 8.3208, 2.3472, 8.3208, 2.4953, 8.2257, 2.4957], 'confidence': 0.996, 'span': {'offset': 428, 'length': 1}}, {'content': '霊', 'polygon': [8.3622, 2.3471, 8.4572, 2.3469, 8.4572, 2.4949, 8.3622, 2.4952], 'confidence': 0.994, 'span': {'offset': 429, 'length': 1}}, {'content': 'が', 'polygon': [8.4792, 2.3469, 8.5742, 2.3467, 8.5742, 2.4945, 8.4792, 2.4948], 'confidence': 0.996, 'span': {'offset': 430, 'length': 1}}, {'content': '時', 'polygon': [8.6156, 2.3466, 8.7106, 2.3467, 8.7107, 2.4945, 8.6156, 2.4944], 'confidence': 0.996, 'span': {'offset': 431, 'length': 1}}, {'content': '々', 'polygon': [8.7715, 2.3469, 8.8543, 2.3471, 8.8545, 2.495, 8.7716, 2.4947], 'confidence': 0.995, 'span': {'offset': 432, 'length': 1}}, {'content': '人', 'polygon': [8.8859, 2.3472, 8.9834, 2.3475, 8.9837, 2.4955, 8.8862, 2.4952], 'confidence': 0.995, 'span': {'offset': 433, 'length': 1}}, {'content': '間', 'polygon': [9.0248, 2.3476, 9.1368, 2.3479, 9.1373, 2.4961, 9.0251, 2.4957], 'confidence': 0.996, 'span': {'offset': 434, 'length': 1}}, {'content': 'を', 'polygon': [9.1661, 2.348, 9.2757, 2.3483, 9.2762, 2.4967, 9.1665, 2.4962], 'confidence': 0.996, 'span': {'offset': 435, 'length': 1}}, {'content': '呼', 'polygon': [9.2976, 2.3483, 9.4121, 2.3488, 9.4125, 2.4974, 9.2981, 2.4967], 'confidence': 0.995, 'span': {'offset': 436, 'length': 1}}, {'content': 'ぶ', 'polygon': [9.434, 2.3488, 9.529, 2.3492, 9.5293, 2.4981, 9.4344, 2.4975], 'confidence': 0.995, 'span': {'offset': 437, 'length': 1}}, {'content': 'ん', 'polygon': [9.5509, 2.3493, 9.6459, 2.3497, 9.646, 2.4988, 9.5512, 2.4982], 'confidence': 0.996, 'span': {'offset': 438, 'length': 1}}, {'content': 'だ', 'polygon': [9.6873, 2.3498, 9.7823, 2.3502, 9.7822, 2.4997, 9.6874, 2.4991], 'confidence': 0.996, 'span': {'offset': 439, 'length': 1}}, {'content': 'と', 'polygon': [9.8237, 2.3503, 9.9187, 2.3507, 9.9185, 2.5002, 9.8236, 2.4999], 'confidence': 0.995, 'span': {'offset': 440, 'length': 1}}, {'content': '。', 'polygon': [9.9212, 2.3507, 10.0071, 2.3511, 10.0071, 2.5002, 9.9209, 2.5002], 'confidence': 0.995, 'span': {'offset': 441, 'length': 1}}, {'content': 'で', 'polygon': [0.4592, 2.5076, 0.5587, 2.5088, 0.5588, 2.6617, 0.4591, 2.662], 'confidence': 0.996, 'span': {'offset': 443, 'length': 1}}, {'content': 'も', 'polygon': [0.6, 2.5093, 0.6753, 2.5102, 0.6755, 2.6614, 0.6002, 2.6616], 'confidence': 0.996, 'span': {'offset': 444, 'length': 1}}, {'content': '、', 'polygon': [0.6777, 2.5102, 0.7676, 2.5105, 0.7677, 2.661, 0.678, 2.6614], 'confidence': 0.996, 'span': {'offset': 445, 'length': 1}}, {'content': 'そ', 'polygon': [0.8647, 2.5107, 0.9667, 2.5105, 0.9668, 2.6596, 0.8647, 2.6605], 'confidence': 0.995, 'span': {'offset': 446, 'length': 1}}, {'content': 'の', 'polygon': [0.9691, 2.5104, 1.0832, 2.5099, 1.0837, 2.6583, 0.9692, 2.6596], 'confidence': 0.994, 'span': {'offset': 447, 'length': 1}}, {'content': '声', 'polygon': [1.1245, 2.5097, 1.2192, 2.5093, 1.2198, 2.6577, 1.1252, 2.6578], 'confidence': 0.996, 'span': {'offset': 448, 'length': 1}}, {'content': 'が', 'polygon': [1.2605, 2.5091, 1.3552, 2.5087, 1.3557, 2.6576, 1.2611, 2.6576], 'confidence': 0.996, 'span': {'offset': 449, 'length': 1}}, {'content': '聞', 'polygon': [1.3965, 2.5089, 1.5155, 2.5094, 1.5159, 2.6589, 1.3969, 2.6579], 'confidence': 0.994, 'span': {'offset': 450, 'length': 1}}, {'content': 'こ', 'polygon': [1.547, 2.5095, 1.6369, 2.5097, 1.6374, 2.659, 1.5474, 2.6591], 'confidence': 0.996, 'span': {'offset': 451, 'length': 1}}, {'content': 'え', 'polygon': [1.6782, 2.5098, 1.7826, 2.51, 1.7834, 2.6582, 1.6787, 2.6588], 'confidence': 0.996, 'span': {'offset': 452, 'length': 1}}, {'content': 'る', 'polygon': [1.8141, 2.51, 1.8991, 2.5102, 1.8998, 2.6581, 1.8149, 2.6581], 'confidence': 0.996, 'span': {'offset': 453, 'length': 1}}, {'content': '者', 'polygon': [1.9404, 2.5103, 2.0351, 2.5105, 2.0356, 2.6582, 1.941, 2.6581], 'confidence': 0.996, 'span': {'offset': 454, 'length': 1}}, {'content': 'は', 'polygon': [2.057, 2.5104, 2.1517, 2.5103, 2.1522, 2.6585, 2.0575, 2.6582], 'confidence': 0.996, 'span': {'offset': 455, 'length': 1}}, {'content': 'め', 'polygon': [2.2124, 2.5102, 2.3071, 2.5108, 2.3074, 2.6589, 2.2129, 2.6586], 'confidence': 0.995, 'span': {'offset': 456, 'length': 1}}, {'content': 'っ', 'polygon': [2.3289, 2.5111, 2.4406, 2.5122, 2.4406, 2.6594, 2.3292, 2.659], 'confidence': 0.996, 'span': {'offset': 457, 'length': 1}}, {'content': 'た', 'polygon': [2.4722, 2.5125, 2.5596, 2.5129, 2.5595, 2.6599, 2.4721, 2.6595], 'confidence': 0.996, 'span': {'offset': 458, 'length': 1}}, {'content': 'に', 'polygon': [2.5815, 2.513, 2.6956, 2.5135, 2.6955, 2.6605, 2.5814, 2.66], 'confidence': 0.994, 'span': {'offset': 459, 'length': 1}}, {'content': 'お', 'polygon': [2.7369, 2.5135, 2.8534, 2.5137, 2.8537, 2.66, 2.7369, 2.6603], 'confidence': 0.996, 'span': {'offset': 460, 'length': 1}}, {'content': 'ら', 'polygon': [2.8923, 2.5137, 2.9676, 2.5139, 2.9678, 2.6598, 2.8926, 2.66], 'confidence': 0.996, 'span': {'offset': 461, 'length': 1}}, {'content': 'ん', 'polygon': [2.9894, 2.514, 3.1035, 2.5143, 3.1036, 2.6595, 2.9897, 2.6597], 'confidence': 0.995, 'span': {'offset': 462, 'length': 1}}, {'content': 'の', 'polygon': [3.1254, 2.5144, 3.2517, 2.514, 3.2514, 2.6598, 3.1254, 2.6594], 'confidence': 0.996, 'span': {'offset': 463, 'length': 1}}, {'content': 'じ', 'polygon': [3.2954, 2.5139, 3.3755, 2.5138, 3.375, 2.6603, 3.295, 2.6599], 'confidence': 0.996, 'span': {'offset': 464, 'length': 1}}, {'content': 'ゃ', 'polygon': [3.4168, 2.5147, 3.5115, 2.5168, 3.5109, 2.6622, 3.4163, 2.6609], 'confidence': 0.965, 'span': {'offset': 465, 'length': 1}}, {'content': '」', 'polygon': [3.5333, 2.5173, 3.5902, 2.5187, 3.5902, 2.6635, 3.5327, 2.6625], 'confidence': 0.987, 'span': {'offset': 466, 'length': 1}}, {'content': 'Python', 'polygon': [5.8485, 3.9606, 6.2403, 3.9651, 6.2403, 4.0893, 5.8484, 4.0872], 'confidence': 0.998, 'span': {'offset': 689, 'length': 6}}, {'content': 'Go', 'polygon': [6.6216, 3.9603, 6.777, 3.9627, 6.777, 4.0803, 6.6211, 4.0789], 'confidence': 0.993, 'span': {'offset': 705, 'length': 2}}, {'content': '〇', 'polygon': [6.0034, 4.2592, 6.105, 4.2592, 6.105, 4.3613, 6.0034, 4.3613], 'confidence': 1, 'span': {'offset': 790, 'length': 1}}, {'content': '初', 'polygon': [7.323, 4.2469, 7.4099, 4.2488, 7.4088, 4.3775, 7.3225, 4.3779], 'confidence': 0.996, 'span': {'offset': 816, 'length': 1}}, {'content': '心', 'polygon': [7.446, 4.2491, 7.5287, 4.2499, 7.5276, 4.3787, 7.4451, 4.3778], 'confidence': 0.996, 'span': {'offset': 817, 'length': 1}}, {'content': '者', 'polygon': [7.5817, 4.2497, 7.687, 4.2499, 7.687, 4.3803, 7.5811, 4.3786], 'confidence': 0.996, 'span': {'offset': 818, 'length': 1}}, {'content': '〇', 'polygon': [6.6568, 4.5525, 6.7584, 4.5525, 6.7584, 4.6546, 6.6568, 4.6546], 'confidence': 1, 'span': {'offset': 885, 'length': 1}}, {'content': 'C', 'polygon': [5.29, 4.8355, 5.357, 4.8343, 5.3569, 4.9584, 5.2899, 4.9577], 'confidence': 0.996, 'span': {'offset': 924, 'length': 1}}, {'content': '氏', 'polygon': [5.3753, 4.8349, 5.5003, 4.8343, 5.5003, 4.9588, 5.3751, 4.9583], 'confidence': 0.996, 'span': {'offset': 925, 'length': 1}}, {'content': '〇', 'polygon': [6.6568, 4.8442, 6.7584, 4.8442, 6.7584, 4.9463, 6.6568, 4.9463], 'confidence': 1, 'span': {'offset': 951, 'length': 1}}, {'content': '精', 'polygon': [0.5658, 6.2357, 0.6379, 6.2358, 0.6366, 6.3231, 0.5643, 6.3228], 'confidence': 0.996, 'span': {'offset': 1397, 'length': 1}}, {'content': '霊', 'polygon': [0.6511, 6.2358, 0.7085, 6.2359, 0.7073, 6.3234, 0.6498, 6.3231], 'confidence': 0.995, 'span': {'offset': 1398, 'length': 1}}, {'content': 'は', 'polygon': [0.7099, 6.2359, 0.7673, 6.236, 0.7663, 6.3236, 0.7088, 6.3234], 'confidence': 0.994, 'span': {'offset': 1399, 'length': 1}}, {'content': 'ミ', 'polygon': [0.7806, 6.236, 0.8262, 6.236, 0.8252, 6.3238, 0.7796, 6.3237], 'confidence': 0.991, 'span': {'offset': 1400, 'length': 1}}, {'content': 'ナ', 'polygon': [0.8276, 6.236, 0.8732, 6.236, 0.8722, 6.3238, 0.8267, 6.3238], 'confidence': 0.995, 'span': {'offset': 1401, 'length': 1}}, {'content': 'に', 'polygon': [0.8747, 6.236, 0.9203, 6.2359, 0.9193, 6.3238, 0.8737, 6.3238], 'confidence': 0.996, 'span': {'offset': 1402, 'length': 1}}, {'content': '、', 'polygon': [0.9218, 6.2359, 0.9909, 6.2359, 0.9898, 6.3237, 0.9207, 6.3237], 'confidence': 0.995, 'span': {'offset': 1403, 'length': 1}}, {'content': '海', 'polygon': [0.9924, 6.2359, 1.0497, 6.2357, 1.0486, 6.3237, 0.9913, 6.3237], 'confidence': 0.994, 'span': {'offset': 1404, 'length': 1}}, {'content': 'の', 'polygon': [1.0512, 6.2357, 1.1086, 6.2354, 1.1074, 6.3236, 1.0501, 6.3237], 'confidence': 0.996, 'span': {'offset': 1405, 'length': 1}}, {'content': '秘', 'polygon': [1.1218, 6.2354, 1.1792, 6.2351, 1.178, 6.3234, 1.1206, 6.3235], 'confidence': 0.989, 'span': {'offset': 1406, 'length': 1}}, {'content': '密', 'polygon': [1.1924, 6.235, 1.2616, 6.2346, 1.2603, 6.3232, 1.1912, 6.3234], 'confidence': 0.995, 'span': {'offset': 1407, 'length': 1}}, {'content': 'や', 'polygon': [1.263, 6.2346, 1.3322, 6.2345, 1.3308, 6.3235, 1.2618, 6.3232], 'confidence': 0.995, 'span': {'offset': 1408, 'length': 1}}, {'content': '自', 'polygon': [1.3336, 6.2345, 1.391, 6.2344, 1.3896, 6.3237, 1.3323, 6.3235], 'confidence': 0.996, 'span': {'offset': 1409, 'length': 1}}, {'content': '然', 'polygon': [1.416, 6.2344, 1.4734, 6.2343, 1.4719, 6.3241, 1.4146, 6.3238], 'confidence': 0.996, 'span': {'offset': 1410, 'length': 1}}, {'content': 'の', 'polygon': [1.4748, 6.2343, 1.5322, 6.2342, 1.5307, 6.3243, 1.4733, 6.3241], 'confidence': 0.996, 'span': {'offset': 1411, 'length': 1}}, {'content': '摂', 'polygon': [1.5454, 6.2342, 1.6028, 6.2342, 1.6014, 6.3246, 1.544, 6.3244], 'confidence': 0.948, 'span': {'offset': 1412, 'length': 1}}, {'content': '理', 'polygon': [1.6161, 6.2342, 1.6734, 6.2343, 1.6721, 6.3249, 1.6146, 6.3247], 'confidence': 0.996, 'span': {'offset': 1413, 'length': 1}}, {'content': 'に', 'polygon': [1.6749, 6.2343, 1.7323, 6.2343, 1.731, 6.3252, 1.6735, 6.3249], 'confidence': 0.996, 'span': {'offset': 1414, 'length': 1}}, {'content': 'つ', 'polygon': [1.7455, 6.2343, 1.7911, 6.2343, 1.7898, 6.3252, 1.7442, 6.3252], 'confidence': 0.995, 'span': {'offset': 1415, 'length': 1}}, {'content': 'い', 'polygon': [1.7926, 6.2343, 1.8499, 6.2343, 1.8487, 6.3251, 1.7913, 6.3252], 'confidence': 0.996, 'span': {'offset': 1416, 'length': 1}}, {'content': 'て', 'polygon': [1.8632, 6.2343, 1.9205, 6.2344, 1.9193, 6.325, 1.8619, 6.3251], 'confidence': 0.996, 'span': {'offset': 1417, 'length': 1}}, {'content': '多', 'polygon': [1.922, 6.2344, 1.9794, 6.2344, 1.9782, 6.3249, 1.9208, 6.325], 'confidence': 0.996, 'span': {'offset': 1418, 'length': 1}}, {'content': 'く', 'polygon': [1.9808, 6.2344, 2.0264, 6.2346, 2.0253, 6.3251, 1.9796, 6.3249], 'confidence': 0.995, 'span': {'offset': 1419, 'length': 1}}, {'content': 'の', 'polygon': [2.0279, 6.2347, 2.0853, 6.235, 2.0842, 6.3254, 2.0268, 6.3251], 'confidence': 0.995, 'span': {'offset': 1420, 'length': 1}}, {'content': 'こ', 'polygon': [2.0868, 6.235, 2.1324, 6.2352, 2.1313, 6.3256, 2.0856, 6.3254], 'confidence': 0.995, 'span': {'offset': 1421, 'length': 1}}, {'content': 'と', 'polygon': [2.1338, 6.2352, 2.1912, 6.2355, 2.1902, 6.3259, 2.1327, 6.3256], 'confidence': 0.996, 'span': {'offset': 1422, 'length': 1}}, {'content': 'を', 'polygon': [2.1927, 6.2355, 2.25, 6.2356, 2.249, 6.3261, 2.1916, 6.3259], 'confidence': 0.995, 'span': {'offset': 1423, 'length': 1}}, {'content': '教', 'polygon': [2.2515, 6.2356, 2.3089, 6.2356, 2.3078, 6.3263, 2.2505, 6.3261], 'confidence': 0.995, 'span': {'offset': 1424, 'length': 1}}, {'content': 'え', 'polygon': [2.3103, 6.2356, 2.3677, 6.2355, 2.3667, 6.3265, 2.3093, 6.3263], 'confidence': 0.996, 'span': {'offset': 1425, 'length': 1}}, {'content': 'て', 'polygon': [2.3692, 6.2355, 2.4148, 6.2355, 2.4137, 6.3266, 2.3681, 6.3265], 'confidence': 0.996, 'span': {'offset': 1426, 'length': 1}}, {'content': 'く', 'polygon': [2.4162, 6.2355, 2.4618, 6.2355, 2.4608, 6.3267, 2.4152, 6.3266], 'confidence': 0.991, 'span': {'offset': 1427, 'length': 1}}, {'content': 'れ', 'polygon': [2.4633, 6.2355, 2.5207, 6.2355, 2.5196, 6.3265, 2.4623, 6.3267], 'confidence': 0.996, 'span': {'offset': 1428, 'length': 1}}, {'content': 'ま', 'polygon': [2.5339, 6.2355, 2.5678, 6.2356, 2.5666, 6.3264, 2.5328, 6.3265], 'confidence': 0.996, 'span': {'offset': 1429, 'length': 1}}, {'content': 'し', 'polygon': [2.5692, 6.2356, 2.6266, 6.2356, 2.6254, 6.3263, 2.5681, 6.3264], 'confidence': 0.996, 'span': {'offset': 1430, 'length': 1}}, {'content': 'た', 'polygon': [2.6281, 6.2356, 2.6854, 6.2357, 2.6842, 6.3261, 2.6269, 6.3263], 'confidence': 0.996, 'span': {'offset': 1431, 'length': 1}}, {'content': '。', 'polygon': [2.6869, 6.2357, 2.7443, 6.2356, 2.743, 6.3259, 2.6857, 6.3261], 'confidence': 0.996, 'span': {'offset': 1432, 'length': 1}}, {'content': '嵐', 'polygon': [2.7457, 6.2355, 2.8031, 6.2354, 2.8018, 6.3257, 2.7445, 6.3259], 'confidence': 0.995, 'span': {'offset': 1433, 'length': 1}}, {'content': 'の', 'polygon': [2.8163, 6.2354, 2.8737, 6.2353, 2.8724, 6.3254, 2.815, 6.3256], 'confidence': 0.996, 'span': {'offset': 1434, 'length': 1}}, {'content': '前', 'polygon': [2.8752, 6.2353, 2.9326, 6.2352, 2.9312, 6.3253, 2.8738, 6.3254], 'confidence': 0.996, 'span': {'offset': 1435, 'length': 1}}, {'content': '兆', 'polygon': [2.9576, 6.2352, 3.0149, 6.2352, 3.0135, 6.3255, 2.9562, 6.3253], 'confidence': 0.996, 'span': {'offset': 1436, 'length': 1}}, {'content': 'や', 'polygon': [3.0282, 6.2351, 3.0855, 6.2351, 3.0841, 6.3257, 3.0268, 6.3255], 'confidence': 0.996, 'span': {'offset': 1437, 'length': 1}}, {'content': '魚', 'polygon': [3.087, 6.2351, 3.1444, 6.2351, 3.143, 6.3258, 3.0856, 6.3257], 'confidence': 0.995, 'span': {'offset': 1438, 'length': 1}}, {'content': 'の', 'polygon': [3.1576, 6.2351, 3.215, 6.2351, 3.2136, 6.326, 3.1562, 6.3259], 'confidence': 0.996, 'span': {'offset': 1439, 'length': 1}}, {'content': '回', 'polygon': [3.2164, 6.2351, 3.2738, 6.2351, 3.2724, 6.3262, 3.215, 6.326], 'confidence': 0.996, 'span': {'offset': 1440, 'length': 1}}, {'content': '遊', 'polygon': [3.2988, 6.2351, 3.3562, 6.2351, 3.3548, 6.3264, 3.2974, 6.3263], 'confidence': 0.992, 'span': {'offset': 1441, 'length': 1}}, {'content': '、', 'polygon': [3.3577, 6.2351, 3.415, 6.2351, 3.4136, 6.3264, 3.3562, 6.3264], 'confidence': 0.996, 'span': {'offset': 1442, 'length': 1}}, {'content': '潮', 'polygon': [3.4165, 6.2351, 3.4739, 6.2351, 3.4724, 6.326, 3.415, 6.3264], 'confidence': 0.995, 'span': {'offset': 1443, 'length': 1}}, {'content': 'の', 'polygon': [3.4871, 6.2351, 3.5445, 6.2352, 3.5429, 6.3255, 3.4856, 6.3259], 'confidence': 0.996, 'span': {'offset': 1444, 'length': 1}}, {'content': '満', 'polygon': [3.5577, 6.2352, 3.6151, 6.2352, 3.6135, 6.3251, 3.5561, 6.3254], 'confidence': 0.995, 'span': {'offset': 1445, 'length': 1}}, {'content': 'ち', 'polygon': [3.6283, 6.2352, 3.6739, 6.2353, 3.6723, 6.3249, 3.6267, 6.325], 'confidence': 0.992, 'span': {'offset': 1446, 'length': 1}}, {'content': '引', 'polygon': [3.6754, 6.2353, 3.7328, 6.2354, 3.7312, 6.3249, 3.6738, 6.3249], 'confidence': 0.996, 'span': {'offset': 1447, 'length': 1}}, {'content': 'き', 'polygon': [3.746, 6.2354, 3.7916, 6.2355, 3.7901, 6.3248, 3.7445, 6.3249], 'confidence': 0.996, 'span': {'offset': 1448, 'length': 1}}, {'content': 'の', 'polygon': [3.7931, 6.2355, 3.8669, 6.2356, 3.8669, 6.3248, 3.7916, 6.3248], 'confidence': 0.995, 'span': {'offset': 1449, 'length': 1}}, {'content': '理', 'polygon': [0.5646, 6.3262, 0.6348, 6.3261, 0.6341, 6.4131, 0.5638, 6.4131], 'confidence': 0.996, 'span': {'offset': 1451, 'length': 1}}, {'content': '由', 'polygon': [0.6477, 6.3261, 0.7037, 6.3261, 0.7029, 6.4131, 0.647, 6.4131], 'confidence': 0.996, 'span': {'offset': 1452, 'length': 1}}, {'content': 'な', 'polygon': [0.7166, 6.3261, 0.7725, 6.326, 0.7718, 6.4131, 0.7159, 6.4131], 'confidence': 0.995, 'span': {'offset': 1453, 'length': 1}}, {'content': 'ど', 'polygon': [0.7739, 6.326, 0.8069, 6.3261, 0.8062, 6.4132, 0.7732, 6.4131], 'confidence': 0.996, 'span': {'offset': 1454, 'length': 1}}, {'content': '、', 'polygon': [0.8083, 6.3261, 0.8757, 6.3262, 0.8749, 6.4135, 0.8076, 6.4132], 'confidence': 0.995, 'span': {'offset': 1455, 'length': 1}}, {'content': '海', 'polygon': [0.8886, 6.3263, 0.9445, 6.3264, 0.9437, 6.4138, 0.8878, 6.4135], 'confidence': 0.996, 'span': {'offset': 1456, 'length': 1}}, {'content': 'に', 'polygon': [0.9459, 6.3264, 1.0018, 6.3266, 1.001, 6.4141, 0.9451, 6.4138], 'confidence': 0.996, 'span': {'offset': 1457, 'length': 1}}, {'content': '関', 'polygon': [1.0147, 6.3266, 1.0706, 6.3266, 1.0697, 6.4141, 1.0139, 6.4141], 'confidence': 0.996, 'span': {'offset': 1458, 'length': 1}}, {'content': 'す', 'polygon': [1.0835, 6.3266, 1.1394, 6.3266, 1.1385, 6.414, 1.0826, 6.4141], 'confidence': 0.996, 'span': {'offset': 1459, 'length': 1}}, {'content': 'る', 'polygon': [1.1523, 6.3266, 1.2082, 6.3265, 1.2072, 6.4138, 1.1514, 6.4139], 'confidence': 0.996, 'span': {'offset': 1460, 'length': 1}}, {'content': '深', 'polygon': [1.2096, 6.3265, 1.2655, 6.3265, 1.2645, 6.4137, 1.2086, 6.4138], 'confidence': 0.996, 'span': {'offset': 1461, 'length': 1}}, {'content': 'い', 'polygon': [1.267, 6.3265, 1.3229, 6.3265, 1.3218, 6.4137, 1.2659, 6.4137], 'confidence': 0.995, 'span': {'offset': 1462, 'length': 1}}, {'content': '知', 'polygon': [1.3358, 6.3265, 1.3917, 6.3265, 1.3905, 6.4136, 1.3347, 6.4136], 'confidence': 0.996, 'span': {'offset': 1463, 'length': 1}}, {'content': '識', 'polygon': [1.416, 6.3264, 1.472, 6.3264, 1.4707, 6.4136, 1.4148, 6.4136], 'confidence': 0.995, 'span': {'offset': 1464, 'length': 1}}, {'content': 'を', 'polygon': [1.4849, 6.3264, 1.5408, 6.3264, 1.5395, 6.4138, 1.4836, 6.4136], 'confidence': 0.995, 'span': {'offset': 1465, 'length': 1}}, {'content': '授', 'polygon': [1.5422, 6.3264, 1.5981, 6.3265, 1.5969, 6.414, 1.5409, 6.4138], 'confidence': 0.995, 'span': {'offset': 1466, 'length': 1}}, {'content': 'け', 'polygon': [1.5995, 6.3265, 1.6554, 6.3265, 1.6543, 6.4142, 1.5983, 6.414], 'confidence': 0.995, 'span': {'offset': 1467, 'length': 1}}, {'content': 'ら', 'polygon': [1.6683, 6.3265, 1.7242, 6.3266, 1.7231, 6.4145, 1.6672, 6.4143], 'confidence': 0.995, 'span': {'offset': 1468, 'length': 1}}, {'content': 'れ', 'polygon': [1.7257, 6.3266, 1.7816, 6.3268, 1.7805, 6.4147, 1.7246, 6.4145], 'confidence': 0.996, 'span': {'offset': 1469, 'length': 1}}, {'content': 'ま', 'polygon': [1.783, 6.3268, 1.8274, 6.327, 1.8264, 6.4149, 1.7819, 6.4147], 'confidence': 0.996, 'span': {'offset': 1470, 'length': 1}}, {'content': 'し', 'polygon': [1.8289, 6.327, 1.8848, 6.3273, 1.8837, 6.4151, 1.8278, 6.4149], 'confidence': 0.996, 'span': {'offset': 1471, 'length': 1}}, {'content': 'た', 'polygon': [1.8862, 6.3273, 1.9421, 6.3275, 1.9411, 6.4153, 1.8852, 6.4151], 'confidence': 0.996, 'span': {'offset': 1472, 'length': 1}}, {'content': '。', 'polygon': [1.9435, 6.3275, 1.9994, 6.3275, 1.9985, 6.4153, 1.9425, 6.4153], 'confidence': 0.996, 'span': {'offset': 1473, 'length': 1}}, {'content': 'そ', 'polygon': [2.0009, 6.3275, 2.0453, 6.3274, 2.0444, 6.4152, 1.9999, 6.4153], 'confidence': 0.99, 'span': {'offset': 1474, 'length': 1}}, {'content': 'し', 'polygon': [2.0467, 6.3274, 2.1026, 6.3273, 2.1017, 6.4151, 2.0458, 6.4152], 'confidence': 0.996, 'span': {'offset': 1475, 'length': 1}}, {'content': 'て', 'polygon': [2.1041, 6.3273, 2.16, 6.3272, 2.1591, 6.415, 2.1032, 6.4151], 'confidence': 0.996, 'span': {'offset': 1476, 'length': 1}}, {'content': '夜', 'polygon': [2.1729, 6.3271, 2.2288, 6.3271, 2.2279, 6.4151, 2.172, 6.4149], 'confidence': 0.996, 'span': {'offset': 1477, 'length': 1}}, {'content': 'が', 'polygon': [2.2302, 6.3271, 2.2861, 6.3271, 2.2852, 6.4153, 2.2293, 6.4151], 'confidence': 0.996, 'span': {'offset': 1478, 'length': 1}}, {'content': '明', 'polygon': [2.299, 6.3271, 2.3549, 6.327, 2.354, 6.4155, 2.2981, 6.4153], 'confidence': 0.996, 'span': {'offset': 1479, 'length': 1}}, {'content': 'け', 'polygon': [2.3678, 6.327, 2.4237, 6.327, 2.4227, 6.4157, 2.3669, 6.4156], 'confidence': 0.996, 'span': {'offset': 1480, 'length': 1}}, {'content': 'る', 'polygon': [2.4366, 6.327, 2.4811, 6.3271, 2.4801, 6.4157, 2.4356, 6.4157], 'confidence': 0.996, 'span': {'offset': 1481, 'length': 1}}, {'content': '頃', 'polygon': [2.4825, 6.3271, 2.5499, 6.3271, 2.5488, 6.4156, 2.4815, 6.4157], 'confidence': 0.995, 'span': {'offset': 1482, 'length': 1}}, {'content': '、', 'polygon': [2.5513, 6.3271, 2.5957, 6.3272, 2.5947, 6.4156, 2.5503, 6.4156], 'confidence': 0.996, 'span': {'offset': 1483, 'length': 1}}, {'content': 'ミ', 'polygon': [2.5972, 6.3272, 2.6531, 6.3272, 2.652, 6.4155, 2.5961, 6.4156], 'confidence': 0.993, 'span': {'offset': 1484, 'length': 1}}, {'content': 'ナ', 'polygon': [2.6545, 6.3272, 2.6989, 6.3274, 2.6978, 6.4155, 2.6534, 6.4155], 'confidence': 0.977, 'span': {'offset': 1485, 'length': 1}}, {'content': 'は', 'polygon': [2.7004, 6.3274, 2.7563, 6.3276, 2.7551, 6.4154, 2.6992, 6.4155], 'confidence': 0.995, 'span': {'offset': 1486, 'length': 1}}, {'content': '再', 'polygon': [2.7806, 6.3277, 2.8365, 6.3279, 2.8353, 6.4153, 2.7794, 6.4154], 'confidence': 0.996, 'span': {'offset': 1487, 'length': 1}}, {'content': 'び', 'polygon': [2.838, 6.3279, 2.8939, 6.3281, 2.8926, 6.4152, 2.8367, 6.4153], 'confidence': 0.996, 'span': {'offset': 1488, 'length': 1}}, {'content': '浜', 'polygon': [2.9068, 6.3281, 2.9627, 6.3281, 2.9614, 6.4153, 2.9055, 6.4153], 'confidence': 0.996, 'span': {'offset': 1489, 'length': 1}}, {'content': '辺', 'polygon': [2.987, 6.3281, 3.043, 6.3281, 3.0417, 6.4154, 2.9858, 6.4153], 'confidence': 0.995, 'span': {'offset': 1490, 'length': 1}}, {'content': 'に', 'polygon': [3.0444, 6.3281, 3.1003, 6.328, 3.099, 6.4155, 3.0431, 6.4154], 'confidence': 0.995, 'span': {'offset': 1491, 'length': 1}}, {'content': '立', 'polygon': [3.1132, 6.328, 3.1691, 6.3281, 3.1678, 6.4157, 3.1119, 6.4155], 'confidence': 0.996, 'span': {'offset': 1492, 'length': 1}}, {'content': 'っ', 'polygon': [3.1705, 6.3281, 3.2264, 6.3282, 3.2251, 6.4159, 3.1693, 6.4157], 'confidence': 0.995, 'span': {'offset': 1493, 'length': 1}}, {'content': 'て', 'polygon': [3.2279, 6.3282, 3.2723, 6.3283, 3.271, 6.416, 3.2266, 6.4159], 'confidence': 0.996, 'span': {'offset': 1494, 'length': 1}}, {'content': 'い', 'polygon': [3.2737, 6.3283, 3.3296, 6.3285, 3.3283, 6.4162, 3.2724, 6.416], 'confidence': 0.996, 'span': {'offset': 1495, 'length': 1}}, {'content': 'ま', 'polygon': [3.354, 6.3285, 3.387, 6.3285, 3.3856, 6.4161, 3.3527, 6.4163], 'confidence': 0.996, 'span': {'offset': 1496, 'length': 1}}, {'content': 'し', 'polygon': [3.3884, 6.3285, 3.4443, 6.3286, 3.4429, 6.4157, 3.387, 6.4161], 'confidence': 0.995, 'span': {'offset': 1497, 'length': 1}}, {'content': 'た', 'polygon': [3.4572, 6.3286, 3.5016, 6.3286, 3.5002, 6.4152, 3.4558, 6.4156], 'confidence': 0.996, 'span': {'offset': 1498, 'length': 1}}, {'content': '。', 'polygon': [3.5031, 6.3286, 3.559, 6.3286, 3.5575, 6.4148, 3.5016, 6.4152], 'confidence': 0.996, 'span': {'offset': 1499, 'length': 1}}, {'content': '村', 'polygon': [3.5719, 6.3286, 3.6278, 6.3287, 3.6263, 6.4148, 3.5703, 6.4147], 'confidence': 0.996, 'span': {'offset': 1500, 'length': 1}}, {'content': '人', 'polygon': [3.6407, 6.3287, 3.6966, 6.3288, 3.6951, 6.4152, 3.6392, 6.4149], 'confidence': 0.996, 'span': {'offset': 1501, 'length': 1}}, {'content': 'た', 'polygon': [3.7095, 6.3288, 3.7654, 6.3289, 3.764, 6.4156, 3.708, 6.4153], 'confidence': 0.996, 'span': {'offset': 1502, 'length': 1}}, {'content': 'ち', 'polygon': [3.7668, 6.3289, 3.8235, 6.329, 3.8235, 6.416, 3.7654, 6.4156], 'confidence': 0.996, 'span': {'offset': 1503, 'length': 1}}, {'content': 'は', 'polygon': [0.5671, 6.4148, 0.6244, 6.4149, 0.6239, 6.4997, 0.5666, 6.4999], 'confidence': 0.965, 'span': {'offset': 1505, 'length': 1}}, {'content': '、', 'polygon': [0.6258, 6.4149, 0.6691, 6.4149, 0.6686, 6.4996, 0.6253, 6.4997], 'confidence': 0.996, 'span': {'offset': 1506, 'length': 1}}, {'content': '一', 'polygon': [0.6705, 6.4149, 0.725, 6.4149, 0.7246, 6.4994, 0.67, 6.4996], 'confidence': 0.97, 'span': {'offset': 1507, 'length': 1}}, {'content': '晩', 'polygon': [0.7599, 6.4149, 0.8144, 6.4149, 0.814, 6.4992, 0.7595, 6.4993], 'confidence': 0.884, 'span': {'offset': 1508, 'length': 1}}, {'content': '中', 'polygon': [0.827, 6.4148, 0.8815, 6.4144, 0.8811, 6.4991, 0.8266, 6.4992], 'confidence': 0.996, 'span': {'offset': 1509, 'length': 1}}, {'content': '姿', 'polygon': [0.9052, 6.4143, 0.9597, 6.4139, 0.9593, 6.4991, 0.9048, 6.4991], 'confidence': 0.996, 'span': {'offset': 1510, 'length': 1}}, {'content': 'を', 'polygon': [0.9834, 6.4138, 1.0379, 6.4135, 1.0376, 6.4991, 0.9831, 6.4991], 'confidence': 0.996, 'span': {'offset': 1511, 'length': 1}}, {'content': '消', 'polygon': [1.0393, 6.4135, 1.0938, 6.4134, 1.0934, 6.4989, 1.039, 6.4991], 'confidence': 0.996, 'span': {'offset': 1512, 'length': 1}}, {'content': 'し', 'polygon': [1.0952, 6.4134, 1.1497, 6.4133, 1.1492, 6.4988, 1.0948, 6.4989], 'confidence': 0.996, 'span': {'offset': 1513, 'length': 1}}, {'content': 'て', 'polygon': [1.1511, 6.4132, 1.2056, 6.4131, 1.205, 6.4987, 1.1506, 6.4988], 'confidence': 0.993, 'span': {'offset': 1514, 'length': 1}}, {'content': 'い', 'polygon': [1.2069, 6.4131, 1.2614, 6.413, 1.2608, 6.4985, 1.2064, 6.4987], 'confidence': 0.996, 'span': {'offset': 1515, 'length': 1}}, {'content': 'た', 'polygon': [1.274, 6.4131, 1.3285, 6.4131, 1.3277, 6.4985, 1.2733, 6.4985], 'confidence': 0.995, 'span': {'offset': 1516, 'length': 1}}, {'content': 'ミ', 'polygon': [1.3299, 6.4131, 1.3732, 6.4131, 1.3724, 6.4985, 1.3291, 6.4985], 'confidence': 0.995, 'span': {'offset': 1517, 'length': 1}}, {'content': 'ナ', 'polygon': [1.3746, 6.4131, 1.4291, 6.4132, 1.4282, 6.4985, 1.3738, 6.4985], 'confidence': 0.996, 'span': {'offset': 1518, 'length': 1}}, {'content': 'の', 'polygon': [1.4305, 6.4132, 1.485, 6.4132, 1.484, 6.4985, 1.4296, 6.4985], 'confidence': 0.995, 'span': {'offset': 1519, 'length': 1}}, {'content': '無', 'polygon': [1.4975, 6.4132, 1.552, 6.4136, 1.551, 6.499, 1.4965, 6.4986], 'confidence': 0.996, 'span': {'offset': 1520, 'length': 1}}, {'content': '事', 'polygon': [1.5758, 6.4138, 1.6302, 6.4141, 1.6293, 6.4996, 1.5748, 6.4992], 'confidence': 0.996, 'span': {'offset': 1521, 'length': 1}}, {'content': 'な', 'polygon': [1.6428, 6.4142, 1.6973, 6.4146, 1.6963, 6.5001, 1.6418, 6.4997], 'confidence': 0.989, 'span': {'offset': 1522, 'length': 1}}, {'content': '帰', 'polygon': [1.7099, 6.4147, 1.7643, 6.4147, 1.7634, 6.5004, 1.7089, 6.5002], 'confidence': 0.996, 'span': {'offset': 1523, 'length': 1}}, {'content': '還', 'polygon': [1.7881, 6.4147, 1.8426, 6.4146, 1.8417, 6.5004, 1.7872, 6.5004], 'confidence': 0.996, 'span': {'offset': 1524, 'length': 1}}, {'content': 'を', 'polygon': [1.8551, 6.4145, 1.9096, 6.4144, 1.9087, 6.5004, 1.8542, 6.5004], 'confidence': 0.995, 'span': {'offset': 1525, 'length': 1}}, {'content': '喜', 'polygon': [1.911, 6.4144, 1.9767, 6.4144, 1.9758, 6.5004, 1.9101, 6.5004], 'confidence': 0.997, 'span': {'offset': 1526, 'length': 1}}, {'content': 'び', 'polygon': [1.9781, 6.4144, 2.0326, 6.4146, 2.0318, 6.5004, 1.9772, 6.5004], 'confidence': 0.996, 'span': {'offset': 1527, 'length': 1}}, {'content': 'ま', 'polygon': [2.0451, 6.4146, 2.0884, 6.4147, 2.0877, 6.5004, 2.0444, 6.5004], 'confidence': 0.996, 'span': {'offset': 1528, 'length': 1}}, {'content': 'し', 'polygon': [2.0898, 6.4147, 2.1443, 6.4149, 2.1437, 6.5004, 2.0891, 6.5004], 'confidence': 0.996, 'span': {'offset': 1529, 'length': 1}}, {'content': 'た', 'polygon': [2.1457, 6.4149, 2.2002, 6.415, 2.1996, 6.5004, 2.1451, 6.5004], 'confidence': 0.996, 'span': {'offset': 1530, 'length': 1}}, {'content': '。', 'polygon': [2.2016, 6.415, 2.2561, 6.4151, 2.2554, 6.5004, 2.201, 6.5004], 'confidence': 0.996, 'span': {'offset': 1531, 'length': 1}}, {'content': 'そ', 'polygon': [2.2575, 6.4151, 2.312, 6.4152, 2.3113, 6.5004, 2.2568, 6.5004], 'confidence': 0.995, 'span': {'offset': 1532, 'length': 1}}, {'content': 'れ', 'polygon': [2.3134, 6.4152, 2.3678, 6.4153, 2.3671, 6.5004, 2.3127, 6.5004], 'confidence': 0.996, 'span': {'offset': 1533, 'length': 1}}, {'content': 'か', 'polygon': [2.3692, 6.4153, 2.4237, 6.4154, 2.4229, 6.5004, 2.3685, 6.5004], 'confidence': 0.996, 'span': {'offset': 1534, 'length': 1}}, {'content': 'ら', 'polygon': [2.4363, 6.4154, 2.4796, 6.4154, 2.4788, 6.5004, 2.4355, 6.5004], 'confidence': 0.996, 'span': {'offset': 1535, 'length': 1}}, {'content': 'と', 'polygon': [2.481, 6.4154, 2.5243, 6.4154, 2.5235, 6.5004, 2.4802, 6.5004], 'confidence': 0.996, 'span': {'offset': 1536, 'length': 1}}, {'content': 'い', 'polygon': [2.5257, 6.4154, 2.5802, 6.4154, 2.5793, 6.5003, 2.5249, 6.5004], 'confidence': 0.996, 'span': {'offset': 1537, 'length': 1}}, {'content': 'う', 'polygon': [2.5816, 6.4154, 2.6361, 6.4153, 2.6352, 6.5002, 2.5807, 6.5003], 'confidence': 0.994, 'span': {'offset': 1538, 'length': 1}}, {'content': 'も', 'polygon': [2.6375, 6.4153, 2.6808, 6.4152, 2.6798, 6.5001, 2.6366, 6.5002], 'confidence': 0.996, 'span': {'offset': 1539, 'length': 1}}, {'content': 'の', 'polygon': [2.6822, 6.4152, 2.7367, 6.4151, 2.7357, 6.5001, 2.6812, 6.5001], 'confidence': 0.995, 'span': {'offset': 1540, 'length': 1}}, {'content': '、', 'polygon': [2.738, 6.4151, 2.7925, 6.415, 2.7915, 6.5, 2.7371, 6.5001], 'confidence': 0.995, 'span': {'offset': 1541, 'length': 1}}, {'content': 'ミ', 'polygon': [2.7939, 6.415, 2.8484, 6.4148, 2.8474, 6.4999, 2.7929, 6.5], 'confidence': 0.99, 'span': {'offset': 1542, 'length': 1}}, {'content': 'ナ', 'polygon': [2.8498, 6.4148, 2.8931, 6.4147, 2.892, 6.4999, 2.8488, 6.4999], 'confidence': 0.991, 'span': {'offset': 1543, 'length': 1}}, {'content': 'は', 'polygon': [2.8945, 6.4147, 2.949, 6.4145, 2.9479, 6.4999, 2.8934, 6.4999], 'confidence': 0.995, 'span': {'offset': 1544, 'length': 1}}, {'content': '村', 'polygon': [2.9727, 6.4144, 3.0272, 6.4143, 3.0262, 6.4998, 2.9717, 6.4998], 'confidence': 0.995, 'span': {'offset': 1545, 'length': 1}}, {'content': '人', 'polygon': [3.0398, 6.4142, 3.0943, 6.414, 3.0932, 6.4997, 3.0387, 6.4998], 'confidence': 0.996, 'span': {'offset': 1546, 'length': 1}}, {'content': 'た', 'polygon': [3.1069, 6.414, 3.1613, 6.4141, 3.1603, 6.4998, 3.1058, 6.4997], 'confidence': 0.996, 'span': {'offset': 1547, 'length': 1}}, {'content': 'ち', 'polygon': [3.1739, 6.4142, 3.2172, 6.4143, 3.2161, 6.4999, 3.1728, 6.4998], 'confidence': 0.995, 'span': {'offset': 1548, 'length': 1}}, {'content': 'に', 'polygon': [3.2186, 6.4143, 3.2731, 6.4145, 3.272, 6.5, 3.2175, 6.4999], 'confidence': 0.992, 'span': {'offset': 1549, 'length': 1}}, {'content': '海', 'polygon': [3.2968, 6.4146, 3.3513, 6.4147, 3.3502, 6.5, 3.2958, 6.5], 'confidence': 0.996, 'span': {'offset': 1550, 'length': 1}}, {'content': 'の', 'polygon': [3.3527, 6.4147, 3.4072, 6.4146, 3.4061, 6.4995, 3.3516, 6.5], 'confidence': 0.996, 'span': {'offset': 1551, 'length': 1}}, {'content': '声', 'polygon': [3.4198, 6.4146, 3.4743, 6.4144, 3.4731, 6.4989, 3.4187, 6.4994], 'confidence': 0.996, 'span': {'offset': 1552, 'length': 1}}, {'content': 'を', 'polygon': [3.498, 6.4144, 3.5525, 6.4142, 3.5513, 6.4981, 3.4968, 6.4987], 'confidence': 0.995, 'span': {'offset': 1553, 'length': 1}}, {'content': '伝', 'polygon': [3.5539, 6.4142, 3.6195, 6.4143, 3.6183, 6.4983, 3.5527, 6.4981], 'confidence': 0.995, 'span': {'offset': 1554, 'length': 1}}, {'content': 'え', 'polygon': [3.6209, 6.4143, 3.6754, 6.4145, 3.6742, 6.4988, 3.6197, 6.4983], 'confidence': 0.996, 'span': {'offset': 1555, 'length': 1}}, {'content': 'る', 'polygon': [3.6768, 6.4145, 3.7313, 6.4147, 3.7301, 6.4993, 3.6756, 6.4988], 'confidence': 0.996, 'span': {'offset': 1556, 'length': 1}}, {'content': '役', 'polygon': [3.7439, 6.4147, 3.8102, 6.415, 3.8102, 6.5002, 3.7427, 6.4995], 'confidence': 0.996, 'span': {'offset': 1557, 'length': 1}}, {'content': '目', 'polygon': [0.5692, 6.5014, 0.6273, 6.5013, 0.627, 6.586, 0.5688, 6.586], 'confidence': 0.996, 'span': {'offset': 1559, 'length': 1}}, {'content': 'を', 'polygon': [0.6514, 6.5013, 0.7067, 6.5012, 0.7065, 6.5859, 0.6511, 6.586], 'confidence': 0.996, 'span': {'offset': 1560, 'length': 1}}, {'content': '果', 'polygon': [0.7082, 6.5012, 0.7635, 6.5012, 0.7633, 6.5859, 0.7079, 6.5859], 'confidence': 0.996, 'span': {'offset': 1561, 'length': 1}}, {'content': 'た', 'polygon': [0.7649, 6.5012, 0.8202, 6.5011, 0.82, 6.586, 0.7647, 6.5859], 'confidence': 0.996, 'span': {'offset': 1562, 'length': 1}}, {'content': 'す', 'polygon': [0.833, 6.501, 0.8883, 6.5008, 0.8881, 6.586, 0.8328, 6.586], 'confidence': 0.996, 'span': {'offset': 1563, 'length': 1}}, {'content': 'よ', 'polygon': [0.8897, 6.5008, 0.945, 6.5006, 0.9448, 6.5861, 0.8895, 6.586], 'confidence': 0.996, 'span': {'offset': 1564, 'length': 1}}, {'content': 'う', 'polygon': [0.9464, 6.5006, 0.979, 6.5005, 0.9788, 6.5861, 0.9462, 6.5861], 'confidence': 0.996, 'span': {'offset': 1565, 'length': 1}}, {'content': 'に', 'polygon': [0.9804, 6.5005, 1.0471, 6.5002, 1.0468, 6.5862, 0.9802, 6.5861], 'confidence': 0.997, 'span': {'offset': 1566, 'length': 1}}, {'content': 'な', 'polygon': [1.0598, 6.5002, 1.1038, 6.5001, 1.1035, 6.5862, 1.0596, 6.5862], 'confidence': 0.996, 'span': {'offset': 1567, 'length': 1}}, {'content': 'り', 'polygon': [1.1052, 6.5001, 1.1605, 6.4999, 1.1601, 6.5863, 1.1049, 6.5862], 'confidence': 0.996, 'span': {'offset': 1568, 'length': 1}}, {'content': 'ま', 'polygon': [1.1619, 6.4999, 1.2059, 6.4997, 1.2054, 6.5863, 1.1615, 6.5863], 'confidence': 0.996, 'span': {'offset': 1569, 'length': 1}}, {'content': 'し', 'polygon': [1.2073, 6.4997, 1.2626, 6.4996, 1.262, 6.5863, 1.2068, 6.5863], 'confidence': 0.996, 'span': {'offset': 1570, 'length': 1}}, {'content': 'た', 'polygon': [1.264, 6.4996, 1.3193, 6.4996, 1.3187, 6.5864, 1.2635, 6.5863], 'confidence': 0.996, 'span': {'offset': 1571, 'length': 1}}, {'content': '。', 'polygon': [1.3208, 6.4996, 1.3761, 6.4995, 1.3753, 6.5865, 1.3201, 6.5864], 'confidence': 0.996, 'span': {'offset': 1572, 'length': 1}}, {'content': '嵐', 'polygon': [1.3775, 6.4995, 1.4328, 6.4995, 1.4319, 6.5867, 1.3767, 6.5865], 'confidence': 0.995, 'span': {'offset': 1573, 'length': 1}}, {'content': 'の', 'polygon': [1.4456, 6.4995, 1.5009, 6.4995, 1.4999, 6.5868, 1.4446, 6.5867], 'confidence': 0.996, 'span': {'offset': 1574, 'length': 1}}, {'content': '接', 'polygon': [1.5136, 6.4996, 1.5803, 6.4998, 1.5794, 6.5871, 1.5126, 6.5869], 'confidence': 0.995, 'span': {'offset': 1575, 'length': 1}}, {'content': '近', 'polygon': [1.593, 6.4999, 1.6483, 6.5001, 1.6475, 6.5871, 1.5921, 6.5871], 'confidence': 0.996, 'span': {'offset': 1576, 'length': 1}}, {'content': 'を', 'polygon': [1.6611, 6.5002, 1.7164, 6.5004, 1.7156, 6.5871, 1.6603, 6.5871], 'confidence': 0.995, 'span': {'offset': 1577, 'length': 1}}, {'content': '予', 'polygon': [1.7178, 6.5004, 1.7731, 6.5004, 1.7724, 6.5871, 1.7171, 6.5871], 'confidence': 0.996, 'span': {'offset': 1578, 'length': 1}}, {'content': '測', 'polygon': [1.7972, 6.5004, 1.8525, 6.5004, 1.8518, 6.5871, 1.7965, 6.5871], 'confidence': 0.995, 'span': {'offset': 1579, 'length': 1}}, {'content': 'し', 'polygon': [1.854, 6.5004, 1.9093, 6.5004, 1.9085, 6.5871, 1.8532, 6.5871], 'confidence': 0.996, 'span': {'offset': 1580, 'length': 1}}, {'content': 'た', 'polygon': [1.9107, 6.5004, 1.966, 6.5003, 1.9652, 6.5871, 1.9099, 6.5871], 'confidence': 0.996, 'span': {'offset': 1581, 'length': 1}}, {'content': 'り', 'polygon': [1.9674, 6.5003, 2, 6.5004, 1.9993, 6.5871, 1.9667, 6.5871], 'confidence': 0.996, 'span': {'offset': 1582, 'length': 1}}, {'content': '、', 'polygon': [2.0014, 6.5004, 2.0567, 6.5004, 2.0561, 6.5871, 2.0007, 6.5871], 'confidence': 0.995, 'span': {'offset': 1583, 'length': 1}}, {'content': '大', 'polygon': [2.0695, 6.5004, 2.1248, 6.5005, 2.1242, 6.5871, 2.0689, 6.5871], 'confidence': 0.996, 'span': {'offset': 1584, 'length': 1}}, {'content': '漁', 'polygon': [2.1489, 6.5005, 2.2042, 6.5005, 2.2037, 6.5871, 2.1484, 6.5871], 'confidence': 0.995, 'span': {'offset': 1585, 'length': 1}}, {'content': 'の', 'polygon': [2.2056, 6.5005, 2.2609, 6.5005, 2.2604, 6.5871, 2.2051, 6.5871], 'confidence': 0.996, 'span': {'offset': 1586, 'length': 1}}, {'content': '時', 'polygon': [2.2737, 6.5005, 2.329, 6.5005, 2.3284, 6.5871, 2.2731, 6.5871], 'confidence': 0.996, 'span': {'offset': 1587, 'length': 1}}, {'content': '期', 'polygon': [2.3531, 6.5005, 2.4084, 6.5005, 2.4078, 6.5871, 2.3525, 6.5871], 'confidence': 0.996, 'span': {'offset': 1588, 'length': 1}}, {'content': 'を', 'polygon': [2.4212, 6.5005, 2.4765, 6.5006, 2.4758, 6.5871, 2.4205, 6.5871], 'confidence': 0.995, 'span': {'offset': 1589, 'length': 1}}, {'content': '知', 'polygon': [2.4779, 6.5006, 2.5332, 6.5007, 2.5325, 6.5871, 2.4772, 6.5871], 'confidence': 0.996, 'span': {'offset': 1590, 'length': 1}}, {'content': 'ら', 'polygon': [2.546, 6.5007, 2.6013, 6.5008, 2.6005, 6.5871, 2.5452, 6.5871], 'confidence': 0.996, 'span': {'offset': 1591, 'length': 1}}, {'content': 'せ', 'polygon': [2.6027, 6.5008, 2.658, 6.5009, 2.6572, 6.5871, 2.6019, 6.5871], 'confidence': 0.996, 'span': {'offset': 1592, 'length': 1}}, {'content': 'た', 'polygon': [2.6594, 6.5009, 2.7034, 6.5009, 2.7026, 6.5871, 2.6586, 6.5871], 'confidence': 0.996, 'span': {'offset': 1593, 'length': 1}}, {'content': 'り', 'polygon': [2.7048, 6.5009, 2.7601, 6.5009, 2.7593, 6.5871, 2.704, 6.5871], 'confidence': 0.996, 'span': {'offset': 1594, 'length': 1}}, {'content': 'と', 'polygon': [2.7615, 6.5009, 2.7941, 6.5009, 2.7933, 6.5871, 2.7607, 6.5871], 'confidence': 0.996, 'span': {'offset': 1595, 'length': 1}}, {'content': '、', 'polygon': [2.7955, 6.5009, 2.8508, 6.5009, 2.85, 6.5871, 2.7947, 6.5871], 'confidence': 0.996, 'span': {'offset': 1596, 'length': 1}}, {'content': 'ミ', 'polygon': [2.8523, 6.5009, 2.8962, 6.5009, 2.8954, 6.5871, 2.8515, 6.5871], 'confidence': 0.995, 'span': {'offset': 1597, 'length': 1}}, {'content': 'ナ', 'polygon': [2.8976, 6.5009, 2.953, 6.5007, 2.9521, 6.5871, 2.8968, 6.5871], 'confidence': 0.994, 'span': {'offset': 1598, 'length': 1}}, {'content': 'の', 'polygon': [2.9544, 6.5007, 3.0097, 6.5006, 3.0089, 6.5871, 2.9536, 6.5871], 'confidence': 0.995, 'span': {'offset': 1599, 'length': 1}}, {'content': '助', 'polygon': [3.0224, 6.5005, 3.0777, 6.5004, 3.0769, 6.5871, 3.0216, 6.5871], 'confidence': 0.996, 'span': {'offset': 1600, 'length': 1}}, {'content': '言', 'polygon': [3.1018, 6.5003, 3.1572, 6.5003, 3.1563, 6.5871, 3.101, 6.5871], 'confidence': 0.996, 'span': {'offset': 1601, 'length': 1}}, {'content': 'は', 'polygon': [3.1586, 6.5003, 3.2139, 6.5004, 3.213, 6.5871, 3.1578, 6.5871], 'confidence': 0.995, 'span': {'offset': 1602, 'length': 1}}, {'content': '村', 'polygon': [3.238, 6.5004, 3.2933, 6.5005, 3.2924, 6.5871, 3.2371, 6.5871], 'confidence': 0.996, 'span': {'offset': 1603, 'length': 1}}, {'content': '人', 'polygon': [3.306, 6.5005, 3.3614, 6.5006, 3.3604, 6.5871, 3.3052, 6.5871], 'confidence': 0.996, 'span': {'offset': 1604, 'length': 1}}, {'content': 'た', 'polygon': [3.3741, 6.5006, 3.4294, 6.5008, 3.4285, 6.5871, 3.3732, 6.5871], 'confidence': 0.996, 'span': {'offset': 1605, 'length': 1}}, {'content': 'ち', 'polygon': [3.4308, 6.5008, 3.4748, 6.5009, 3.4738, 6.5871, 3.4299, 6.5871], 'confidence': 0.995, 'span': {'offset': 1606, 'length': 1}}, {'content': 'の', 'polygon': [3.4762, 6.5009, 3.5429, 6.5011, 3.5419, 6.5867, 3.4753, 6.5871], 'confidence': 0.994, 'span': {'offset': 1607, 'length': 1}}, {'content': '生', 'polygon': [3.5556, 6.5011, 3.6109, 6.5011, 3.61, 6.5863, 3.5546, 6.5866], 'confidence': 0.996, 'span': {'offset': 1608, 'length': 1}}, {'content': '活', 'polygon': [3.635, 6.5011, 3.6903, 6.501, 3.6894, 6.5862, 3.6341, 6.5863], 'confidence': 0.996, 'span': {'offset': 1609, 'length': 1}}, {'content': 'に', 'polygon': [3.6918, 6.5009, 3.7471, 6.5008, 3.7462, 6.5862, 3.6909, 6.5862], 'confidence': 0.996, 'span': {'offset': 1610, 'length': 1}}, {'content': '大', 'polygon': [3.7598, 6.5008, 3.8268, 6.5006, 3.8268, 6.5861, 3.759, 6.5862], 'confidence': 0.996, 'span': {'offset': 1611, 'length': 1}}, {'content': 'き', 'polygon': [0.567, 6.5883, 0.6258, 6.5882, 0.6255, 6.6739, 0.5666, 6.6739], 'confidence': 0.995, 'span': {'offset': 1613, 'length': 1}}, {'content': 'な', 'polygon': [0.6272, 6.5882, 0.6831, 6.5881, 0.6829, 6.6739, 0.6269, 6.6739], 'confidence': 0.995, 'span': {'offset': 1614, 'length': 1}}, {'content': '変', 'polygon': [0.696, 6.588, 0.752, 6.5879, 0.7518, 6.674, 0.6958, 6.674], 'confidence': 0.996, 'span': {'offset': 1615, 'length': 1}}, {'content': '化', 'polygon': [0.7649, 6.5879, 0.8208, 6.5878, 0.8207, 6.6741, 0.7647, 6.674], 'confidence': 0.996, 'span': {'offset': 1616, 'length': 1}}, {'content': 'を', 'polygon': [0.8337, 6.5878, 0.8897, 6.5878, 0.8895, 6.6743, 0.8336, 6.6741], 'confidence': 0.996, 'span': {'offset': 1617, 'length': 1}}, {'content': 'も', 'polygon': [0.8911, 6.5878, 0.9356, 6.5877, 0.9354, 6.6744, 0.8909, 6.6743], 'confidence': 0.995, 'span': {'offset': 1618, 'length': 1}}, {'content': 'た', 'polygon': [0.937, 6.5877, 0.9929, 6.5877, 0.9927, 6.6745, 0.9368, 6.6744], 'confidence': 0.996, 'span': {'offset': 1619, 'length': 1}}, {'content': 'ら', 'polygon': [0.9944, 6.5877, 1.0388, 6.5876, 1.0385, 6.6746, 0.9941, 6.6745], 'confidence': 0.995, 'span': {'offset': 1620, 'length': 1}}, {'content': 'し', 'polygon': [1.0403, 6.5876, 1.0962, 6.5874, 1.0958, 6.6745, 1.04, 6.6746], 'confidence': 0.996, 'span': {'offset': 1621, 'length': 1}}, {'content': 'ま', 'polygon': [1.1091, 6.5874, 1.1536, 6.5873, 1.1531, 6.6744, 1.1087, 6.6745], 'confidence': 0.996, 'span': {'offset': 1622, 'length': 1}}, {'content': 'し', 'polygon': [1.155, 6.5873, 1.2109, 6.5871, 1.2104, 6.6743, 1.1545, 6.6744], 'confidence': 0.996, 'span': {'offset': 1623, 'length': 1}}, {'content': 'た', 'polygon': [1.2124, 6.5871, 1.2568, 6.587, 1.2562, 6.6742, 1.2118, 6.6743], 'confidence': 0.996, 'span': {'offset': 1624, 'length': 1}}, {'content': '。', 'polygon': [1.2582, 6.587, 1.307, 6.5869, 1.3064, 6.6742, 1.2577, 6.6742], 'confidence': 0.996, 'span': {'offset': 1625, 'length': 1}}, {'content': '年', 'polygon': [1.3285, 6.5869, 1.383, 6.5868, 1.3824, 6.6743, 1.3279, 6.6742], 'confidence': 0.996, 'span': {'offset': 1626, 'length': 1}}, {'content': '月', 'polygon': [1.3959, 6.5868, 1.4519, 6.5867, 1.4512, 6.6743, 1.3953, 6.6743], 'confidence': 0.996, 'span': {'offset': 1627, 'length': 1}}, {'content': 'が', 'polygon': [1.4648, 6.5867, 1.5207, 6.5866, 1.5201, 6.6745, 1.4641, 6.6743], 'confidence': 0.996, 'span': {'offset': 1628, 'length': 1}}, {'content': '過', 'polygon': [1.5336, 6.5866, 1.5895, 6.5866, 1.5889, 6.6747, 1.533, 6.6745], 'confidence': 0.996, 'span': {'offset': 1629, 'length': 1}}, {'content': 'ぎ', 'polygon': [1.6025, 6.5866, 1.6469, 6.5865, 1.6463, 6.6748, 1.6018, 6.6747], 'confidence': 0.995, 'span': {'offset': 1630, 'length': 1}}, {'content': '、', 'polygon': [1.6483, 6.5865, 1.7043, 6.5865, 1.7037, 6.675, 1.6477, 6.6748], 'confidence': 0.99, 'span': {'offset': 1631, 'length': 1}}, {'content': 'ミ', 'polygon': [1.7057, 6.5865, 1.7502, 6.5865, 1.7496, 6.6751, 1.7051, 6.675], 'confidence': 0.994, 'span': {'offset': 1632, 'length': 1}}, {'content': 'ナ', 'polygon': [1.7516, 6.5865, 1.7961, 6.5865, 1.7955, 6.6753, 1.751, 6.6752], 'confidence': 0.992, 'span': {'offset': 1633, 'length': 1}}, {'content': 'は', 'polygon': [1.7975, 6.5865, 1.8534, 6.5866, 1.853, 6.6754, 1.797, 6.6753], 'confidence': 0.995, 'span': {'offset': 1634, 'length': 1}}, {'content': '美', 'polygon': [1.8778, 6.5866, 1.9338, 6.5867, 1.9334, 6.6757, 1.8774, 6.6755], 'confidence': 0.996, 'span': {'offset': 1635, 'length': 1}}, {'content': 'し', 'polygon': [1.9352, 6.5867, 1.9911, 6.5868, 1.9908, 6.6758, 1.9348, 6.6757], 'confidence': 0.996, 'span': {'offset': 1636, 'length': 1}}, {'content': 'い', 'polygon': [1.9926, 6.5868, 2.0485, 6.5868, 2.0481, 6.6757, 1.9922, 6.6758], 'confidence': 0.996, 'span': {'offset': 1637, 'length': 1}}, {'content': '大', 'polygon': [2.0614, 6.5869, 2.1173, 6.5869, 2.117, 6.6756, 2.0611, 6.6757], 'confidence': 0.996, 'span': {'offset': 1638, 'length': 1}}, {'content': '人', 'polygon': [2.1302, 6.5869, 2.1862, 6.587, 2.1858, 6.6756, 2.1299, 6.6756], 'confidence': 0.996, 'span': {'offset': 1639, 'length': 1}}, {'content': 'の', 'polygon': [2.1991, 6.587, 2.255, 6.587, 2.2547, 6.6755, 2.1987, 6.6756], 'confidence': 0.996, 'span': {'offset': 1640, 'length': 1}}, {'content': '女', 'polygon': [2.2679, 6.587, 2.3239, 6.587, 2.3235, 6.6754, 2.2676, 6.6755], 'confidence': 0.996, 'span': {'offset': 1641, 'length': 1}}, {'content': '性', 'polygon': [2.3368, 6.587, 2.3927, 6.5869, 2.3924, 6.6754, 2.3365, 6.6754], 'confidence': 0.996, 'span': {'offset': 1642, 'length': 1}}, {'content': 'へ', 'polygon': [2.4056, 6.5869, 2.4615, 6.587, 2.4612, 6.6754, 2.4053, 6.6754], 'confidence': 0.99, 'span': {'offset': 1643, 'length': 1}}, {'content': 'と', 'polygon': [2.463, 6.587, 2.5189, 6.5873, 2.5185, 6.6755, 2.4626, 6.6754], 'confidence': 0.994, 'span': {'offset': 1644, 'length': 1}}, {'content': '成', 'polygon': [2.5203, 6.5873, 2.5763, 6.5875, 2.5757, 6.6756, 2.5199, 6.6755], 'confidence': 0.996, 'span': {'offset': 1645, 'length': 1}}, {'content': '長', 'polygon': [2.5892, 6.5876, 2.6451, 6.5878, 2.6444, 6.6757, 2.5886, 6.6756], 'confidence': 0.996, 'span': {'offset': 1646, 'length': 1}}, {'content': 'し', 'polygon': [2.6465, 6.5878, 2.7025, 6.588, 2.7017, 6.6758, 2.6459, 6.6757], 'confidence': 0.995, 'span': {'offset': 1647, 'length': 1}}, {'content': 'ま', 'polygon': [2.7154, 6.5881, 2.7598, 6.5882, 2.7591, 6.6759, 2.7146, 6.6758], 'confidence': 0.996, 'span': {'offset': 1648, 'length': 1}}, {'content': 'し', 'polygon': [2.7613, 6.5882, 2.8172, 6.5884, 2.8164, 6.676, 2.7605, 6.6759], 'confidence': 0.996, 'span': {'offset': 1649, 'length': 1}}, {'content': 'た', 'polygon': [2.8187, 6.5884, 2.8746, 6.5886, 2.8737, 6.6761, 2.8178, 6.676], 'confidence': 0.996, 'span': {'offset': 1650, 'length': 1}}, {'content': '。', 'polygon': [2.876, 6.5886, 2.932, 6.5886, 2.9311, 6.676, 2.8752, 6.6761], 'confidence': 0.995, 'span': {'offset': 1651, 'length': 1}}, {'content': '彼', 'polygon': [2.9334, 6.5886, 2.9893, 6.5884, 2.9885, 6.6758, 2.9326, 6.676], 'confidence': 0.996, 'span': {'offset': 1652, 'length': 1}}, {'content': '女', 'polygon': [3.0022, 6.5884, 3.0582, 6.5883, 3.0574, 6.6756, 3.0014, 6.6758], 'confidence': 0.996, 'span': {'offset': 1653, 'length': 1}}, {'content': 'の', 'polygon': [3.0711, 6.5882, 3.127, 6.5881, 3.1263, 6.6753, 3.0703, 6.6755], 'confidence': 0.996, 'span': {'offset': 1654, 'length': 1}}, {'content': '噂', 'polygon': [3.1399, 6.588, 3.1958, 6.5881, 3.1951, 6.6754, 3.1392, 6.6753], 'confidence': 0.883, 'span': {'offset': 1655, 'length': 1}}, {'content': 'は', 'polygon': [3.2088, 6.5881, 3.2647, 6.5881, 3.2639, 6.6756, 3.208, 6.6754], 'confidence': 0.995, 'span': {'offset': 1656, 'length': 1}}, {'content': '遠', 'polygon': [3.2776, 6.5881, 3.3335, 6.5881, 3.3327, 6.6757, 3.2768, 6.6756], 'confidence': 0.995, 'span': {'offset': 1657, 'length': 1}}, {'content': 'く', 'polygon': [3.335, 6.5881, 3.3794, 6.5881, 3.3786, 6.6757, 3.3342, 6.6757], 'confidence': 0.995, 'span': {'offset': 1658, 'length': 1}}, {'content': 'ま', 'polygon': [3.3809, 6.5881, 3.4368, 6.5882, 3.436, 6.6754, 3.38, 6.6757], 'confidence': 0.996, 'span': {'offset': 1659, 'length': 1}}, {'content': 'で', 'polygon': [3.4382, 6.5882, 3.4942, 6.5882, 3.4933, 6.6751, 3.4374, 6.6754], 'confidence': 0.996, 'span': {'offset': 1660, 'length': 1}}, {'content': '広', 'polygon': [3.4956, 6.5882, 3.5515, 6.5882, 3.5507, 6.6748, 3.4947, 6.6751], 'confidence': 0.996, 'span': {'offset': 1661, 'length': 1}}, {'content': 'が', 'polygon': [3.5644, 6.5882, 3.6204, 6.5882, 3.6195, 6.6747, 3.5636, 6.6748], 'confidence': 0.995, 'span': {'offset': 1662, 'length': 1}}, {'content': 'り', 'polygon': [3.6218, 6.5882, 3.6548, 6.5882, 3.6539, 6.6748, 3.6209, 6.6747], 'confidence': 0.996, 'span': {'offset': 1663, 'length': 1}}, {'content': '、', 'polygon': [3.6562, 6.5881, 3.7122, 6.588, 3.7113, 6.675, 3.6554, 6.6748], 'confidence': 0.996, 'span': {'offset': 1664, 'length': 1}}, {'content': '多', 'polygon': [3.7251, 6.588, 3.781, 6.5879, 3.7802, 6.6753, 3.7242, 6.6751], 'confidence': 0.996, 'span': {'offset': 1665, 'length': 1}}, {'content': 'く', 'polygon': [3.7824, 6.5878, 3.8368, 6.5877, 3.8361, 6.6755, 3.7816, 6.6753], 'confidence': 0.995, 'span': {'offset': 1666, 'length': 1}}, {'content': 'の', 'polygon': [0.5664, 6.6784, 0.6125, 6.6784, 0.6122, 6.762, 0.566, 6.7618], 'confidence': 0.994, 'span': {'offset': 1668, 'length': 1}}, {'content': '人', 'polygon': [0.625, 6.6784, 0.6795, 6.6784, 0.6793, 6.7621, 0.6248, 6.762], 'confidence': 0.996, 'span': {'offset': 1669, 'length': 1}}, {'content': '々', 'polygon': [0.7033, 6.6784, 0.7689, 6.6784, 0.7688, 6.7624, 0.7031, 6.7622], 'confidence': 0.995, 'span': {'offset': 1670, 'length': 1}}, {'content': 'が', 'polygon': [0.7703, 6.6784, 0.8248, 6.6782, 0.8247, 6.7625, 0.7702, 6.7624], 'confidence': 0.996, 'span': {'offset': 1671, 'length': 1}}, {'content': '海', 'polygon': [0.8486, 6.678, 0.9031, 6.6777, 0.9029, 6.7627, 0.8484, 6.7626], 'confidence': 0.996, 'span': {'offset': 1672, 'length': 1}}, {'content': 'の', 'polygon': [0.9045, 6.6777, 0.9589, 6.6773, 0.9587, 6.7628, 0.9043, 6.7627], 'confidence': 0.996, 'span': {'offset': 1673, 'length': 1}}, {'content': '声', 'polygon': [0.9715, 6.6773, 1.026, 6.6769, 1.0257, 6.763, 0.9713, 6.7629], 'confidence': 0.996, 'span': {'offset': 1674, 'length': 1}}, {'content': 'を', 'polygon': [1.0497, 6.6769, 1.1042, 6.6769, 1.1039, 6.7629, 1.0495, 6.7629], 'confidence': 0.991, 'span': {'offset': 1675, 'length': 1}}, {'content': '聞', 'polygon': [1.1056, 6.6769, 1.1601, 6.6769, 1.1598, 6.7628, 1.1053, 6.7629], 'confidence': 0.995, 'span': {'offset': 1676, 'length': 1}}, {'content': 'く', 'polygon': [1.1615, 6.6769, 1.2048, 6.677, 1.2045, 6.7628, 1.1612, 6.7628], 'confidence': 0.286, 'span': {'offset': 1677, 'length': 1}}, {'content': '少', 'polygon': [1.2062, 6.677, 1.2607, 6.677, 1.2604, 6.7628, 1.2059, 6.7628], 'confidence': 0.996, 'span': {'offset': 1678, 'length': 1}}, {'content': '女', 'polygon': [1.2845, 6.6769, 1.3389, 6.6769, 1.3385, 6.7627, 1.2841, 6.7627], 'confidence': 0.996, 'span': {'offset': 1679, 'length': 1}}, {'content': 'の', 'polygon': [1.3515, 6.6769, 1.406, 6.6768, 1.4055, 6.7626, 1.3511, 6.7627], 'confidence': 0.995, 'span': {'offset': 1680, 'length': 1}}, {'content': '話', 'polygon': [1.4186, 6.6768, 1.4731, 6.6767, 1.4724, 6.7626, 1.418, 6.7626], 'confidence': 0.996, 'span': {'offset': 1681, 'length': 1}}, {'content': 'を', 'polygon': [1.4968, 6.6767, 1.5513, 6.6771, 1.5506, 6.763, 1.4961, 6.7626], 'confidence': 0.994, 'span': {'offset': 1682, 'length': 1}}, {'content': '聞', 'polygon': [1.5527, 6.6771, 1.6072, 6.6775, 1.6066, 6.7633, 1.552, 6.763], 'confidence': 0.996, 'span': {'offset': 1683, 'length': 1}}, {'content': 'き', 'polygon': [1.6198, 6.6775, 1.6631, 6.6778, 1.6625, 6.7637, 1.6191, 6.7634], 'confidence': 0.993, 'span': {'offset': 1684, 'length': 1}}, {'content': 'に', 'polygon': [1.6645, 6.6778, 1.7189, 6.6782, 1.7184, 6.7638, 1.6639, 6.7637], 'confidence': 0.994, 'span': {'offset': 1685, 'length': 1}}, {'content': '来', 'polygon': [1.7427, 6.6782, 1.7972, 6.6782, 1.7966, 6.7638, 1.7421, 6.7638], 'confidence': 0.995, 'span': {'offset': 1686, 'length': 1}}, {'content': 'る', 'polygon': [1.8098, 6.6782, 1.8531, 6.6781, 1.8525, 6.7638, 1.8092, 6.7638], 'confidence': 0.996, 'span': {'offset': 1687, 'length': 1}}, {'content': 'よ', 'polygon': [1.8545, 6.6781, 1.9089, 6.6781, 1.9085, 6.7638, 1.8539, 6.7638], 'confidence': 0.994, 'span': {'offset': 1688, 'length': 1}}, {'content': 'う', 'polygon': [1.9103, 6.6781, 1.9537, 6.6781, 1.9532, 6.7638, 1.9099, 6.7638], 'confidence': 0.996, 'span': {'offset': 1689, 'length': 1}}, {'content': 'に', 'polygon': [1.9551, 6.6781, 2.0095, 6.6781, 2.0091, 6.7638, 1.9546, 6.7638], 'confidence': 0.996, 'span': {'offset': 1690, 'length': 1}}, {'content': 'な', 'polygon': [2.0221, 6.6781, 2.0766, 6.6782, 2.0762, 6.7638, 2.0217, 6.7638], 'confidence': 0.994, 'span': {'offset': 1691, 'length': 1}}, {'content': 'り', 'polygon': [2.078, 6.6782, 2.1325, 6.6782, 2.1321, 6.7638, 2.0776, 6.7638], 'confidence': 0.996, 'span': {'offset': 1692, 'length': 1}}, {'content': 'ま', 'polygon': [2.1339, 6.6782, 2.166, 6.6782, 2.1656, 6.7638, 2.1335, 6.7638], 'confidence': 0.996, 'span': {'offset': 1693, 'length': 1}}, {'content': 'し', 'polygon': [2.1674, 6.6782, 2.2331, 6.6782, 2.2327, 6.7638, 2.167, 6.7638], 'confidence': 0.994, 'span': {'offset': 1694, 'length': 1}}, {'content': 'た', 'polygon': [2.2345, 6.6781, 2.2778, 6.6781, 2.2774, 6.7638, 2.2341, 6.7638], 'confidence': 0.996, 'span': {'offset': 1695, 'length': 1}}, {'content': '。', 'polygon': [2.2792, 6.6781, 2.3239, 6.678, 2.3235, 6.7638, 2.2788, 6.7638], 'confidence': 0.996, 'span': {'offset': 1696, 'length': 1}}, {'content': 'ミ', 'polygon': [2.3434, 6.678, 2.3895, 6.6779, 2.3892, 6.7637, 2.3431, 6.7638], 'confidence': 0.991, 'span': {'offset': 1697, 'length': 1}}, {'content': 'ナ', 'polygon': [2.3909, 6.6779, 2.4343, 6.6779, 2.4339, 6.7637, 2.3906, 6.7637], 'confidence': 0.995, 'span': {'offset': 1698, 'length': 1}}, {'content': 'は', 'polygon': [2.4356, 6.6779, 2.4901, 6.6779, 2.4897, 6.7636, 2.4353, 6.7637], 'confidence': 0.995, 'span': {'offset': 1699, 'length': 1}}, {'content': '、', 'polygon': [2.4915, 6.6779, 2.5572, 6.678, 2.5567, 6.7636, 2.4911, 6.7636], 'confidence': 0.995, 'span': {'offset': 1700, 'length': 1}}, {'content': '海', 'polygon': [2.5698, 6.678, 2.6243, 6.678, 2.6238, 6.7635, 2.5693, 6.7636], 'confidence': 0.996, 'span': {'offset': 1701, 'length': 1}}, {'content': 'の', 'polygon': [2.6257, 6.678, 2.6801, 6.6781, 2.6796, 6.7634, 2.6252, 6.7635], 'confidence': 0.996, 'span': {'offset': 1702, 'length': 1}}, {'content': '声', 'polygon': [2.6927, 6.6781, 2.7472, 6.6781, 2.7466, 6.7632, 2.6922, 6.7634], 'confidence': 0.996, 'span': {'offset': 1703, 'length': 1}}, {'content': 'を', 'polygon': [2.7709, 6.6781, 2.8143, 6.6782, 2.8136, 6.763, 2.7703, 6.7631], 'confidence': 0.991, 'span': {'offset': 1704, 'length': 1}}, {'content': '聞', 'polygon': [2.8157, 6.6782, 2.8813, 6.6782, 2.8806, 6.7629, 2.815, 6.763], 'confidence': 0.993, 'span': {'offset': 1705, 'length': 1}}, {'content': 'く', 'polygon': [2.8827, 6.6782, 2.926, 6.678, 2.9253, 6.7629, 2.882, 6.7629], 'confidence': 0.942, 'span': {'offset': 1706, 'length': 1}}, {'content': '能', 'polygon': [2.9274, 6.678, 2.9819, 6.6778, 2.9812, 6.763, 2.9267, 6.7629], 'confidence': 0.996, 'span': {'offset': 1707, 'length': 1}}, {'content': '力', 'polygon': [3.0057, 6.6777, 3.0601, 6.6775, 3.0594, 6.763, 3.0049, 6.763], 'confidence': 0.995, 'span': {'offset': 1708, 'length': 1}}, {'content': 'を', 'polygon': [3.0727, 6.6775, 3.1272, 6.6773, 3.1265, 6.7631, 3.072, 6.763], 'confidence': 0.996, 'span': {'offset': 1709, 'length': 1}}, {'content': '持', 'polygon': [3.1398, 6.6773, 3.1943, 6.6771, 3.1936, 6.7631, 3.1391, 6.7631], 'confidence': 0.996, 'span': {'offset': 1710, 'length': 1}}, {'content': 'つ', 'polygon': [3.1957, 6.6771, 3.2501, 6.677, 3.2495, 6.7632, 3.195, 6.7631], 'confidence': 0.987, 'span': {'offset': 1711, 'length': 1}}, {'content': '子', 'polygon': [3.2515, 6.677, 3.3172, 6.6769, 3.3166, 6.7632, 3.2509, 6.7632], 'confidence': 0.995, 'span': {'offset': 1712, 'length': 1}}, {'content': '供', 'polygon': [3.341, 6.6768, 3.3954, 6.677, 3.3948, 6.7628, 3.3403, 6.7632], 'confidence': 0.996, 'span': {'offset': 1713, 'length': 1}}, {'content': 'た', 'polygon': [3.408, 6.6771, 3.4625, 6.6773, 3.4618, 6.7624, 3.4073, 6.7627], 'confidence': 0.996, 'span': {'offset': 1714, 'length': 1}}, {'content': 'ち', 'polygon': [3.4639, 6.6773, 3.5184, 6.6775, 3.5176, 6.762, 3.4632, 6.7624], 'confidence': 0.995, 'span': {'offset': 1715, 'length': 1}}, {'content': 'を', 'polygon': [3.5198, 6.6775, 3.5743, 6.6777, 3.5734, 6.7617, 3.519, 6.762], 'confidence': 0.996, 'span': {'offset': 1716, 'length': 1}}, {'content': '見', 'polygon': [3.5757, 6.6777, 3.6413, 6.6779, 3.6405, 6.762, 3.5748, 6.7617], 'confidence': 0.995, 'span': {'offset': 1717, 'length': 1}}, {'content': '出', 'polygon': [3.6539, 6.678, 3.7084, 6.6781, 3.7076, 6.7623, 3.6531, 6.762], 'confidence': 0.996, 'span': {'offset': 1718, 'length': 1}}, {'content': 'し', 'polygon': [3.7098, 6.6781, 3.7643, 6.6783, 3.7634, 6.7625, 3.7089, 6.7623], 'confidence': 0.996, 'span': {'offset': 1719, 'length': 1}}, {'content': '、', 'polygon': [3.7657, 6.6783, 3.8002, 6.6785, 3.8002, 6.7626, 3.7648, 6.7625], 'confidence': 0.996, 'span': {'offset': 1720, 'length': 1}}, {'content': 'そ', 'polygon': [0.5669, 6.7652, 0.6132, 6.7651, 0.6127, 6.8487, 0.5664, 6.8484], 'confidence': 0.995, 'span': {'offset': 1722, 'length': 1}}, {'content': 'の', 'polygon': [0.6146, 6.7651, 0.6692, 6.765, 0.6689, 6.8491, 0.6141, 6.8487], 'confidence': 0.996, 'span': {'offset': 1723, 'length': 1}}, {'content': '才', 'polygon': [0.6818, 6.765, 0.7365, 6.7649, 0.7362, 6.8495, 0.6815, 6.8491], 'confidence': 0.995, 'span': {'offset': 1724, 'length': 1}}, {'content': '能', 'polygon': [0.7603, 6.7649, 0.8149, 6.7647, 0.8148, 6.8499, 0.7601, 6.8496], 'confidence': 0.996, 'span': {'offset': 1725, 'length': 1}}, {'content': 'を', 'polygon': [0.8388, 6.7646, 0.8822, 6.7644, 0.882, 6.8498, 0.8386, 6.8498], 'confidence': 0.996, 'span': {'offset': 1726, 'length': 1}}, {'content': '育', 'polygon': [0.8836, 6.7644, 0.9607, 6.764, 0.9605, 6.8497, 0.8834, 6.8498], 'confidence': 0.983, 'span': {'offset': 1727, 'length': 1}}, {'content': 'て', 'polygon': [0.9621, 6.764, 1.0167, 6.7637, 1.0165, 6.8496, 0.9619, 6.8497], 'confidence': 0.995, 'span': {'offset': 1728, 'length': 1}}, {'content': 'る', 'polygon': [1.0181, 6.7637, 1.0727, 6.7636, 1.0725, 6.8495, 1.0179, 6.8496], 'confidence': 0.996, 'span': {'offset': 1729, 'length': 1}}, {'content': 'こ', 'polygon': [1.0741, 6.7636, 1.1176, 6.7636, 1.1172, 6.8494, 1.0739, 6.8495], 'confidence': 0.996, 'span': {'offset': 1730, 'length': 1}}, {'content': 'と', 'polygon': [1.119, 6.7636, 1.1624, 6.7636, 1.162, 6.8494, 1.1186, 6.8494], 'confidence': 0.996, 'span': {'offset': 1731, 'length': 1}}, {'content': 'に', 'polygon': [1.1638, 6.7636, 1.2185, 6.7636, 1.2179, 6.8493, 1.1634, 6.8494], 'confidence': 0.995, 'span': {'offset': 1732, 'length': 1}}, {'content': 'も', 'polygon': [1.2311, 6.7636, 1.2857, 6.7635, 1.285, 6.8492, 1.2305, 6.8493], 'confidence': 0.996, 'span': {'offset': 1733, 'length': 1}}, {'content': '力', 'polygon': [1.2871, 6.7635, 1.3418, 6.7635, 1.341, 6.8493, 1.2864, 6.8492], 'confidence': 0.991, 'span': {'offset': 1734, 'length': 1}}, {'content': 'を', 'polygon': [1.3656, 6.7635, 1.4202, 6.7634, 1.4194, 6.8495, 1.3648, 6.8494], 'confidence': 0.995, 'span': {'offset': 1735, 'length': 1}}, {'content': '注', 'polygon': [1.4216, 6.7634, 1.4763, 6.7634, 1.4753, 6.8496, 1.4208, 6.8495], 'confidence': 0.996, 'span': {'offset': 1736, 'length': 1}}, {'content': 'ぎ', 'polygon': [1.4889, 6.7634, 1.5435, 6.7635, 1.5426, 6.8498, 1.4879, 6.8496], 'confidence': 0.993, 'span': {'offset': 1737, 'length': 1}}, {'content': 'ま', 'polygon': [1.5449, 6.7635, 1.5884, 6.7637, 1.5874, 6.8499, 1.544, 6.8498], 'confidence': 0.996, 'span': {'offset': 1738, 'length': 1}}, {'content': 'し', 'polygon': [1.5898, 6.7637, 1.6444, 6.7639, 1.6435, 6.8501, 1.5888, 6.8499], 'confidence': 0.996, 'span': {'offset': 1739, 'length': 1}}, {'content': 'た', 'polygon': [1.6458, 6.7639, 1.7004, 6.7642, 1.6996, 6.8503, 1.6449, 6.8501], 'confidence': 0.996, 'span': {'offset': 1740, 'length': 1}}, {'content': '。', 'polygon': [1.7018, 6.7642, 1.7565, 6.7643, 1.7556, 6.8505, 1.701, 6.8503], 'confidence': 0.996, 'span': {'offset': 1741, 'length': 1}}, {'content': '海', 'polygon': [1.7691, 6.7643, 1.8237, 6.7642, 1.823, 6.8505, 1.7683, 6.8505], 'confidence': 0.996, 'span': {'offset': 1742, 'length': 1}}, {'content': 'と', 'polygon': [1.8251, 6.7642, 1.8798, 6.7642, 1.879, 6.8505, 1.8244, 6.8505], 'confidence': 0.996, 'span': {'offset': 1743, 'length': 1}}, {'content': '人', 'polygon': [1.8812, 6.7642, 1.9358, 6.7641, 1.9351, 6.8505, 1.8805, 6.8505], 'confidence': 0.996, 'span': {'offset': 1744, 'length': 1}}, {'content': '間', 'polygon': [1.9484, 6.7641, 2.0031, 6.7641, 2.0025, 6.8505, 1.9478, 6.8505], 'confidence': 0.995, 'span': {'offset': 1745, 'length': 1}}, {'content': 'の', 'polygon': [2.0157, 6.7641, 2.0703, 6.7641, 2.0698, 6.8505, 2.0151, 6.8505], 'confidence': 0.996, 'span': {'offset': 1746, 'length': 1}}, {'content': '世', 'polygon': [2.083, 6.7642, 2.1376, 6.7642, 2.1371, 6.8505, 2.0824, 6.8505], 'confidence': 0.996, 'span': {'offset': 1747, 'length': 1}}, {'content': '界', 'polygon': [2.1614, 6.7642, 2.2161, 6.7643, 2.2156, 6.8505, 2.1609, 6.8505], 'confidence': 0.996, 'span': {'offset': 1748, 'length': 1}}, {'content': 'を', 'polygon': [2.2399, 6.7643, 2.2833, 6.7644, 2.2828, 6.8505, 2.2394, 6.8505], 'confidence': 0.996, 'span': {'offset': 1749, 'length': 1}}, {'content': 'つ', 'polygon': [2.2847, 6.7644, 2.3394, 6.7644, 2.3388, 6.8505, 2.2842, 6.8505], 'confidence': 0.996, 'span': {'offset': 1750, 'length': 1}}, {'content': 'な', 'polygon': [2.3408, 6.7644, 2.3954, 6.7645, 2.3948, 6.8505, 2.3402, 6.8505], 'confidence': 0.996, 'span': {'offset': 1751, 'length': 1}}, {'content': 'ぐ', 'polygon': [2.408, 6.7645, 2.4627, 6.7646, 2.462, 6.8505, 2.4074, 6.8505], 'confidence': 0.996, 'span': {'offset': 1752, 'length': 1}}, {'content': '架', 'polygon': [2.4641, 6.7646, 2.5187, 6.7646, 2.518, 6.8505, 2.4634, 6.8505], 'confidence': 0.996, 'span': {'offset': 1753, 'length': 1}}, {'content': 'け', 'polygon': [2.5201, 6.7646, 2.5747, 6.7647, 2.574, 6.8504, 2.5194, 6.8505], 'confidence': 0.996, 'span': {'offset': 1754, 'length': 1}}, {'content': '橋', 'polygon': [2.5874, 6.7647, 2.6532, 6.7647, 2.6524, 6.85, 2.5866, 6.8504], 'confidence': 0.995, 'span': {'offset': 1755, 'length': 1}}, {'content': 'を', 'polygon': [2.6546, 6.7647, 2.698, 6.7648, 2.6972, 6.8499, 2.6538, 6.85], 'confidence': 0.992, 'span': {'offset': 1756, 'length': 1}}, {'content': '、', 'polygon': [2.6994, 6.7648, 2.7541, 6.7649, 2.7533, 6.85, 2.6986, 6.8499], 'confidence': 0.996, 'span': {'offset': 1757, 'length': 1}}, {'content': '次', 'polygon': [2.7555, 6.7649, 2.8101, 6.765, 2.8094, 6.8502, 2.7547, 6.85], 'confidence': 0.996, 'span': {'offset': 1758, 'length': 1}}, {'content': 'の', 'polygon': [2.8227, 6.7651, 2.8774, 6.7652, 2.8766, 6.8504, 2.822, 6.8502], 'confidence': 0.995, 'span': {'offset': 1759, 'length': 1}}, {'content': '世', 'polygon': [2.89, 6.7652, 2.9446, 6.7652, 2.9439, 6.8505, 2.8892, 6.8504], 'confidence': 0.995, 'span': {'offset': 1760, 'length': 1}}, {'content': '代', 'polygon': [2.9685, 6.7651, 3.0231, 6.7649, 3.0223, 6.8504, 2.9677, 6.8505], 'confidence': 0.996, 'span': {'offset': 1761, 'length': 1}}, {'content': 'へ', 'polygon': [3.0357, 6.7648, 3.0904, 6.7646, 3.0895, 6.8504, 3.0349, 6.8504], 'confidence': 0.983, 'span': {'offset': 1762, 'length': 1}}, {'content': 'と', 'polygon': [3.0918, 6.7646, 3.1464, 6.7644, 3.1455, 6.8503, 3.0909, 6.8504], 'confidence': 0.995, 'span': {'offset': 1763, 'length': 1}}, {'content': '繋', 'polygon': [3.1478, 6.7644, 3.2025, 6.7645, 3.2015, 6.8505, 3.1469, 6.8503], 'confidence': 0.949, 'span': {'offset': 1764, 'length': 1}}, {'content': 'い', 'polygon': [3.2039, 6.7645, 3.2585, 6.7646, 3.2576, 6.8505, 3.2029, 6.8505], 'confidence': 0.996, 'span': {'offset': 1765, 'length': 1}}, {'content': 'で', 'polygon': [3.2823, 6.7647, 3.3258, 6.7648, 3.3248, 6.8505, 3.2814, 6.8505], 'confidence': 0.996, 'span': {'offset': 1766, 'length': 1}}, {'content': 'い', 'polygon': [3.3272, 6.7648, 3.3818, 6.7649, 3.3808, 6.8505, 3.3262, 6.8505], 'confidence': 0.996, 'span': {'offset': 1767, 'length': 1}}, {'content': 'っ', 'polygon': [3.3944, 6.765, 3.4378, 6.765, 3.4368, 6.8505, 3.3934, 6.8505], 'confidence': 0.996, 'span': {'offset': 1768, 'length': 1}}, {'content': 'た', 'polygon': [3.4392, 6.765, 3.4939, 6.7651, 3.4929, 6.8501, 3.4382, 6.8505], 'confidence': 0.996, 'span': {'offset': 1769, 'length': 1}}, {'content': 'の', 'polygon': [3.4953, 6.7651, 3.5499, 6.7651, 3.5489, 6.8497, 3.4943, 6.8501], 'confidence': 0.996, 'span': {'offset': 1770, 'length': 1}}, {'content': 'で', 'polygon': [3.5625, 6.7651, 3.6172, 6.7652, 3.6161, 6.8491, 3.5615, 6.8495], 'confidence': 0.996, 'span': {'offset': 1771, 'length': 1}}, {'content': 'す', 'polygon': [3.6186, 6.7652, 3.662, 6.7651, 3.661, 6.8491, 3.6175, 6.8491], 'confidence': 0.996, 'span': {'offset': 1772, 'length': 1}}, {'content': '。', 'polygon': [3.6634, 6.7651, 3.7083, 6.7651, 3.7072, 6.8491, 3.6624, 6.8491], 'confidence': 0.996, 'span': {'offset': 1773, 'length': 1}}, {'content': '歳', 'polygon': [3.7293, 6.7651, 3.7853, 6.7651, 3.7842, 6.8492, 3.7282, 6.8491], 'confidence': 0.994, 'span': {'offset': 1774, 'length': 1}}, {'content': 'を', 'polygon': [3.7979, 6.7651, 3.8602, 6.7651, 3.8602, 6.8492, 3.7968, 6.8492], 'confidence': 0.996, 'span': {'offset': 1775, 'length': 1}}, {'content': '重', 'polygon': [0.5669, 6.8524, 0.6474, 6.852, 0.6468, 6.9362, 0.5661, 6.9357], 'confidence': 0.994, 'span': {'offset': 1777, 'length': 1}}, {'content': 'ね', 'polygon': [0.6489, 6.852, 0.7039, 6.8518, 0.7034, 6.9366, 0.6482, 6.9363], 'confidence': 0.995, 'span': {'offset': 1778, 'length': 1}}, {'content': 'た', 'polygon': [0.7053, 6.8518, 0.7604, 6.8516, 0.7601, 6.937, 0.7048, 6.9367], 'confidence': 0.996, 'span': {'offset': 1779, 'length': 1}}, {'content': 'ミ', 'polygon': [0.7618, 6.8516, 0.8056, 6.8514, 0.8053, 6.9373, 0.7615, 6.9371], 'confidence': 0.995, 'span': {'offset': 1780, 'length': 1}}, {'content': 'ナ', 'polygon': [0.807, 6.8514, 0.8508, 6.8515, 0.8505, 6.9374, 0.8068, 6.9373], 'confidence': 0.991, 'span': {'offset': 1781, 'length': 1}}, {'content': 'は', 'polygon': [0.8522, 6.8515, 0.9186, 6.8517, 0.9182, 6.9374, 0.8519, 6.9374], 'confidence': 0.996, 'span': {'offset': 1782, 'length': 1}}, {'content': '、', 'polygon': [0.92, 6.8517, 0.9638, 6.8518, 0.9634, 6.9375, 0.9196, 6.9374], 'confidence': 0.996, 'span': {'offset': 1783, 'length': 1}}, {'content': 'い', 'polygon': [0.9652, 6.8518, 1.0203, 6.8519, 1.0198, 6.9375, 0.9648, 6.9375], 'confidence': 0.995, 'span': {'offset': 1784, 'length': 1}}, {'content': 'つ', 'polygon': [1.033, 6.8519, 1.0768, 6.8518, 1.0762, 6.9374, 1.0325, 6.9375], 'confidence': 0.995, 'span': {'offset': 1785, 'length': 1}}, {'content': 'し', 'polygon': [1.0782, 6.8518, 1.1446, 6.8516, 1.1438, 6.9373, 1.0776, 6.9374], 'confidence': 0.994, 'span': {'offset': 1786, 'length': 1}}, {'content': 'か', 'polygon': [1.146, 6.8516, 1.201, 6.8515, 1.2002, 6.9371, 1.1453, 6.9373], 'confidence': 0.99, 'span': {'offset': 1787, 'length': 1}}, {'content': '「', 'polygon': [1.2025, 6.8515, 1.2575, 6.8513, 1.2566, 6.937, 1.2016, 6.9371], 'confidence': 0.995, 'span': {'offset': 1788, 'length': 1}}, {'content': '海', 'polygon': [1.259, 6.8513, 1.314, 6.8512, 1.313, 6.9371, 1.258, 6.937], 'confidence': 0.996, 'span': {'offset': 1789, 'length': 1}}, {'content': 'の', 'polygon': [1.3154, 6.8512, 1.3705, 6.8512, 1.3694, 6.9373, 1.3144, 6.9371], 'confidence': 0.996, 'span': {'offset': 1790, 'length': 1}}, {'content': '巫', 'polygon': [1.3832, 6.8511, 1.4383, 6.8511, 1.437, 6.9375, 1.3821, 6.9373], 'confidence': 0.995, 'span': {'offset': 1791, 'length': 1}}, {'content': '女', 'polygon': [1.4623, 6.851, 1.5174, 6.851, 1.516, 6.9377, 1.461, 6.9376], 'confidence': 0.996, 'span': {'offset': 1792, 'length': 1}}, {'content': '」', 'polygon': [1.5188, 6.851, 1.5626, 6.8511, 1.5612, 6.9378, 1.5174, 6.9377], 'confidence': 0.995, 'span': {'offset': 1793, 'length': 1}}, {'content': 'と', 'polygon': [1.564, 6.8511, 1.6191, 6.8511, 1.6177, 6.938, 1.5626, 6.9378], 'confidence': 0.996, 'span': {'offset': 1794, 'length': 1}}, {'content': '呼', 'polygon': [1.6205, 6.8511, 1.6756, 6.8512, 1.6741, 6.9381, 1.6191, 6.938], 'confidence': 0.996, 'span': {'offset': 1795, 'length': 1}}, {'content': 'ば', 'polygon': [1.677, 6.8512, 1.7321, 6.8512, 1.7306, 6.9382, 1.6756, 6.9381], 'confidence': 0.994, 'span': {'offset': 1796, 'length': 1}}, {'content': 'れ', 'polygon': [1.7448, 6.8512, 1.7998, 6.8512, 1.7985, 6.9385, 1.7433, 6.9383], 'confidence': 0.995, 'span': {'offset': 1797, 'length': 1}}, {'content': 'る', 'polygon': [1.8126, 6.8512, 1.8676, 6.8512, 1.8664, 6.9387, 1.8112, 6.9385], 'confidence': 0.996, 'span': {'offset': 1798, 'length': 1}}, {'content': 'よ', 'polygon': [1.869, 6.8512, 1.9241, 6.8512, 1.923, 6.9389, 1.8678, 6.9387], 'confidence': 0.996, 'span': {'offset': 1799, 'length': 1}}, {'content': 'う', 'polygon': [1.9255, 6.8512, 1.958, 6.8512, 1.9569, 6.939, 1.9244, 6.9389], 'confidence': 0.996, 'span': {'offset': 1800, 'length': 1}}, {'content': 'に', 'polygon': [1.9594, 6.8512, 2.0258, 6.8513, 2.0248, 6.9389, 1.9583, 6.939], 'confidence': 0.997, 'span': {'offset': 1801, 'length': 1}}, {'content': 'な', 'polygon': [2.0385, 6.8513, 2.0823, 6.8514, 2.0814, 6.9387, 2.0375, 6.9388], 'confidence': 0.995, 'span': {'offset': 1802, 'length': 1}}, {'content': 'り', 'polygon': [2.0837, 6.8514, 2.1388, 6.8515, 2.1379, 6.9386, 2.0828, 6.9387], 'confidence': 0.996, 'span': {'offset': 1803, 'length': 1}}, {'content': 'ま', 'polygon': [2.1402, 6.8515, 2.184, 6.8516, 2.1832, 6.9385, 2.1393, 6.9386], 'confidence': 0.996, 'span': {'offset': 1804, 'length': 1}}, {'content': 'し', 'polygon': [2.1854, 6.8516, 2.2405, 6.8517, 2.2397, 6.9385, 2.1846, 6.9384], 'confidence': 0.996, 'span': {'offset': 1805, 'length': 1}}, {'content': 'た', 'polygon': [2.2419, 6.8517, 2.297, 6.8518, 2.2962, 6.9386, 2.2411, 6.9385], 'confidence': 0.996, 'span': {'offset': 1806, 'length': 1}}, {'content': '。', 'polygon': [2.2984, 6.8518, 2.3535, 6.8518, 2.3527, 6.9388, 2.2976, 6.9386], 'confidence': 0.995, 'span': {'offset': 1807, 'length': 1}}, {'content': '彼', 'polygon': [2.3549, 6.8518, 2.4099, 6.8519, 2.4092, 6.9389, 2.3541, 6.9388], 'confidence': 0.996, 'span': {'offset': 1808, 'length': 1}}, {'content': '女', 'polygon': [2.434, 6.8519, 2.489, 6.8519, 2.4882, 6.9388, 2.4332, 6.9389], 'confidence': 0.996, 'span': {'offset': 1809, 'length': 1}}, {'content': 'の', 'polygon': [2.4904, 6.8519, 2.5455, 6.8518, 2.5446, 6.9386, 2.4896, 6.9388], 'confidence': 0.996, 'span': {'offset': 1810, 'length': 1}}, {'content': '周', 'polygon': [2.5582, 6.8518, 2.6133, 6.8518, 2.6122, 6.9384, 2.5573, 6.9386], 'confidence': 0.996, 'span': {'offset': 1811, 'length': 1}}, {'content': 'り', 'polygon': [2.626, 6.8518, 2.6698, 6.8517, 2.6686, 6.9383, 2.6249, 6.9384], 'confidence': 0.996, 'span': {'offset': 1812, 'length': 1}}, {'content': 'に', 'polygon': [2.6712, 6.8517, 2.7263, 6.8517, 2.7251, 6.9381, 2.6701, 6.9383], 'confidence': 0.996, 'span': {'offset': 1813, 'length': 1}}, {'content': 'は', 'polygon': [2.7277, 6.8517, 2.7828, 6.8516, 2.7816, 6.9378, 2.7266, 6.938], 'confidence': 0.992, 'span': {'offset': 1814, 'length': 1}}, {'content': '常', 'polygon': [2.8068, 6.8516, 2.8619, 6.8515, 2.8607, 6.9375, 2.8057, 6.9377], 'confidence': 0.996, 'span': {'offset': 1815, 'length': 1}}, {'content': 'に', 'polygon': [2.8633, 6.8515, 2.9184, 6.8514, 2.9172, 6.9375, 2.8621, 6.9375], 'confidence': 0.996, 'span': {'offset': 1816, 'length': 1}}, {'content': '、', 'polygon': [2.9198, 6.8514, 2.9749, 6.8514, 2.9737, 6.9376, 2.9186, 6.9375], 'confidence': 0.996, 'span': {'offset': 1817, 'length': 1}}, {'content': '海', 'polygon': [2.9876, 6.8514, 3.0426, 6.8514, 3.0414, 6.9378, 2.9864, 6.9377], 'confidence': 0.996, 'span': {'offset': 1818, 'length': 1}}, {'content': 'の', 'polygon': [3.0441, 6.8514, 3.0991, 6.8514, 3.0978, 6.938, 3.0428, 6.9378], 'confidence': 0.996, 'span': {'offset': 1819, 'length': 1}}, {'content': '精', 'polygon': [3.1231, 6.8514, 3.1782, 6.8514, 3.1769, 6.9381, 3.1218, 6.938], 'confidence': 0.996, 'span': {'offset': 1820, 'length': 1}}, {'content': '霊', 'polygon': [3.1909, 6.8514, 3.246, 6.8514, 3.2446, 6.9382, 3.1896, 6.9381], 'confidence': 0.994, 'span': {'offset': 1821, 'length': 1}}, {'content': 'た', 'polygon': [3.2587, 6.8514, 3.3138, 6.8514, 3.3124, 6.9383, 3.2573, 6.9382], 'confidence': 0.996, 'span': {'offset': 1822, 'length': 1}}, {'content': 'ち', 'polygon': [3.3152, 6.8514, 3.359, 6.8514, 3.3576, 6.9384, 3.3138, 6.9383], 'confidence': 0.995, 'span': {'offset': 1823, 'length': 1}}, {'content': 'の', 'polygon': [3.3604, 6.8514, 3.4155, 6.8514, 3.4141, 6.9381, 3.359, 6.9384], 'confidence': 0.995, 'span': {'offset': 1824, 'length': 1}}, {'content': '優', 'polygon': [3.4395, 6.8514, 3.4946, 6.8515, 3.4932, 6.9378, 3.4381, 6.938], 'confidence': 0.995, 'span': {'offset': 1825, 'length': 1}}, {'content': 'し', 'polygon': [3.496, 6.8515, 3.5398, 6.8515, 3.5385, 6.9376, 3.4947, 6.9378], 'confidence': 0.995, 'span': {'offset': 1826, 'length': 1}}, {'content': 'い', 'polygon': [3.5412, 6.8516, 3.5962, 6.8516, 3.595, 6.9373, 3.5399, 6.9376], 'confidence': 0.996, 'span': {'offset': 1827, 'length': 1}}, {'content': '気', 'polygon': [3.6203, 6.8517, 3.6866, 6.8521, 3.6855, 6.9374, 3.619, 6.9374], 'confidence': 0.995, 'span': {'offset': 1828, 'length': 1}}, {'content': '配', 'polygon': [3.688, 6.8521, 3.7431, 6.8523, 3.742, 6.9374, 3.6869, 6.9374], 'confidence': 0.996, 'span': {'offset': 1829, 'length': 1}}, {'content': 'が', 'polygon': [3.7558, 6.8524, 3.8268, 6.8527, 3.8268, 6.9375, 3.7547, 6.9375], 'confidence': 0.995, 'span': {'offset': 1830, 'length': 1}}, {'content': '漂', 'polygon': [0.5669, 6.9443, 0.6306, 6.9454, 0.6307, 7.0247, 0.5671, 7.0247], 'confidence': 0.996, 'span': {'offset': 1832, 'length': 1}}, {'content': 'っ', 'polygon': [0.6423, 6.9453, 0.6826, 6.9456, 0.6827, 7.0249, 0.6424, 7.0247], 'confidence': 0.996, 'span': {'offset': 1833, 'length': 1}}, {'content': 'て', 'polygon': [0.6839, 6.9456, 0.7346, 6.9465, 0.7347, 7.0257, 0.684, 7.0249], 'confidence': 0.983, 'span': {'offset': 1834, 'length': 1}}, {'content': 'い', 'polygon': [0.7359, 6.9465, 0.7866, 6.9467, 0.7868, 7.0257, 0.736, 7.0257], 'confidence': 0.995, 'span': {'offset': 1835, 'length': 1}}, {'content': 'ま', 'polygon': [0.8087, 6.9471, 0.849, 6.9472, 0.8492, 7.0269, 0.8089, 7.026], 'confidence': 0.996, 'span': {'offset': 1836, 'length': 1}}, {'content': 'し', 'polygon': [0.8503, 6.9472, 0.9115, 6.9476, 0.9116, 7.0267, 0.8505, 7.0269], 'confidence': 0.993, 'span': {'offset': 1837, 'length': 1}}, {'content': 'た', 'polygon': [0.9128, 6.9476, 0.9635, 6.9479, 0.9635, 7.0268, 0.9129, 7.0267], 'confidence': 0.996, 'span': {'offset': 1838, 'length': 1}}, {'content': '。', 'polygon': [0.9648, 6.9478, 1.01, 6.9475, 1.01, 7.027, 0.9648, 7.0268], 'confidence': 0.996, 'span': {'offset': 1839, 'length': 1}}], 'selectionMarks': [{'state': 'selected', 'polygon': [6.6632, 4.2789, 6.7319, 4.2827, 6.7344, 4.3444, 6.6625, 4.3442], 'confidence': 0.484, 'span': {'offset': 805, 'length': 1}}, {'state': 'selected', 'polygon': [6.0106, 4.8649, 6.0799, 4.8656, 6.0814, 4.927, 6.0096, 4.9268], 'confidence': 0.418, 'span': {'offset': 940, 'length': 1}}], 'lines': [{'content': '『海の声を聴く少女』', 'polygon': [0.4539, 1.0513, 1.5334, 1.0576, 1.5328, 1.2009, 0.4534, 1.1945], 'spans': [{'offset': 2, 'length': 10}]}, {'content': '遥か昔、海辺の小さな村に、ミナという名の少女が住んでいました。ミナは生まれながらにして耳が不自由で、人々の声を聞くことはできませんでしたが、不思議なことに海の', 'polygon': [0.4524, 1.2213, 10.0214, 1.2201, 10.0215, 1.3713, 0.4524, 1.3734], 'spans': [{'offset': 14, 'length': 79}]}, {'content': '声だけは聞こえるのです。', 'polygon': [0.4523, 1.385, 1.8847, 1.3886, 1.8844, 1.529, 0.452, 1.5253], 'spans': [{'offset': 94, 'length': 12}]}, {'content': '毎日、ミナは浜辺に座り、波の音に耳を傾けていました。ざわざわと寄せては返す波の音は、ミナにとって美しい歌のように聞こえました。時には激しく、時には穏やかに、海は様々な表情を', 'polygon': [0.4459, 1.5366, 9.9688, 1.5354, 9.9688, 1.6849, 0.4459, 1.6861], 'spans': [{'offset': 108, 'length': 86}]}, {'content': '見せてくれます。', 'polygon': [0.4532, 1.7017, 1.2653, 1.7045, 1.2648, 1.8415, 0.4527, 1.8387], 'spans': [{'offset': 195, 'length': 8}]}, {'content': 'ある日、ミナは海から不思議な声を聞きました。それは人間の声でも動物の鳴き声でもなく、どこか神秘的な響きを持っていました。好奇心に駆られたミナは、その声の正体を探ろうと決心し', 'polygon': [0.4483, 1.8588, 10.0739, 1.8568, 10.0739, 2.0073, 0.4484, 2.01], 'spans': [{'offset': 205, 'length': 86}]}, {'content': 'ました。', 'polygon': [0.453, 2.029, 0.8146, 2.0301, 0.8143, 2.1615, 0.4527, 2.1604], 'spans': [{'offset': 292, 'length': 4}]}, {'content': '村の人々は、ミナが海の声を聞けると知って驚きました。多くの人は信じられないという顔をしましたが、年老いた漁師のタロウじいさんだけは違いました。', 'polygon': [0.4492, 2.1832, 9.8721, 2.1834, 9.8721, 2.3356, 0.4491, 2.3353], 'spans': [{'offset': 298, 'length': 71}]}, {'content': '「昔から伝わる言い伝えがあるんじゃ」とタロウじいさんは話し始めました。「海の底には古代の神殿があって、そこに住む海の精霊が時々人間を呼ぶんだと。', 'polygon': [0.5231, 2.3435, 10.0055, 2.3471, 10.0055, 2.4985, 0.523, 2.4948], 'spans': [{'offset': 370, 'length': 72}]}, {'content': 'でも、その声が聞こえる者はめったにおらんのじゃ」', 'polygon': [0.4592, 2.5076, 3.5881, 2.5094, 3.588, 2.6612, 0.4591, 2.6594], 'spans': [{'offset': 443, 'length': 24}]}, {'content': 'Python', 'polygon': [5.8485, 3.9606, 6.2403, 3.965, 6.2393, 4.0897, 5.8471, 4.0853], 'spans': [{'offset': 689, 'length': 6}]}, {'content': 'Go', 'polygon': [6.6216, 3.9601, 6.7769, 3.9619, 6.7756, 4.0787, 6.6203, 4.0769], 'spans': [{'offset': 705, 'length': 2}]}, {'content': ':formula:', 'polygon': [7.2156, 3.9601, 7.7991, 3.9644, 7.7982, 4.088, 7.2147, 4.0837], 'spans': [{'offset': 717, 'length': 33}]}, {'content': ':formula:', 'polygon': [5.2926, 4.252, 5.4945, 4.2522, 5.4943, 4.3731, 5.2925, 4.3729], 'spans': [{'offset': 771, 'length': 9}]}, {'content': '〇', 'polygon': [6.0034, 4.2592, 6.105, 4.2592, 6.105, 4.3613, 6.0034, 4.3613], 'spans': [{'offset': 790, 'length': 1}]}, {'content': ':formula:', 'polygon': [6.6503, 4.2636, 6.7337, 4.2636, 6.7337, 4.3403, 6.6503, 4.3403], 'spans': [{'offset': 801, 'length': 3}]}, {'content': '初心者', 'polygon': [7.323, 4.2469, 7.6852, 4.2498, 7.6842, 4.3786, 7.322, 4.3757], 'spans': [{'offset': 816, 'length': 3}]}, {'content': ':formula:', 'polygon': [5.2922, 4.5442, 5.497, 4.5444, 5.4969, 4.666, 5.2921, 4.6659], 'spans': [{'offset': 840, 'length': 9}]}, {'content': ':formula:', 'polygon': [5.9898, 4.5556, 6.0997, 4.5557, 6.0996, 4.6618, 5.9897, 4.6617], 'spans': [{'offset': 859, 'length': 16}]}, {'content': '〇', 'polygon': [6.6568, 4.5525, 6.7584, 4.5525, 6.7584, 4.6546, 6.6568, 4.6546], 'spans': [{'offset': 885, 'length': 1}]}, {'content': ':formula:', 'polygon': [7.3887, 4.5441, 7.6197, 4.5473, 7.618, 4.6636, 7.387, 4.6616], 'spans': [{'offset': 896, 'length': 7}]}, {'content': 'C氏', 'polygon': [5.29, 4.8339, 5.4983, 4.8341, 5.4982, 4.9572, 5.2899, 4.957], 'spans': [{'offset': 924, 'length': 2}]}, {'content': ':formula:', 'polygon': [5.9936, 4.847, 6.0803, 4.847, 6.0803, 4.9203, 5.9936, 4.9203], 'spans': [{'offset': 936, 'length': 3}]}, {'content': '〇', 'polygon': [6.6568, 4.8442, 6.7584, 4.8442, 6.7584, 4.9463, 6.6568, 4.9463], 'spans': [{'offset': 951, 'length': 1}]}, {'content': ':formula:', 'polygon': [7.4505, 4.8452, 7.5646, 4.8458, 7.5641, 4.9482, 7.45, 4.9477], 'spans': [{'offset': 962, 'length': 16}]}, {'content': '精霊はミナに、海の秘密や自然の摂理について多くのことを教えてくれました。嵐の前兆や魚の回遊、潮の満ち引きの', 'polygon': [0.5644, 6.2338, 3.864, 6.2353, 3.864, 6.3259, 0.5643, 6.3243], 'spans': [{'offset': 1397, 'length': 53}]}, {'content': '理由など、海に関する深い知識を授けられました。そして夜が明ける頃、ミナは再び浜辺に立っていました。村人たち', 'polygon': [0.5639, 6.3257, 3.8216, 6.328, 3.8215, 6.4153, 0.5638, 6.4129], 'spans': [{'offset': 1451, 'length': 53}]}, {'content': 'は、一晩中姿を消していたミナの無事な帰還を喜びました。それからというもの、ミナは村人たちに海の声を伝える役', 'polygon': [0.5667, 6.4127, 3.8098, 6.4143, 3.8098, 6.5002, 0.5666, 6.4987], 'spans': [{'offset': 1505, 'length': 53}]}, {'content': '目を果たすようになりました。嵐の接近を予測したり、大漁の時期を知らせたりと、ミナの助言は村人たちの生活に大', 'polygon': [0.5689, 6.4991, 3.8238, 6.5006, 3.8238, 6.5871, 0.5688, 6.5857], 'spans': [{'offset': 1559, 'length': 53}]}, {'content': 'きな変化をもたらしました。年月が過ぎ、ミナは美しい大人の女性へと成長しました。彼女の噂は遠くまで広がり、多く', 'polygon': [0.5667, 6.5857, 3.8343, 6.5877, 3.8343, 6.6754, 0.5666, 6.6734], 'spans': [{'offset': 1613, 'length': 54}]}, {'content': 'の人々が海の声を聞く少女の話を聞きに来るようになりました。ミナは、海の声を聞く能力を持つ子供たちを見出し、', 'polygon': [0.566, 6.6767, 3.7984, 6.6769, 3.7984, 6.7627, 0.566, 6.7625], 'spans': [{'offset': 1668, 'length': 53}]}, {'content': 'その才能を育てることにも力を注ぎました。海と人間の世界をつなぐ架け橋を、次の世代へと繋いでいったのです。歳を', 'polygon': [0.5664, 6.7628, 3.8588, 6.7647, 3.8587, 6.8505, 0.5664, 6.8486], 'spans': [{'offset': 1722, 'length': 54}]}, {'content': '重ねたミナは、いつしか「海の巫女」と呼ばれるようになりました。彼女の周りには常に、海の精霊たちの優しい気配が', 'polygon': [0.5661, 6.8508, 3.8242, 6.8514, 3.8242, 6.938, 0.5661, 6.9373], 'spans': [{'offset': 1777, 'length': 54}]}, {'content': '漂っていました。', 'polygon': [0.5669, 6.9443, 1.01, 6.9474, 1.0097, 7.0267, 0.5667, 7.0236], 'spans': [{'offset': 1832, 'length': 8}]}], 'barcodes': [{'kind': 'QRCode', 'value': "I AM ATTEMPTING TO CREATE A LARGE LANGUAGE MODEL. \nTHIS LANGUAGE MODEL AIMS TO INCORPORATE DOMAIN KNOWLEDGE INTO A BASE MODEL, AND THEN FINE-TUNE IT FURTHER TO ENABLE CHAT FUNCTIONALITY USING THIS DOMAIN KNOWLEDGE. \nI'M NOT ENTIRELY SURE IF IT WILL BE SUCCESSFUL, BUT I'M TRYING THIS BECAUSE I WANT TO USE A LANGUAGE MODEL IN A LOCAL ENVIRONMENT. PLEASE CHEER ME ON. \n", 'span': {'offset': 1001, 'length': 394}, 'polygon': [8.6237, 3.5569, 10.4238, 3.5569, 10.4205, 5.3504, 8.6237, 5.3504], 'confidence': 1}], 'formulas': [{'kind': 'display', 'value': '\\bar { x } = \\frac { \\sum _ { i = 1 } ^ { N } x _ { i } } { N }', 'polygon': [1.1767, 3.5336, 2.2801, 3.5069, 2.2934, 4.0436, 1.1867, 4.0703], 'span': {'offset': 469, 'length': 67}, 'confidence': 0.583}, {'kind': 'display', 'value': 'S = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\left( x _ { i } - \\bar { x } \\right) ^ { 2 }', 'polygon': [1.6634, 4.207, 3.4235, 4.207, 3.4235, 4.937, 1.6634, 4.937], 'span': {'offset': 537, 'length': 96}, 'confidence': 0.764}, {'kind': 'display', 'value': '\\sigma = \\sqrt { S }', 'polygon': [2.4601, 5.3637, 3.1702, 5.3504, 3.1735, 5.5904, 2.4635, 5.6037], 'span': {'offset': 635, 'length': 24}, 'confidence': 0.87}, {'kind': 'inline', 'value': '\\mathrm { J a v a S c r i p t }', 'polygon': [7.197, 3.9536, 7.777, 3.9536, 7.777, 4.0803, 7.197, 4.0803], 'span': {'offset': 717, 'length': 33}, 'confidence': 0.669}, {'kind': 'inline', 'value': 'A \\quad', 'polygon': [5.2869, 4.2536, 5.4803, 4.2536, 5.4803, 4.3603, 5.2869, 4.3603], 'span': {'offset': 771, 'length': 9}, 'confidence': 0.46}, {'kind': 'inline', 'value': 'x', 'polygon': [6.6503, 4.2636, 6.7337, 4.2636, 6.7337, 4.3403, 6.6503, 4.3403], 'span': {'offset': 801, 'length': 3}, 'confidence': 0.87}, {'kind': 'inline', 'value': 'B \\quad', 'polygon': [5.2703, 4.527, 5.5069, 4.527, 5.5069, 4.657, 5.2703, 4.657], 'span': {'offset': 840, 'length': 9}, 'confidence': 0.87}, {'kind': 'inline', 'value': '\\bigtriangleup', 'polygon': [5.9836, 4.5436, 6.0703, 4.5436, 6.0703, 4.6636, 5.9836, 4.6636], 'span': {'offset': 859, 'length': 16}, 'confidence': 0.669}, {'kind': 'inline', 'value': 't = k', 'polygon': [7.3804, 4.5236, 7.6037, 4.5236, 7.6037, 4.6536, 7.3804, 4.6536], 'span': {'offset': 896, 'length': 7}, 'confidence': 0.46}, {'kind': 'inline', 'value': 'x', 'polygon': [5.9936, 4.847, 6.0803, 4.847, 6.0803, 4.9203, 5.9936, 4.9203], 'span': {'offset': 936, 'length': 3}, 'confidence': 0.819}, {'kind': 'inline', 'value': '\\bigtriangleup', 'polygon': [7.4437, 4.8337, 7.5504, 4.8337, 7.5504, 4.9537, 7.4437, 4.9537], 'span': {'offset': 962, 'length': 16}, 'confidence': 0.819}], 'spans': [{'offset': 0, 'length': 1841}]}]
****************************************
******************** tables
[{'rowCount': 4, 'columnCount': 4, 'cells': [{'kind': 'columnHeader', 'rowIndex': 0, 'columnIndex': 0, 'content': '', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 3.8803, 5.7203, 3.8803, 5.7203, 4.1736, 5.0669, 4.1736]}], 'spans': [{'offset': 679, 'length': 0}]}, {'kind': 'columnHeader', 'rowIndex': 0, 'columnIndex': 1, 'content': 'Python', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 3.8803, 6.3703, 3.8803, 6.3703, 4.1736, 5.7203, 4.1736]}], 'spans': [{'offset': 689, 'length': 6}], 'elements': ['/paragraphs/7']}, {'kind': 'columnHeader', 'rowIndex': 0, 'columnIndex': 2, 'content': 'Go', 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 3.8803, 7.0203, 3.8803, 7.0203, 4.1736, 6.3703, 4.1736]}], 'spans': [{'offset': 705, 'length': 2}], 'elements': ['/paragraphs/8']}, {'kind': 'columnHeader', 'rowIndex': 0, 'columnIndex': 3, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0203, 3.8803, 7.987, 3.8803, 7.987, 4.1736, 7.0203, 4.1736]}], 'spans': [{'offset': 717, 'length': 33}], 'elements': ['/paragraphs/9']}, {'rowIndex': 1, 'columnIndex': 0, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.1736, 5.7203, 4.1736, 5.7203, 4.4636, 5.0669, 4.4636]}], 'spans': [{'offset': 771, 'length': 9}], 'elements': ['/paragraphs/10']}, {'rowIndex': 1, 'columnIndex': 1, 'content': '〇', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 4.1736, 6.3703, 4.1736, 6.3703, 4.4636, 5.7203, 4.4636]}], 'spans': [{'offset': 790, 'length': 1}], 'elements': ['/paragraphs/11']}, {'rowIndex': 1, 'columnIndex': 2, 'content': ':formula: :selected:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.1736, 7.0203, 4.1736, 7.0237, 4.4636, 6.3703, 4.4636]}], 'spans': [{'offset': 801, 'length': 5}], 'elements': ['/paragraphs/12']}, {'rowIndex': 1, 'columnIndex': 3, 'content': '初心者', 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0203, 4.1736, 7.987, 4.1736, 7.987, 4.4636, 7.0237, 4.4636]}], 'spans': [{'offset': 816, 'length': 3}], 'elements': ['/paragraphs/13']}, {'rowIndex': 2, 'columnIndex': 0, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.4636, 5.7203, 4.4636, 5.7169, 4.7603, 5.0669, 4.7603]}], 'spans': [{'offset': 840, 'length': 9}], 'elements': ['/paragraphs/14']}, {'rowIndex': 2, 'columnIndex': 1, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 4.4636, 6.3703, 4.4636, 6.3703, 4.7603, 5.7169, 4.7603]}], 'spans': [{'offset': 859, 'length': 16}], 'elements': ['/paragraphs/15']}, {'rowIndex': 2, 'columnIndex': 2, 'content': '〇', 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.4636, 7.0237, 4.4636, 7.0237, 4.7603, 6.3703, 4.7603]}], 'spans': [{'offset': 885, 'length': 1}], 'elements': ['/paragraphs/16']}, {'rowIndex': 2, 'columnIndex': 3, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0237, 4.4636, 7.987, 4.4636, 7.987, 4.757, 7.0237, 4.7603]}], 'spans': [{'offset': 896, 'length': 7}], 'elements': ['/paragraphs/17']}, {'rowIndex': 3, 'columnIndex': 0, 'content': 'C氏', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.7603, 5.7169, 4.7603, 5.7169, 5.047, 5.0636, 5.047]}], 'spans': [{'offset': 924, 'length': 2}], 'elements': ['/paragraphs/18']}, {'rowIndex': 3, 'columnIndex': 1, 'content': ':formula: :selected:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7169, 4.7603, 6.3703, 4.7603, 6.3703, 5.047, 5.7169, 5.047]}], 'spans': [{'offset': 936, 'length': 5}], 'elements': ['/paragraphs/19']}, {'rowIndex': 3, 'columnIndex': 2, 'content': '〇', 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.7603, 7.0237, 4.7603, 7.0237, 5.047, 6.3703, 5.047]}], 'spans': [{'offset': 951, 'length': 1}], 'elements': ['/paragraphs/20']}, {'rowIndex': 3, 'columnIndex': 3, 'content': ':formula:', 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0237, 4.7603, 7.987, 4.757, 7.987, 5.047, 7.0237, 5.047]}], 'spans': [{'offset': 962, 'length': 16}], 'elements': ['/paragraphs/21']}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0597, 3.8737, 7.9985, 3.8741, 7.9981, 5.0548, 5.0591, 5.0542]}], 'spans': [{'offset': 662, 'length': 336}]}]
****************************************
******************** paragraphs
[{'spans': [{'offset': 0, 'length': 12}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.4539, 1.0513, 1.5336, 1.0576, 1.5328, 1.2009, 0.4531, 1.1945]}], 'role': 'sectionHeading', 'content': '『海の声を聴く少女』'}, {'spans': [{'offset': 14, 'length': 92}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.4519, 1.2213, 10.0214, 1.2201, 10.0215, 1.5279, 0.452, 1.5292]}], 'content': '遥か昔、海辺の小さな村に、ミナという名の少女が住んでいました。ミナは生まれながらにして耳が不自由で、人々の声を聞くことはできませんでしたが、不思議なことに海の 声だけは聞こえるのです。'}, {'spans': [{'offset': 108, 'length': 95}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.4459, 1.5366, 9.9688, 1.5354, 9.9688, 1.8404, 0.4459, 1.8416]}], 'content': '毎日、ミナは浜辺に座り、波の音に耳を傾けていました。ざわざわと寄せては返す波の音は、ミナにとって美しい歌のように聞こえました。時には激しく、時には穏やかに、海は様々な表情を 見せてくれます。'}, {'spans': [{'offset': 205, 'length': 91}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.4483, 1.8588, 10.0739, 1.8568, 10.074, 2.1595, 0.4484, 2.1615]}], 'content': 'ある日、ミナは海から不思議な声を聞きました。それは人間の声でも動物の鳴き声でもなく、どこか神秘的な響きを持っていました。好奇心に駆られたミナは、その声の正体を探ろうと決心し ました。'}, {'spans': [{'offset': 298, 'length': 169}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.4492, 2.1832, 10.0055, 2.1835, 10.0055, 2.6614, 0.4491, 2.6611]}], 'content': '村の人々は、ミナが海の声を聞けると知って驚きました。多くの人は信じられないという顔をしましたが、年老いた漁師のタロウじいさんだけは違いました。 「昔から伝わる言い伝えがあるんじゃ」とタロウじいさんは話し始めました。「海の底には古代の神殿があって、そこに住む海の精霊が時々人間を呼ぶんだと。 でも、その声が聞こえる者はめったにおらんのじゃ」'}, {'spans': [{'offset': 469, 'length': 164}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [1.1767, 3.5069, 3.4235, 3.5069, 3.4235, 4.937, 1.1767, 4.937]}], 'role': 'formulaBlock', 'content': ':formula: :formula:'}, {'spans': [{'offset': 635, 'length': 24}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [2.4589, 5.3637, 3.1702, 5.3504, 3.1747, 5.5904, 2.4635, 5.6037]}], 'role': 'formulaBlock', 'content': ':formula:'}, {'spans': [{'offset': 689, 'length': 6}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 3.8803, 6.3703, 3.8803, 6.3703, 4.1736, 5.7203, 4.1736]}], 'content': 'Python'}, {'spans': [{'offset': 705, 'length': 2}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 3.8803, 7.0203, 3.8803, 7.0203, 4.1736, 6.3703, 4.1736]}], 'content': 'Go'}, {'spans': [{'offset': 717, 'length': 33}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0203, 3.8803, 7.987, 3.8803, 7.987, 4.1736, 7.0203, 4.1736]}], 'content': ':formula:'}, {'spans': [{'offset': 771, 'length': 9}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.1736, 5.7203, 4.1736, 5.7203, 4.4636, 5.0669, 4.4636]}], 'content': ':formula:'}, {'spans': [{'offset': 790, 'length': 1}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 4.1736, 6.3703, 4.1736, 6.3703, 4.4636, 5.7203, 4.4636]}], 'content': '〇'}, {'spans': [{'offset': 801, 'length': 5}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.1736, 7.0203, 4.1736, 7.0237, 4.4636, 6.3703, 4.4636]}], 'content': ':formula: :selected:'}, {'spans': [{'offset': 816, 'length': 3}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0203, 4.1736, 7.987, 4.1736, 7.987, 4.4636, 7.0237, 4.4636]}], 'content': '初心者'}, {'spans': [{'offset': 840, 'length': 9}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.4636, 5.7203, 4.4636, 5.7169, 4.7603, 5.0669, 4.7603]}], 'content': ':formula:'}, {'spans': [{'offset': 859, 'length': 16}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7203, 4.4636, 6.3703, 4.4636, 6.3703, 4.7603, 5.7169, 4.7603]}], 'content': ':formula:'}, {'spans': [{'offset': 885, 'length': 1}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.4636, 7.0237, 4.4636, 7.0237, 4.7603, 6.3703, 4.7603]}], 'content': '〇'}, {'spans': [{'offset': 896, 'length': 7}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0237, 4.4636, 7.987, 4.4636, 7.987, 4.757, 7.0237, 4.7603]}], 'content': ':formula:'}, {'spans': [{'offset': 924, 'length': 2}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.0669, 4.7603, 5.7169, 4.7603, 5.7169, 5.047, 5.0636, 5.047]}], 'content': 'C氏'}, {'spans': [{'offset': 936, 'length': 5}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [5.7169, 4.7603, 6.3703, 4.7603, 6.3703, 5.047, 5.7169, 5.047]}], 'content': ':formula: :selected:'}, {'spans': [{'offset': 951, 'length': 1}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [6.3703, 4.7603, 7.0237, 4.7603, 7.0237, 5.047, 6.3703, 5.047]}], 'content': '〇'}, {'spans': [{'offset': 962, 'length': 16}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [7.0237, 4.7603, 7.987, 4.757, 7.987, 5.047, 7.0237, 5.047]}], 'content': ':formula:'}, {'spans': [{'offset': 1001, 'length': 394}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [8.6237, 3.5569, 10.4238, 3.5569, 10.4238, 5.3504, 8.6237, 5.3504]}], 'content': ':barcode:'}, {'spans': [{'offset': 1397, 'length': 443}], 'boundingRegions': [{'pageNumber': 1, 'polygon': [0.5639, 6.2338, 3.864, 6.2353, 3.8637, 7.028, 0.5635, 7.0265]}], 'content': '精霊はミナに、海の秘密や自然の摂理について多くのことを教えてくれました。嵐の前兆や魚の回遊、潮の満ち引きの 理由など、海に関する深い知識を授けられました。そして夜が明ける頃、ミナは再び浜辺に立っていました。村人たち は、一晩中姿を消していたミナの無事な帰還を喜びました。それからというもの、ミナは村人たちに海の声を伝える役 目を果たすようになりました。嵐の接近を予測したり、大漁の時期を知らせたりと、ミナの助言は村人たちの生活に大 きな変化をもたらしました。年月が過ぎ、ミナは美しい大人の女性へと成長しました。彼女の噂は遠くまで広がり、多く の人々が海の声を聞く少女の話を聞きに来るようになりました。ミナは、海の声を聞く能力を持つ子供たちを見出し、 その才能を育てることにも力を注ぎました。海と人間の世界をつなぐ架け橋を、次の世代へと繋いでいったのです。歳を 重ねたミナは、いつしか「海の巫女」と呼ばれるようになりました。彼女の周りには常に、海の精霊たちの優しい気配が 漂っていました。'}]
****************************************
******************** styles
[{'confidence': 0.95, 'spans': [{'offset': 2, 'length': 10}, {'offset': 14, 'length': 92}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}, {'offset': 298, 'length': 169}, {'offset': 689, 'length': 6}, {'offset': 705, 'length': 2}, {'offset': 816, 'length': 3}, {'offset': 924, 'length': 2}, {'offset': 1397, 'length': 443}], 'isHandwritten': False}, {'confidence': 0.99, 'spans': [{'offset': 2, 'length': 10}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}], 'color': '#090909'}, {'confidence': 0.99, 'spans': [{'offset': 2, 'length': 10}, {'offset': 14, 'length': 92}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}, {'offset': 298, 'length': 169}, {'offset': 689, 'length': 6}, {'offset': 705, 'length': 2}, {'offset': 816, 'length': 3}, {'offset': 924, 'length': 2}, {'offset': 1397, 'length': 443}], 'backgroundColor': '#fefefe'}, {'confidence': 1, 'spans': [{'offset': 2, 'length': 10}, {'offset': 14, 'length': 92}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}, {'offset': 298, 'length': 169}, {'offset': 689, 'length': 6}, {'offset': 705, 'length': 2}, {'offset': 816, 'length': 3}, {'offset': 924, 'length': 2}, {'offset': 1397, 'length': 443}], 'fontStyle': 'normal'}, {'confidence': 1, 'spans': [{'offset': 2, 'length': 10}, {'offset': 14, 'length': 92}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}, {'offset': 298, 'length': 169}, {'offset': 689, 'length': 6}, {'offset': 705, 'length': 2}, {'offset': 816, 'length': 3}, {'offset': 924, 'length': 2}, {'offset': 1397, 'length': 443}], 'fontWeight': 'normal'}, {'confidence': 0.99, 'spans': [{'offset': 2, 'length': 10}, {'offset': 108, 'length': 95}, {'offset': 205, 'length': 91}, {'offset': 1397, 'length': 443}], 'similarFontFamily': 'Meiryo, MS YaHei, sans-serif'}, {'confidence': 0.99, 'spans': [{'offset': 14, 'length': 92}], 'color': '#010101'}, {'confidence': 0.99, 'spans': [{'offset': 14, 'length': 92}], 'similarFontFamily': 'BIZ UDGothic, DengXian, sans-serif'}, {'confidence': 0.99, 'spans': [{'offset': 298, 'length': 169}], 'color': '#212121'}, {'confidence': 0.99, 'spans': [{'offset': 298, 'length': 144}], 'similarFontFamily': 'MS Mincho, SimSun, serif'}, {'confidence': 0.99, 'spans': [{'offset': 443, 'length': 24}], 'similarFontFamily': 'MS Mincho, KaiTi, serif'}, {'confidence': 0.99, 'spans': [{'offset': 689, 'length': 6}], 'color': '#111111'}, {'confidence': 0.99, 'spans': [{'offset': 689, 'length': 6}], 'similarFontFamily': 'Segoe UI, sans-serif'}, {'confidence': 0.99, 'spans': [{'offset': 705, 'length': 2}], 'color': '#151515'}, {'confidence': 0.8, 'spans': [{'offset': 705, 'length': 2}], 'similarFontFamily': 'Arial, Helvetica, sans-serif'}, {'confidence': 1, 'spans': [{'offset': 790, 'length': 1}, {'offset': 885, 'length': 1}, {'offset': 951, 'length': 1}], 'isHandwritten': False}, {'confidence': 0.99, 'spans': [{'offset': 790, 'length': 1}, {'offset': 885, 'length': 1}, {'offset': 951, 'length': 1}], 'color': '#000000'}, {'confidence': 0.99, 'spans': [{'offset': 790, 'length': 1}, {'offset': 885, 'length': 1}, {'offset': 951, 'length': 1}], 'backgroundColor': 'unidentified'}, {'confidence': 0.99, 'spans': [{'offset': 816, 'length': 3}, {'offset': 1451, 'length': 53}, {'offset': 1559, 'length': 162}], 'color': '#313131'}, {'confidence': 0.99, 'spans': [{'offset': 816, 'length': 3}], 'similarFontFamily': 'DengXian, BIZ UDGothic, sans-serif'}, {'confidence': 0.99, 'spans': [{'offset': 924, 'length': 2}], 'color': '#191919'}, {'confidence': 0.7, 'spans': [{'offset': 924, 'length': 2}], 'similarFontFamily': 'DengXian, BIZ UDGothic, sans-serif'}, {'confidence': 0.99, 'spans': [{'offset': 1397, 'length': 53}, {'offset': 1505, 'length': 53}, {'offset': 1722, 'length': 118}], 'color': '#353535'}]
****************************************
******************** contentFormat
markdown
****************************************
******************** sections
[{'spans': [{'offset': 0, 'length': 1840}], 'elements': ['/paragraphs/0', '/paragraphs/1', '/paragraphs/2', '/paragraphs/3', '/paragraphs/4', '/paragraphs/5', '/paragraphs/6', '/tables/0', '/paragraphs/22', '/paragraphs/23']}]
****************************************
- apiVersion
APIのバージョン
- modelId
選択したモデル
どのモデルで読み取りをしたかが記載。今回はprebuilt-layout
を使用。
以下に書いてあるんですが、このページは英語で見たほうが良い。日本語に変換しちゃうと何書いてあるのか全くわからん。w
- stringIndexType
textElements
ちょっとよくわからない。
- content
すべての内容
-
pages
ページごとの内容が記載。今回は1ページのみなので、一つだけ。この中のkeyは以下。pageNumber: ページ番号 angle: よくわからないけど、傾きかな? width: 紙面の幅っぽい height: 紙面の高さっぽい unit: 単位。今回はインチだった words: 一文字ずつの情報 selectionMarks: この中にさらに'state', 'polygon', 'confidence', 'span'がある。 lines: 1行ごとの情報 barcodes: バーコードの情報 formulas: 数式の情報 spans: よくわかんないけど、この例では文字数と一致している。
- tables
テーブル情報。セルの数や、各セルの内容、位置、サイズなど。
- paragraphs
段落ごとの情報。一夜、文字数など
- styles
背景や文字の色やフォントなど
- contentFormat
markdown
出力フォーマット。
- sections
リストの中に要素。この要素には'spans', 'elements'がある。
今回はparagraphs/0
から6、22,23。
そして、/tables/0
おそらく、構成要素なのかな。
7. ちょっとわかる範囲でコードの解説
poller = document_intelligence_client.begin_analyze_document(
"prebuilt-layout", # レイアウトモデル
# "prebuilt-contract", # 契約書モデル
body=f,
output=[AnalyzeOutputOption.FIGURES],
output_content_format="markdown",
features=[
DocumentAnalysisFeature.BARCODES,
DocumentAnalysisFeature.FORMULAS,
DocumentAnalysisFeature.OCR_HIGH_RESOLUTION,
DocumentAnalysisFeature.STYLE_FONT,
]
)
ドキュメントのまま、DocumentIntelligenceClient
クラスのインスタンスを起こしてますが、そのインスタンスのbegin_analyze_document
という関数を用いてます。
この時、引数の解説をしておきます。
-
model
解析モデルを指定します。一般的にはprebuilt-layout
で良いんじゃないでしょうか。
オリジナルのモデルを作ったりすることもできるようですが、領収書や契約書などのモデルが事前に準備されています。
prebuilt-read
も使えますが、マークダウン形式で出力できなかったりします。そうすると表が表だという表現ができなくなってしまいました。書いてあるテキストがただ出力されてしまいました。これでは表の意味がわからなくなってしまうと思います。
以下、この二つについてのみテストした結果を含めて記していきます。 -
body
読み取った文章を渡します。今回は'rb'で読み取っていますので、バイナリファイルとして読み取っています。 -
outuput
アウトプットのオプションを指定します。prebuilt-read
の場合、コメントアウトしたらOKでした。 -
output_content_format
アウトプットの形式を指定します。今回は"markdown”を指定しました。prebuilt-read
の場合は"text"の指定しかできませんでした。というか、この二つしか知らないんだよね。💦 -
features
prebuilt-layout
読み取りの追加機能を指定します。一部、有料になりそうですが、数をこなさなければ些細な金額です。今回はわかる範囲で以下を指定しました。- DocumentAnalysisFeature.BARCODES
バーコードが読めます。 - DocumentAnalysisFeature.FORMULAS
計算式を読み取ります。 - DocumentAnalysisFeature.OCR_HIGH_RESOLUTION
紙面に対して、小さな文字を読み取ります。 - DocumentAnalysisFeature.STYLE_FONT
フォントを読み取ります。
- DocumentAnalysisFeature.BARCODES
この辺りは以下のドキュメントに書いてありますので、必要に応じて設定してみましょう。
8. オプションで設定した読み取り結果
以下のプログラムで確認していきます。
for page in result.pages:
print(f"----Formulas detected from page #{page.page_number}----")
if page.formulas:
inline_formulas = [f for f in page.formulas if f.kind == "inline"]
display_formulas = [f for f in page.formulas if f.kind == "display"]
print(f"Detected {len(inline_formulas)} inline formulas.")
for formula_idx, formula in enumerate(inline_formulas):
print(f"- Inline #{formula_idx}: {formula.value}")
print(f" Confidence: {formula.confidence}")
print(f" Bounding regions: {formula.polygon}")
print(f"\nDetected {len(display_formulas)} display formulas.")
for formula_idx, formula in enumerate(display_formulas):
print(f"- Display #{formula_idx}: {formula.value}")
print(f" Confidence: {formula.confidence}")
print(f" Bounding regions: {formula.polygon}")
if page.barcodes:
qr_barcodes = [f for f in page.barcodes if f.kind == "QRCode"] # 今回はQRだけなので・・・💦
print(f"\nDetected {len(qr_barcodes)} QRCode.")
for qr_idx, qr_code in enumerate(qr_barcodes):
print(f"- Display #{qr_idx}: {qr_code.value}")
print(f" Confidence: {qr_code.confidence}")
print(f" Bounding regions: {qr_code.polygon}")
# ----Formulas detected from page #1----
# Detected 8 inline formulas.
# - Inline #0: \mathrm { J a v a S c r i p t }
# Confidence: 0.669
# Bounding regions: [7.197, 3.9536, 7.777, 3.9536, 7.777, 4.0803, 7.197, 4.0803]
# - Inline #1: A \quad
# Confidence: 0.46
# Bounding regions: [5.2869, 4.2536, 5.4803, 4.2536, 5.4803, 4.3603, 5.2869, 4.3603]
# - Inline #2: x
# Confidence: 0.87
# Bounding regions: [6.6503, 4.2636, 6.7337, 4.2636, 6.7337, 4.3403, 6.6503, 4.3403]
# - Inline #3: B \quad
# Confidence: 0.87
# Bounding regions: [5.2703, 4.527, 5.5069, 4.527, 5.5069, 4.657, 5.2703, 4.657]
# - Inline #4: \bigtriangleup
# Confidence: 0.669
# Bounding regions: [5.9836, 4.5436, 6.0703, 4.5436, 6.0703, 4.6636, 5.9836, 4.6636]
# - Inline #5: t = k
# Confidence: 0.46
# Bounding regions: [7.3804, 4.5236, 7.6037, 4.5236, 7.6037, 4.6536, 7.3804, 4.6536]
# - Inline #6: x
# Confidence: 0.819
# Bounding regions: [5.9936, 4.847, 6.0803, 4.847, 6.0803, 4.9203, 5.9936, 4.9203]
# - Inline #7: \bigtriangleup
# Confidence: 0.819
# Bounding regions: [7.4437, 4.8337, 7.5504, 4.8337, 7.5504, 4.9537, 7.4437, 4.9537]
#
# Detected 3 display formulas.
# - Display #0: \bar { x } = \frac { \sum _ { i = 1 } ^ { N } x _ { i } } { N }
# Confidence: 0.583
# Bounding regions: [1.1767, 3.5336, 2.2801, 3.5069, 2.2934, 4.0436, 1.1867, 4.0703]
# - Display #1: S = \frac { 1 } { N } \sum _ { i = 1 } ^ { N } \left( x _ { i } - \bar { x } \right) ^ { 2 }
# Confidence: 0.764
# Bounding regions: [1.6634, 4.207, 3.4235, 4.207, 3.4235, 4.937, 1.6634, 4.937]
# - Display #2: \sigma = \sqrt { S }
# Confidence: 0.87
# Bounding regions: [2.4601, 5.3637, 3.1702, 5.3504, 3.1735, 5.5904, 2.4635, 5.6037]
#
# Detected 1 inline barcodes.
# - Display #0: I AM ATTEMPTING TO CREATE A LARGE LANGUAGE MODEL.
# THIS LANGUAGE MODEL AIMS TO INCORPORATE DOMAIN KNOWLEDGE INTO A BASE MODEL, AND THEN FINE-TUNE IT FURTHER TO ENABLE CHAT FUNCTIONALITY USING THIS DOMAIN KNOWLEDGE.
# I'M NOT ENTIRELY SURE IF IT WILL BE SUCCESSFUL, BUT I'M TRYING THIS BECAUSE I WANT TO USE A LANGUAGE MODEL IN A LOCAL ENVIRONMENT. PLEASE CHEER ME ON.
#
# Confidence: 1.0
# Bounding regions: [8.6237, 3.5569, 10.4238, 3.5569, 10.4205, 5.3504, 8.6237, 5.3504]
おお、QRコードも数式も読めてますねぇ。
スンバラしい。
barcodeの解説はこちら
数式もLaTexで表記されているようです(LaTexはまったくわからん。💦)
9. おわりに
ちょっとPDFからテキストを読み取らなきゃ…という課題が出たので、Azure Document Intelligenceを試して、基本的な使い方がわかりました。
無事に読み取りもできました。
[
{
'spans': [{'offset': 0, 'length': 1840}],
'elements': [
'/paragraphs/0',
'/paragraphs/1',
'/paragraphs/2',
'/paragraphs/3',
'/paragraphs/4',
'/paragraphs/5',
'/paragraphs/6',
'/tables/0',
'/paragraphs/22',
'/paragraphs/23'
]
}
]
result.sections
をみると、レイアウトまで取得できるので、文章部分、表の部分などを分けて取得できそうです。また詳しく調べてみようと思います。
しかも、Azureの機能なのでめっちゃ強力です。これで読み取ったテキストを使ってほにゃららする予定です。
ではまた。