Skip to content

Proofs x AI

Raphaël Odini edited this page Jan 15, 2025 · 6 revisions

Context

Models in production

Type prediction (classification)

When a proof is created, an in-house model predict's the proof's type (Receipt, Price Tag...).

  • the result is stored in the ProofPrediction table
  • see #394 & #511 for more details

OCR

When a proof is created, we send the image to Google Cloud Vision API

  • the result is stored in a json.gz file alongside the proof image
  • we currently do not use this data in the app
  • see #320 for more details
  • an alternative could be to call a GenAI API instead (see #681)

Price tags detection

When a proof is created, and if it is of type PRICE_TAG, an in-house model detects the price tags bounding boxes.

  • the result is stored in the ProofPrediction table
  • and the list of bounding boxes is used to create corresponding PriceTag objects

Price tags prediction

For each PriceTag created, we call a GenAI API to extract data (barcode or category, price) from these images.

  • the result is stored in the PriceTagPrediction table
  • see #569 & #611 for more details

Example: PRICE_TAG proof

todo

Type prediction (classification)

OCR

Price tags detection

Price tags prediction

Example: RECEIPT proof

The following example is with: https://prices.openfoodfacts.org/proofs/17766

Type prediction (classification)

{
  "type": "CLASSIFICATION",
  "model_name": "price_proof_classification",
  "model_version": "price_proof_classification-1.0",
  "created": "2025-01-11T17:21:45.120620Z",
  "data": {
    "prediction": [
      {
        "label": "RECEIPT",
        "score": 0.9983269572257996
      },
      {
        "label": "PRICE_TAG",
        "score": 0.001662618713453412
      },
      {
        "label": "PRODUCT_WITH_PRICE",
        "score": 0.000010287541044817772
      },
      {
        "label": "WEB_PRINT",
        "score": 1.6992761686651647e-7
      },
      {
        "label": "OTHER",
        "score": 9.177220050560209e-8
      },
      {
        "label": "SHELF",
        "score": 2.674269694580289e-9
      }
    ]
  },
  "value": "RECEIPT",
  "max_confidence": 0.9983269572257996
}
// code
import json
from open_prices.proofs.models import Proof
from open_prices.api.proofs.serializers import ProofPredictionSerializer

p = Proof.objects.get(id=17766)
json.dumps(ProofPredictionSerializer(p.predictions.first()).data)

OCR

Price tags detection

(no data here because the example proof is a receipt)

{
  "type": "OBJECT_DETECTION",
  "model_name": "price_tag_detection",
  "model_version": "price_tag_detection-1.0",
  "created": "2025-01-11T17:21:48.921708Z",
  "data": {
    "objects": [
      {
        "label": "price_tag",
        "score": 0.8913729786872864,
        "bounding_box": [
          0,
          0.11772206425666809,
          0.40537911653518677,
          0.9268485307693481
        ]
      }
    ]
  },
  "value": null,
  "max_confidence": 0.8913729786872864
}
// code
import json
from open_prices.proofs.models import Proof
from open_prices.api.proofs.serializers import ProofPredictionSerializer

p = Proof.objects.get(id=17766)
json.dumps(ProofPredictionSerializer(p.predictions.last()).data)

Price tags prediction

(no data here because the example proof is a receipt)

OCR

{
  "responses": [
    {
      "logoAnnotations": [
        {
          "mid": "/m/047d2wj",
          "description": "Monoprix",
          "score": 0.992911,
          "boundingPoly": {
            "vertices": [
              { "x": 1267, "y": 259 },
              { "x": 2041, "y": 259 },
              { "x": 2041, "y": 402 },
              { "x": 1267, "y": 402 }
            ]
          }
        }
      ],
      "labelAnnotations": [
        {
          "mid": "/m/04gcl9",
          "description": "Receipt",
          "score": 0.5470022,
          "topicality": 0.23081681
        },
        {
          "mid": "/m/05c0n6k",
          "description": "Label",
          "score": 0.5088779,
          "topicality": 0.0016113798
        }
      ],
      "textAnnotations": [
        {
          "locale": "fr",
          "description": "MONOPRIX\n231709408074250111180727\nGRENOBLE CASERNE DE BONNE\n15 rue MARCEAU\n38000 GRENOBLE 2\nOuvert du lundi au samedi de 08h00 A 21h00\nLe dimanche 08h30 a 19h45\nTel : 04.38.03.86.10\n11/01/25 - 18:08 940 94 8074\nEPICERIE/BOISSONS.\nT NOUILLES DE RIZ 25\n2.69 EUR\nT NOUILLES DE BLE ET\n2.69 EUR\nT NESTLE DESSERT NOI\n5.79 EUR\nT GALET.ROIS FRANG.\n4.69 EUR\n3TXIM\nTOTAL HORS PROMOTION :\nNOMBRE D'ARTICLES\n15.86 EUR\nD\n02\n4\nRESTE A PAYER\n15.86 EUR\nPAIEMENT\nis\nTR Eligible(15.86 EUR) aid an\nTRD3\n162\n15.86 EUR\nMA CARTE DE FIDELITE",
          "boundingPoly": {
            "vertices": [
              { "x": 490, "y": 280 },
              { "x": 2545, "y": 280 },
              { "x": 2545, "y": 4607 },
              { "x": 490, "y": 4607 }
            ]
          }
        },
        {
          "description": "MONOPRIX",
          "boundingPoly": {
            "vertices": [
              { "x": 1295, "y": 280 },
              { "x": 2000, "y": 284 },
              { "x": 1999, "y": 379 },
              { "x": 1294, "y": 375 }
            ]
          }
        },
        {
          "description": "231709408074250111180727",
          "boundingPoly": {
            "vertices": [
              { "x": 1034, "y": 687 },
              { "x": 2241, "y": 687 },
              { "x": 2241, "y": 779 },
              { "x": 1034, "y": 779 }
            ]
          }
        },
        {
          "description": "GRENOBLE",
          "boundingPoly": {
            "vertices": [
              { "x": 1152, "y": 886 },
              { "x": 1465, "y": 889 },
              { "x": 1464, "y": 968 },
              { "x": 1151, "y": 965 }
            ]
          }
        },
        {
          "description": "CASERNE",
          "boundingPoly": {
            "vertices": [
              { "x": 1499, "y": 890 },
              { "x": 1779, "y": 893 },
              { "x": 1778, "y": 971 },
              { "x": 1498, "y": 968 }
            ]
          }
        },
        {
          "description": "DE",
          "boundingPoly": {
            "vertices": [
              { "x": 1818, "y": 893 },
              { "x": 1898, "y": 894 },
              { "x": 1897, "y": 972 },
              { "x": 1817, "y": 971 }
            ]
          }
        },
        {
          "description": "BONNE",
          "boundingPoly": {
            "vertices": [
              { "x": 1936, "y": 893 },
              { "x": 2128, "y": 895 },
              { "x": 2127, "y": 974 },
              { "x": 1935, "y": 972 }
            ]
          }
        },
        {
          "description": "15",
          "boundingPoly": {
            "vertices": [
              { "x": 1341, "y": 1003 },
              { "x": 1425, "y": 1004 },
              { "x": 1424, "y": 1083 },
              { "x": 1340, "y": 1082 }
            ]
          }
        },
        {
          "description": "rue",
          "boundingPoly": {
            "vertices": [
              { "x": 1464, "y": 1003 },
              { "x": 1582, "y": 1004 },
              { "x": 1581, "y": 1084 },
              { "x": 1463, "y": 1083 }
            ]
          }
        },
        {
          "description": "MARCEAU",
          "boundingPoly": {
            "vertices": [
              { "x": 1613, "y": 1005 },
              { "x": 1901, "y": 1008 },
              { "x": 1900, "y": 1087 },
              { "x": 1612, "y": 1084 }
            ]
          }
        },
        {
          "description": "38000",
          "boundingPoly": {
            "vertices": [
              { "x": 1337, "y": 1119 },
              { "x": 1542, "y": 1119 },
              { "x": 1542, "y": 1203 },
              { "x": 1337, "y": 1203 }
            ]
          }
        },
        {
          "description": "GRENOBLE",
          "boundingPoly": {
            "vertices": [
              { "x": 1610, "y": 1119 },
              { "x": 1931, "y": 1119 },
              { "x": 1931, "y": 1203 },
              { "x": 1610, "y": 1203 }
            ]
          }
        },
        {
          "description": "2",
          "boundingPoly": {
            "vertices": [
              { "x": 2036, "y": 1119 },
              { "x": 2123, "y": 1119 },
              { "x": 2123, "y": 1203 },
              { "x": 2036, "y": 1203 }
            ]
          }
        },
        {
          "description": "Ouvert",
          "boundingPoly": {
            "vertices": [
              { "x": 791, "y": 1222 },
              { "x": 1033, "y": 1226 },
              { "x": 1032, "y": 1314 },
              { "x": 790, "y": 1310 }
            ]
          }
        },
        {
          "description": "du",
          "boundingPoly": {
            "vertices": [
              { "x": 1062, "y": 1227 },
              { "x": 1143, "y": 1228 },
              { "x": 1142, "y": 1315 },
              { "x": 1061, "y": 1314 }
            ]
          }
        },
        {
          "description": "lundi",
          "boundingPoly": {
            "vertices": [
              { "x": 1180, "y": 1228 },
              { "x": 1376, "y": 1231 },
              { "x": 1375, "y": 1319 },
              { "x": 1179, "y": 1316 }
            ]
          }
        },
        {
          "description": "au",
          "boundingPoly": {
            "vertices": [
              { "x": 1416, "y": 1232 },
              { "x": 1496, "y": 1233 },
              { "x": 1495, "y": 1321 },
              { "x": 1415, "y": 1320 }
            ]
          }
        },
        {
          "description": "samedi",
          "boundingPoly": {
            "vertices": [
              { "x": 1538, "y": 1234 },
              { "x": 1770, "y": 1238 },
              { "x": 1769, "y": 1326 },
              { "x": 1537, "y": 1322 }
            ]
          }
        },
        {
          "description": "de",
          "boundingPoly": {
            "vertices": [
              { "x": 1811, "y": 1239 },
              { "x": 1891, "y": 1240 },
              { "x": 1890, "y": 1327 },
              { "x": 1810, "y": 1326 }
            ]
          }
        },
        {
          "description": "08h00",
          "boundingPoly": {
            "vertices": [
              { "x": 1931, "y": 1240 },
              { "x": 2128, "y": 1243 },
              { "x": 2127, "y": 1331 },
              { "x": 1930, "y": 1328 }
            ]
          }
        },
        {
          "description": "A",
          "boundingPoly": {
            "vertices": [
              { "x": 2163, "y": 1245 },
              { "x": 2209, "y": 1246 },
              { "x": 2208, "y": 1333 },
              { "x": 2162, "y": 1332 }
            ]
          }
        },
        {
          "description": "21h00",
          "boundingPoly": {
            "vertices": [
              { "x": 2276, "y": 1246 },
              { "x": 2474, "y": 1249 },
              { "x": 2473, "y": 1337 },
              { "x": 2275, "y": 1334 }
            ]
          }
        },
        {
          "description": "Le",
          "boundingPoly": {
            "vertices": [
              { "x": 1142, "y": 1351 },
              { "x": 1225, "y": 1352 },
              { "x": 1224, "y": 1439 },
              { "x": 1141, "y": 1438 }
            ]
          }
        },
        {
          "description": "dimanche",
          "boundingPoly": {
            "vertices": [
              { "x": 1261, "y": 1351 },
              { "x": 1579, "y": 1354 },
              { "x": 1578, "y": 1442 },
              { "x": 1260, "y": 1439 }
            ]
          }
        },
        {
          "description": "08h30",
          "boundingPoly": {
            "vertices": [
              { "x": 1615, "y": 1354 },
              { "x": 1816, "y": 1356 },
              { "x": 1815, "y": 1444 },
              { "x": 1614, "y": 1442 }
            ]
          }
        },
        {
          "description": "a",
          "boundingPoly": {
            "vertices": [
              { "x": 1849, "y": 1357 },
              { "x": 1893, "y": 1357 },
              { "x": 1892, "y": 1444 },
              { "x": 1848, "y": 1444 }
            ]
          }
        },
        {
          "description": "19h45",
          "boundingPoly": {
            "vertices": [
              { "x": 1931, "y": 1357 },
              { "x": 2127, "y": 1359 },
              { "x": 2126, "y": 1447 },
              { "x": 1930, "y": 1445 }
            ]
          }
        },
        {
          "description": "Tel",
          "boundingPoly": {
            "vertices": [
              { "x": 1246, "y": 1470 },
              { "x": 1367, "y": 1471 },
              { "x": 1366, "y": 1558 },
              { "x": 1245, "y": 1557 }
            ]
          }
        },
        {
          "description": ":",
          "boundingPoly": {
            "vertices": [
              { "x": 1408, "y": 1472 },
              { "x": 1430, "y": 1472 },
              { "x": 1429, "y": 1558 },
              { "x": 1407, "y": 1558 }
            ]
          }
        },
        {
          "description": "04.38.03.86.10",
          "boundingPoly": {
            "vertices": [
              { "x": 1477, "y": 1472 },
              { "x": 2028, "y": 1477 },
              { "x": 2027, "y": 1564 },
              { "x": 1476, "y": 1559 }
            ]
          }
        },
        {
          "description": "11/01/25",
          "boundingPoly": {
            "vertices": [
              { "x": 1095, "y": 1708 },
              { "x": 1403, "y": 1711 },
              { "x": 1402, "y": 1794 },
              { "x": 1094, "y": 1791 }
            ]
          }
        },
        {
          "description": "-",
          "boundingPoly": {
            "vertices": [
              { "x": 1433, "y": 1712 },
              { "x": 1474, "y": 1712 },
              { "x": 1473, "y": 1794 },
              { "x": 1432, "y": 1794 }
            ]
          }
        },
        {
          "description": "18:08",
          "boundingPoly": {
            "vertices": [
              { "x": 1519, "y": 1712 },
              { "x": 1713, "y": 1714 },
              { "x": 1712, "y": 1797 },
              { "x": 1518, "y": 1795 }
            ]
          }
        },
        {
          "description": "940",
          "boundingPoly": {
            "vertices": [
              { "x": 1746, "y": 1715 },
              { "x": 1873, "y": 1716 },
              { "x": 1872, "y": 1798 },
              { "x": 1745, "y": 1797 }
            ]
          }
        },
        {
          "description": "94",
          "boundingPoly": {
            "vertices": [
              { "x": 1901, "y": 1717 },
              { "x": 1985, "y": 1718 },
              { "x": 1984, "y": 1800 },
              { "x": 1900, "y": 1799 }
            ]
          }
        },
        {
          "description": "8074",
          "boundingPoly": {
            "vertices": [
              { "x": 2015, "y": 1718 },
              { "x": 2174, "y": 1720 },
              { "x": 2173, "y": 1802 },
              { "x": 2014, "y": 1800 }
            ]
          }
        },
        {
          "description": "EPICERIE",
          "boundingPoly": {
            "vertices": [
              { "x": 508, "y": 2500 },
              { "x": 816, "y": 2500 },
              { "x": 816, "y": 2585 },
              { "x": 508, "y": 2585 }
            ]
          }
        },
        {
          "description": "/",
          "boundingPoly": {
            "vertices": [
              { "x": 817, "y": 2500 },
              { "x": 860, "y": 2500 },
              { "x": 860, "y": 2585 },
              { "x": 817, "y": 2585 }
            ]
          }
        },
        {
          "description": "BOISSONS",
          "boundingPoly": {
            "vertices": [
              { "x": 851, "y": 2500 },
              { "x": 1174, "y": 2500 },
              { "x": 1174, "y": 2585 },
              { "x": 851, "y": 2585 }
            ]
          }
        },
        {
          "description": ".",
          "boundingPoly": {
            "vertices": [
              { "x": 1171, "y": 2500 },
              { "x": 1200, "y": 2500 },
              { "x": 1200, "y": 2585 },
              { "x": 1171, "y": 2585 }
            ]
          }
        },
        {
          "description": "T",
          "boundingPoly": {
            "vertices": [
              { "x": 505, "y": 2616 },
              { "x": 539, "y": 2616 },
              { "x": 539, "y": 2699 },
              { "x": 505, "y": 2699 }
            ]
          }
        },
        {
          "description": "NOUILLES",
          "boundingPoly": {
            "vertices": [
              { "x": 610, "y": 2615 },
              { "x": 923, "y": 2613 },
              { "x": 923, "y": 2696 },
              { "x": 610, "y": 2698 }
            ]
          }
        },
        {
          "description": "DE",
          "boundingPoly": {
            "vertices": [
              { "x": 964, "y": 2613 },
              { "x": 1045, "y": 2613 },
              { "x": 1045, "y": 2696 },
              { "x": 964, "y": 2696 }
            ]
          }
        },
        {
          "description": "RIZ",
          "boundingPoly": {
            "vertices": [
              { "x": 1084, "y": 2612 },
              { "x": 1203, "y": 2611 },
              { "x": 1203, "y": 2695 },
              { "x": 1084, "y": 2696 }
            ]
          }
        },
        {
          "description": "25",
          "boundingPoly": {
            "vertices": [
              { "x": 1237, "y": 2612 },
              { "x": 1323, "y": 2612 },
              { "x": 1323, "y": 2695 },
              { "x": 1237, "y": 2695 }
            ]
          }
        },
        {
          "description": "2.69",
          "boundingPoly": {
            "vertices": [
              { "x": 2217, "y": 2616 },
              { "x": 2379, "y": 2621 },
              { "x": 2377, "y": 2698 },
              { "x": 2215, "y": 2693 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2418, "y": 2623 },
              { "x": 2535, "y": 2626 },
              { "x": 2533, "y": 2702 },
              { "x": 2416, "y": 2699 }
            ]
          }
        },
        {
          "description": "T",
          "boundingPoly": {
            "vertices": [
              { "x": 491, "y": 2735 },
              { "x": 540, "y": 2735 },
              { "x": 541, "y": 2818 },
              { "x": 492, "y": 2818 }
            ]
          }
        },
        {
          "description": "NOUILLES",
          "boundingPoly": {
            "vertices": [
              { "x": 606, "y": 2733 },
              { "x": 921, "y": 2731 },
              { "x": 922, "y": 2815 },
              { "x": 607, "y": 2817 }
            ]
          }
        },
        {
          "description": "DE",
          "boundingPoly": {
            "vertices": [
              { "x": 959, "y": 2731 },
              { "x": 1043, "y": 2730 },
              { "x": 1044, "y": 2813 },
              { "x": 960, "y": 2814 }
            ]
          }
        },
        {
          "description": "BLE",
          "boundingPoly": {
            "vertices": [
              { "x": 1078, "y": 2730 },
              { "x": 1198, "y": 2729 },
              { "x": 1199, "y": 2813 },
              { "x": 1079, "y": 2814 }
            ]
          }
        },
        {
          "description": "ET",
          "boundingPoly": {
            "vertices": [
              { "x": 1240, "y": 2729 },
              { "x": 1311, "y": 2729 },
              { "x": 1312, "y": 2812 },
              { "x": 1241, "y": 2812 }
            ]
          }
        },
        {
          "description": "2.69",
          "boundingPoly": {
            "vertices": [
              { "x": 2218, "y": 2740 },
              { "x": 2381, "y": 2740 },
              { "x": 2381, "y": 2818 },
              { "x": 2218, "y": 2818 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2422, "y": 2740 },
              { "x": 2538, "y": 2740 },
              { "x": 2538, "y": 2818 },
              { "x": 2422, "y": 2818 }
            ]
          }
        },
        {
          "description": "T",
          "boundingPoly": {
            "vertices": [
              { "x": 497, "y": 2850 },
              { "x": 534, "y": 2850 },
              { "x": 534, "y": 2932 },
              { "x": 497, "y": 2932 }
            ]
          }
        },
        {
          "description": "NESTLE",
          "boundingPoly": {
            "vertices": [
              { "x": 604, "y": 2850 },
              { "x": 842, "y": 2850 },
              { "x": 842, "y": 2932 },
              { "x": 604, "y": 2932 }
            ]
          }
        },
        {
          "description": "DESSERT",
          "boundingPoly": {
            "vertices": [
              { "x": 879, "y": 2850 },
              { "x": 1164, "y": 2850 },
              { "x": 1164, "y": 2932 },
              { "x": 879, "y": 2932 }
            ]
          }
        },
        {
          "description": "NOI",
          "boundingPoly": {
            "vertices": [
              { "x": 1201, "y": 2850 },
              { "x": 1318, "y": 2850 },
              { "x": 1318, "y": 2932 },
              { "x": 1201, "y": 2932 }
            ]
          }
        },
        {
          "description": "5.79",
          "boundingPoly": {
            "vertices": [
              { "x": 2220, "y": 2858 },
              { "x": 2386, "y": 2858 },
              { "x": 2386, "y": 2939 },
              { "x": 2220, "y": 2939 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2426, "y": 2858 },
              { "x": 2542, "y": 2858 },
              { "x": 2542, "y": 2939 },
              { "x": 2426, "y": 2939 }
            ]
          }
        },
        {
          "description": "T",
          "boundingPoly": {
            "vertices": [
              { "x": 496, "y": 2967 },
              { "x": 535, "y": 2967 },
              { "x": 535, "y": 3049 },
              { "x": 496, "y": 3049 }
            ]
          }
        },
        {
          "description": "GALET.ROIS",
          "boundingPoly": {
            "vertices": [
              { "x": 603, "y": 2967 },
              { "x": 1004, "y": 2967 },
              { "x": 1004, "y": 3049 },
              { "x": 603, "y": 3049 }
            ]
          }
        },
        {
          "description": "FRANG",
          "boundingPoly": {
            "vertices": [
              { "x": 1046, "y": 2967 },
              { "x": 1243, "y": 2967 },
              { "x": 1243, "y": 3049 },
              { "x": 1046, "y": 3049 }
            ]
          }
        },
        {
          "description": ".",
          "boundingPoly": {
            "vertices": [
              { "x": 1253, "y": 2967 },
              { "x": 1272, "y": 2967 },
              { "x": 1272, "y": 3049 },
              { "x": 1253, "y": 3049 }
            ]
          }
        },
        {
          "description": "4.69",
          "boundingPoly": {
            "vertices": [
              { "x": 2221, "y": 2974 },
              { "x": 2383, "y": 2977 },
              { "x": 2381, "y": 3058 },
              { "x": 2219, "y": 3055 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2429, "y": 2978 },
              { "x": 2542, "y": 2980 },
              { "x": 2540, "y": 3061 },
              { "x": 2427, "y": 3059 }
            ]
          }
        },
        {
          "description": "3TXIM",
          "boundingPoly": {
            "vertices": [
              { "x": 1285, "y": 3171 },
              { "x": 1570, "y": 3176 },
              { "x": 1569, "y": 3242 },
              { "x": 1284, "y": 3237 }
            ]
          }
        },
        {
          "description": "TOTAL",
          "boundingPoly": {
            "vertices": [
              { "x": 496, "y": 3306 },
              { "x": 694, "y": 3305 },
              { "x": 694, "y": 3390 },
              { "x": 496, "y": 3391 }
            ]
          }
        },
        {
          "description": "HORS",
          "boundingPoly": {
            "vertices": [
              { "x": 735, "y": 3305 },
              { "x": 894, "y": 3304 },
              { "x": 894, "y": 3389 },
              { "x": 735, "y": 3390 }
            ]
          }
        },
        {
          "description": "PROMOTION",
          "boundingPoly": {
            "vertices": [
              { "x": 929, "y": 3304 },
              { "x": 1286, "y": 3302 },
              { "x": 1286, "y": 3387 },
              { "x": 929, "y": 3389 }
            ]
          }
        },
        {
          "description": ":",
          "boundingPoly": {
            "vertices": [
              { "x": 1329, "y": 3302 },
              { "x": 1352, "y": 3302 },
              { "x": 1352, "y": 3386 },
              { "x": 1329, "y": 3386 }
            ]
          }
        },
        {
          "description": "NOMBRE",
          "boundingPoly": {
            "vertices": [
              { "x": 492, "y": 3432 },
              { "x": 736, "y": 3425 },
              { "x": 738, "y": 3506 },
              { "x": 494, "y": 3513 }
            ]
          }
        },
        {
          "description": "D'ARTICLES",
          "boundingPoly": {
            "vertices": [
              { "x": 774, "y": 3424 },
              { "x": 1163, "y": 3414 },
              { "x": 1165, "y": 3495 },
              { "x": 776, "y": 3505 }
            ]
          }
        },
        {
          "description": "15.86",
          "boundingPoly": {
            "vertices": [
              { "x": 2189, "y": 3324 },
              { "x": 2390, "y": 3327 },
              { "x": 2389, "y": 3404 },
              { "x": 2188, "y": 3401 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2426, "y": 3328 },
              { "x": 2545, "y": 3330 },
              { "x": 2544, "y": 3406 },
              { "x": 2425, "y": 3404 }
            ]
          }
        },
        {
          "description": "D",
          "boundingPoly": {
            "vertices": [
              { "x": 1950, "y": 3423 },
              { "x": 2029, "y": 3426 },
              { "x": 2026, "y": 3503 },
              { "x": 1947, "y": 3500 }
            ]
          }
        },
        {
          "description": "02",
          "boundingPoly": {
            "vertices": [
              { "x": 1943, "y": 3423 },
              { "x": 2127, "y": 3432 },
              { "x": 2123, "y": 3510 },
              { "x": 1939, "y": 3501 }
            ]
          }
        },
        {
          "description": "4",
          "boundingPoly": {
            "vertices": [
              { "x": 2320, "y": 3440 },
              { "x": 2394, "y": 3444 },
              { "x": 2390, "y": 3521 },
              { "x": 2316, "y": 3518 }
            ]
          }
        },
        {
          "description": "RESTE",
          "boundingPoly": {
            "vertices": [
              { "x": 495, "y": 3776 },
              { "x": 698, "y": 3770 },
              { "x": 700, "y": 3853 },
              { "x": 497, "y": 3859 }
            ]
          }
        },
        {
          "description": "A",
          "boundingPoly": {
            "vertices": [
              { "x": 734, "y": 3770 },
              { "x": 778, "y": 3769 },
              { "x": 780, "y": 3851 },
              { "x": 736, "y": 3852 }
            ]
          }
        },
        {
          "description": "PAYER",
          "boundingPoly": {
            "vertices": [
              { "x": 814, "y": 3767 },
              { "x": 1009, "y": 3762 },
              { "x": 1011, "y": 3844 },
              { "x": 816, "y": 3850 }
            ]
          }
        },
        {
          "description": "15.86",
          "boundingPoly": {
            "vertices": [
              { "x": 2189, "y": 3787 },
              { "x": 2390, "y": 3791 },
              { "x": 2388, "y": 3873 },
              { "x": 2187, "y": 3869 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2426, "y": 3792 },
              { "x": 2544, "y": 3794 },
              { "x": 2542, "y": 3875 },
              { "x": 2424, "y": 3873 }
            ]
          }
        },
        {
          "description": "PAIEMENT",
          "boundingPoly": {
            "vertices": [
              { "x": 1386, "y": 3972 },
              { "x": 1723, "y": 3982 },
              { "x": 1719, "y": 4109 },
              { "x": 1382, "y": 4099 }
            ]
          }
        },
        {
          "description": "is",
          "boundingPoly": {
            "vertices": [
              { "x": 1847, "y": 3987 },
              { "x": 2088, "y": 3994 },
              { "x": 2084, "y": 4120 },
              { "x": 1843, "y": 4113 }
            ]
          }
        },
        {
          "description": "TR",
          "boundingPoly": {
            "vertices": [
              { "x": 614, "y": 4201 },
              { "x": 696, "y": 4202 },
              { "x": 695, "y": 4331 },
              { "x": 613, "y": 4330 }
            ]
          }
        },
        {
          "description": "Eligible",
          "boundingPoly": {
            "vertices": [
              { "x": 730, "y": 4201 },
              { "x": 1052, "y": 4203 },
              { "x": 1051, "y": 4333 },
              { "x": 729, "y": 4331 }
            ]
          }
        },
        {
          "description": "(",
          "boundingPoly": {
            "vertices": [
              { "x": 1054, "y": 4204 },
              { "x": 1085, "y": 4204 },
              { "x": 1084, "y": 4333 },
              { "x": 1053, "y": 4333 }
            ]
          }
        },
        {
          "description": "15.86",
          "boundingPoly": {
            "vertices": [
              { "x": 1088, "y": 4204 },
              { "x": 1299, "y": 4206 },
              { "x": 1298, "y": 4335 },
              { "x": 1087, "y": 4333 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 1320, "y": 4206 },
              { "x": 1441, "y": 4207 },
              { "x": 1440, "y": 4336 },
              { "x": 1319, "y": 4335 }
            ]
          }
        },
        {
          "description": ")",
          "boundingPoly": {
            "vertices": [
              { "x": 1439, "y": 4206 },
              { "x": 1480, "y": 4206 },
              { "x": 1479, "y": 4335 },
              { "x": 1438, "y": 4335 }
            ]
          }
        },
        {
          "description": "aid",
          "boundingPoly": {
            "vertices": [
              { "x": 1655, "y": 4208 },
              { "x": 1881, "y": 4210 },
              { "x": 1880, "y": 4339 },
              { "x": 1654, "y": 4337 }
            ]
          }
        },
        {
          "description": "an",
          "boundingPoly": {
            "vertices": [
              { "x": 1939, "y": 4210 },
              { "x": 2110, "y": 4211 },
              { "x": 2109, "y": 4340 },
              { "x": 1938, "y": 4339 }
            ]
          }
        },
        {
          "description": "TRD3",
          "boundingPoly": {
            "vertices": [
              { "x": 499, "y": 4357 },
              { "x": 652, "y": 4353 },
              { "x": 654, "y": 4419 },
              { "x": 501, "y": 4423 }
            ]
          }
        },
        {
          "description": "162",
          "boundingPoly": {
            "vertices": [
              { "x": 2067, "y": 4242 },
              { "x": 2295, "y": 4259 },
              { "x": 2288, "y": 4361 },
              { "x": 2060, "y": 4345 }
            ]
          }
        },
        {
          "description": "15.86",
          "boundingPoly": {
            "vertices": [
              { "x": 2174, "y": 4357 },
              { "x": 2372, "y": 4344 },
              { "x": 2377, "y": 4429 },
              { "x": 2180, "y": 4443 }
            ]
          }
        },
        {
          "description": "EUR",
          "boundingPoly": {
            "vertices": [
              { "x": 2410, "y": 4341 },
              { "x": 2508, "y": 4334 },
              { "x": 2514, "y": 4419 },
              { "x": 2416, "y": 4426 }
            ]
          }
        },
        {
          "description": "MA",
          "boundingPoly": {
            "vertices": [
              { "x": 1240, "y": 4551 },
              { "x": 1324, "y": 4552 },
              { "x": 1324, "y": 4607 },
              { "x": 1240, "y": 4607 }
            ]
          }
        },
        {
          "description": "CARTE",
          "boundingPoly": {
            "vertices": [
              { "x": 1359, "y": 4551 },
              { "x": 1552, "y": 4552 },
              { "x": 1552, "y": 4607 },
              { "x": 1359, "y": 4607 }
            ]
          }
        },
        {
          "description": "DE",
          "boundingPoly": {
            "vertices": [
              { "x": 1587, "y": 4553 },
              { "x": 1672, "y": 4554 },
              { "x": 1672, "y": 4607 },
              { "x": 1587, "y": 4607 }
            ]
          }
        },
        {
          "description": "FIDELITE",
          "boundingPoly": {
            "vertices": [
              { "x": 1704, "y": 4553 },
              { "x": 2018, "y": 4555 },
              { "x": 2018, "y": 4607 },
              { "x": 1704, "y": 4607 }
            ]
          }
        }
      ],
      "safeSearchAnnotation": {
        "adult": "VERY_UNLIKELY",
        "spoof": "VERY_UNLIKELY",
        "medical": "UNLIKELY",
        "violence": "VERY_UNLIKELY",
        "racy": "VERY_UNLIKELY"
      },
      "fullTextAnnotation": {
        "pages": [
          {
            "property": {
              "detectedLanguages": [
                { "languageCode": "fr", "confidence": 0.4761183 },
                { "languageCode": "en", "confidence": 0.2163128 },
                { "languageCode": "sk", "confidence": 0.1255322 },
                { "languageCode": "ro", "confidence": 0.035016567 }
              ]
            },
            "width": 3456,
            "height": 4608,
            "blocks": [
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1295, "y": 280 },
                    { "x": 2000, "y": 284 },
                    { "x": 1999, "y": 379 },
                    { "x": 1294, "y": 375 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1295, "y": 280 },
                        { "x": 2000, "y": 284 },
                        { "x": 1999, "y": 379 },
                        { "x": 1294, "y": 375 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1295, "y": 280 },
                            { "x": 2000, "y": 284 },
                            { "x": 1999, "y": 379 },
                            { "x": 1294, "y": 375 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1295, "y": 281 },
                                { "x": 1391, "y": 282 },
                                { "x": 1390, "y": 376 },
                                { "x": 1294, "y": 375 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1404, "y": 281 },
                                { "x": 1505, "y": 282 },
                                { "x": 1504, "y": 376 },
                                { "x": 1403, "y": 375 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1513, "y": 282 },
                                { "x": 1597, "y": 282 },
                                { "x": 1596, "y": 376 },
                                { "x": 1512, "y": 376 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1608, "y": 282 },
                                { "x": 1709, "y": 283 },
                                { "x": 1708, "y": 377 },
                                { "x": 1607, "y": 376 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1719, "y": 283 },
                                { "x": 1788, "y": 283 },
                                { "x": 1787, "y": 377 },
                                { "x": 1718, "y": 377 }
                              ]
                            },
                            "text": "P"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1795, "y": 283 },
                                { "x": 1875, "y": 283 },
                                { "x": 1874, "y": 377 },
                                { "x": 1794, "y": 377 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1882, "y": 284 },
                                { "x": 1919, "y": 284 },
                                { "x": 1918, "y": 378 },
                                { "x": 1881, "y": 378 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1920, "y": 284 },
                                { "x": 2000, "y": 284 },
                                { "x": 1999, "y": 378 },
                                { "x": 1919, "y": 378 }
                              ]
                            },
                            "text": "X"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1034, "y": 687 },
                    { "x": 2241, "y": 687 },
                    { "x": 2241, "y": 779 },
                    { "x": 1034, "y": 779 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1034, "y": 687 },
                        { "x": 2241, "y": 687 },
                        { "x": 2241, "y": 779 },
                        { "x": 1034, "y": 779 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1034, "y": 687 },
                            { "x": 2241, "y": 687 },
                            { "x": 2241, "y": 779 },
                            { "x": 1034, "y": 779 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1034, "y": 687 },
                                { "x": 1074, "y": 687 },
                                { "x": 1074, "y": 779 },
                                { "x": 1034, "y": 779 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1085, "y": 687 },
                                { "x": 1126, "y": 687 },
                                { "x": 1126, "y": 779 },
                                { "x": 1085, "y": 779 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1143, "y": 687 },
                                { "x": 1181, "y": 687 },
                                { "x": 1181, "y": 779 },
                                { "x": 1143, "y": 779 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1186, "y": 687 },
                                { "x": 1230, "y": 687 },
                                { "x": 1230, "y": 779 },
                                { "x": 1186, "y": 779 }
                              ]
                            },
                            "text": "7"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1236, "y": 687 },
                                { "x": 1281, "y": 687 },
                                { "x": 1281, "y": 779 },
                                { "x": 1236, "y": 779 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1288, "y": 687 },
                                { "x": 1327, "y": 687 },
                                { "x": 1327, "y": 779 },
                                { "x": 1288, "y": 779 }
                              ]
                            },
                            "text": "9"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1337, "y": 687 },
                                { "x": 1380, "y": 687 },
                                { "x": 1380, "y": 779 },
                                { "x": 1337, "y": 779 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1387, "y": 687 },
                                { "x": 1434, "y": 687 },
                                { "x": 1434, "y": 779 },
                                { "x": 1387, "y": 779 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1439, "y": 687 },
                                { "x": 1480, "y": 687 },
                                { "x": 1480, "y": 779 },
                                { "x": 1439, "y": 779 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1489, "y": 687 },
                                { "x": 1539, "y": 687 },
                                { "x": 1539, "y": 779 },
                                { "x": 1489, "y": 779 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1541, "y": 687 },
                                { "x": 1582, "y": 687 },
                                { "x": 1582, "y": 779 },
                                { "x": 1541, "y": 779 }
                              ]
                            },
                            "text": "7"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1591, "y": 687 },
                                { "x": 1634, "y": 687 },
                                { "x": 1634, "y": 779 },
                                { "x": 1591, "y": 779 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1641, "y": 687 },
                                { "x": 1682, "y": 687 },
                                { "x": 1682, "y": 779 },
                                { "x": 1641, "y": 779 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1687, "y": 687 },
                                { "x": 1737, "y": 687 },
                                { "x": 1737, "y": 779 },
                                { "x": 1687, "y": 779 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1742, "y": 687 },
                                { "x": 1791, "y": 687 },
                                { "x": 1791, "y": 779 },
                                { "x": 1742, "y": 779 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1799, "y": 687 },
                                { "x": 1839, "y": 687 },
                                { "x": 1839, "y": 779 },
                                { "x": 1799, "y": 779 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1849, "y": 687 },
                                { "x": 1889, "y": 687 },
                                { "x": 1889, "y": 779 },
                                { "x": 1849, "y": 779 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1900, "y": 687 },
                                { "x": 1937, "y": 687 },
                                { "x": 1937, "y": 779 },
                                { "x": 1900, "y": 779 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1954, "y": 687 },
                                { "x": 1983, "y": 687 },
                                { "x": 1983, "y": 779 },
                                { "x": 1954, "y": 779 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1998, "y": 687 },
                                { "x": 2043, "y": 687 },
                                { "x": 2043, "y": 779 },
                                { "x": 1998, "y": 779 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2051, "y": 687 },
                                { "x": 2094, "y": 687 },
                                { "x": 2094, "y": 779 },
                                { "x": 2051, "y": 779 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2100, "y": 687 },
                                { "x": 2149, "y": 687 },
                                { "x": 2149, "y": 779 },
                                { "x": 2100, "y": 779 }
                              ]
                            },
                            "text": "7"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2144, "y": 687 },
                                { "x": 2189, "y": 687 },
                                { "x": 2189, "y": 779 },
                                { "x": 2144, "y": 779 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2197, "y": 687 },
                                { "x": 2241, "y": 687 },
                                { "x": 2241, "y": 779 },
                                { "x": 2197, "y": 779 }
                              ]
                            },
                            "text": "7"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1151, "y": 886 },
                    { "x": 2128, "y": 891 },
                    { "x": 2127, "y": 1207 },
                    { "x": 1150, "y": 1202 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1152, "y": 886 },
                        { "x": 2128, "y": 895 },
                        { "x": 2126, "y": 1089 },
                        { "x": 1150, "y": 1080 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1152, "y": 886 },
                            { "x": 1465, "y": 889 },
                            { "x": 1464, "y": 968 },
                            { "x": 1151, "y": 965 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1152, "y": 887 },
                                { "x": 1194, "y": 887 },
                                { "x": 1193, "y": 965 },
                                { "x": 1151, "y": 965 }
                              ]
                            },
                            "text": "G"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1186, "y": 887 },
                                { "x": 1228, "y": 887 },
                                { "x": 1227, "y": 965 },
                                { "x": 1185, "y": 965 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1234, "y": 887 },
                                { "x": 1268, "y": 887 },
                                { "x": 1267, "y": 965 },
                                { "x": 1233, "y": 965 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1266, "y": 888 },
                                { "x": 1307, "y": 888 },
                                { "x": 1306, "y": 966 },
                                { "x": 1265, "y": 966 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1308, "y": 888 },
                                { "x": 1348, "y": 888 },
                                { "x": 1347, "y": 966 },
                                { "x": 1307, "y": 966 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1344, "y": 888 },
                                { "x": 1385, "y": 888 },
                                { "x": 1384, "y": 966 },
                                { "x": 1343, "y": 966 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1385, "y": 889 },
                                { "x": 1422, "y": 889 },
                                { "x": 1421, "y": 967 },
                                { "x": 1384, "y": 967 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1429, "y": 889 },
                                { "x": 1465, "y": 889 },
                                { "x": 1464, "y": 967 },
                                { "x": 1428, "y": 967 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1499, "y": 890 },
                            { "x": 1779, "y": 893 },
                            { "x": 1778, "y": 971 },
                            { "x": 1498, "y": 968 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1499, "y": 890 },
                                { "x": 1541, "y": 890 },
                                { "x": 1540, "y": 968 },
                                { "x": 1498, "y": 968 }
                              ]
                            },
                            "text": "C"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1539, "y": 890 },
                                { "x": 1584, "y": 890 },
                                { "x": 1583, "y": 968 },
                                { "x": 1538, "y": 968 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1576, "y": 891 },
                                { "x": 1620, "y": 891 },
                                { "x": 1619, "y": 969 },
                                { "x": 1575, "y": 969 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1623, "y": 891 },
                                { "x": 1661, "y": 891 },
                                { "x": 1660, "y": 969 },
                                { "x": 1622, "y": 969 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1656, "y": 891 },
                                { "x": 1702, "y": 891 },
                                { "x": 1701, "y": 969 },
                                { "x": 1655, "y": 969 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1696, "y": 892 },
                                { "x": 1740, "y": 892 },
                                { "x": 1739, "y": 970 },
                                { "x": 1695, "y": 970 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1740, "y": 892 },
                                { "x": 1779, "y": 892 },
                                { "x": 1778, "y": 970 },
                                { "x": 1739, "y": 970 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1818, "y": 893 },
                            { "x": 1898, "y": 894 },
                            { "x": 1897, "y": 972 },
                            { "x": 1817, "y": 971 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1818, "y": 893 },
                                { "x": 1860, "y": 893 },
                                { "x": 1859, "y": 971 },
                                { "x": 1817, "y": 971 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1864, "y": 893 },
                                { "x": 1898, "y": 893 },
                                { "x": 1897, "y": 971 },
                                { "x": 1863, "y": 971 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1936, "y": 893 },
                            { "x": 2128, "y": 895 },
                            { "x": 2127, "y": 974 },
                            { "x": 1935, "y": 972 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1936, "y": 894 },
                                { "x": 1976, "y": 894 },
                                { "x": 1975, "y": 972 },
                                { "x": 1935, "y": 972 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1973, "y": 894 },
                                { "x": 2016, "y": 894 },
                                { "x": 2015, "y": 972 },
                                { "x": 1972, "y": 972 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2016, "y": 895 },
                                { "x": 2055, "y": 895 },
                                { "x": 2054, "y": 973 },
                                { "x": 2015, "y": 973 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2045, "y": 895 },
                                { "x": 2089, "y": 895 },
                                { "x": 2088, "y": 973 },
                                { "x": 2044, "y": 973 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "EOL_SURE_SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2097, "y": 895 },
                                { "x": 2128, "y": 895 },
                                { "x": 2127, "y": 973 },
                                { "x": 2096, "y": 973 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1341, "y": 1003 },
                            { "x": 1425, "y": 1004 },
                            { "x": 1424, "y": 1083 },
                            { "x": 1340, "y": 1082 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1341, "y": 1003 },
                                { "x": 1377, "y": 1003 },
                                { "x": 1376, "y": 1082 },
                                { "x": 1340, "y": 1082 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1376, "y": 1003 },
                                { "x": 1425, "y": 1003 },
                                { "x": 1424, "y": 1082 },
                                { "x": 1375, "y": 1082 }
                              ]
                            },
                            "text": "5"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1464, "y": 1003 },
                            { "x": 1582, "y": 1004 },
                            { "x": 1581, "y": 1084 },
                            { "x": 1463, "y": 1083 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1464, "y": 1004 },
                                { "x": 1501, "y": 1004 },
                                { "x": 1500, "y": 1083 },
                                { "x": 1463, "y": 1083 }
                              ]
                            },
                            "text": "r"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1497, "y": 1004 },
                                { "x": 1538, "y": 1004 },
                                { "x": 1537, "y": 1083 },
                                { "x": 1496, "y": 1083 }
                              ]
                            },
                            "text": "u"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1538, "y": 1004 },
                                { "x": 1582, "y": 1004 },
                                { "x": 1581, "y": 1083 },
                                { "x": 1537, "y": 1083 }
                              ]
                            },
                            "text": "e"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1613, "y": 1005 },
                            { "x": 1901, "y": 1008 },
                            { "x": 1900, "y": 1087 },
                            { "x": 1612, "y": 1084 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1613, "y": 1005 },
                                { "x": 1656, "y": 1005 },
                                { "x": 1655, "y": 1084 },
                                { "x": 1612, "y": 1084 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1652, "y": 1005 },
                                { "x": 1698, "y": 1005 },
                                { "x": 1697, "y": 1084 },
                                { "x": 1651, "y": 1084 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1694, "y": 1006 },
                                { "x": 1736, "y": 1006 },
                                { "x": 1735, "y": 1085 },
                                { "x": 1693, "y": 1085 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1734, "y": 1006 },
                                { "x": 1777, "y": 1006 },
                                { "x": 1776, "y": 1085 },
                                { "x": 1733, "y": 1085 }
                              ]
                            },
                            "text": "C"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1776, "y": 1006 },
                                { "x": 1817, "y": 1006 },
                                { "x": 1816, "y": 1085 },
                                { "x": 1775, "y": 1085 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1809, "y": 1007 },
                                { "x": 1857, "y": 1007 },
                                { "x": 1856, "y": 1086 },
                                { "x": 1808, "y": 1086 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1857, "y": 1007 },
                                { "x": 1901, "y": 1007 },
                                { "x": 1900, "y": 1086 },
                                { "x": 1856, "y": 1086 }
                              ]
                            },
                            "text": "U"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1337, "y": 1119 },
                        { "x": 2123, "y": 1119 },
                        { "x": 2123, "y": 1203 },
                        { "x": 1337, "y": 1203 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1337, "y": 1119 },
                            { "x": 1542, "y": 1119 },
                            { "x": 1542, "y": 1203 },
                            { "x": 1337, "y": 1203 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1337, "y": 1119 },
                                { "x": 1380, "y": 1119 },
                                { "x": 1380, "y": 1203 },
                                { "x": 1337, "y": 1203 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1381, "y": 1119 },
                                { "x": 1424, "y": 1119 },
                                { "x": 1424, "y": 1203 },
                                { "x": 1381, "y": 1203 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1419, "y": 1119 },
                                { "x": 1462, "y": 1119 },
                                { "x": 1462, "y": 1203 },
                                { "x": 1419, "y": 1203 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1458, "y": 1119 },
                                { "x": 1503, "y": 1119 },
                                { "x": 1503, "y": 1203 },
                                { "x": 1458, "y": 1203 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1497, "y": 1119 },
                                { "x": 1542, "y": 1119 },
                                { "x": 1542, "y": 1203 },
                                { "x": 1497, "y": 1203 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1610, "y": 1119 },
                            { "x": 1931, "y": 1119 },
                            { "x": 1931, "y": 1203 },
                            { "x": 1610, "y": 1203 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1610, "y": 1119 },
                                { "x": 1656, "y": 1119 },
                                { "x": 1656, "y": 1203 },
                                { "x": 1610, "y": 1203 }
                              ]
                            },
                            "text": "G"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1653, "y": 1119 },
                                { "x": 1698, "y": 1119 },
                                { "x": 1698, "y": 1203 },
                                { "x": 1653, "y": 1203 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1698, "y": 1119 },
                                { "x": 1733, "y": 1119 },
                                { "x": 1733, "y": 1203 },
                                { "x": 1698, "y": 1203 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1732, "y": 1119 },
                                { "x": 1774, "y": 1119 },
                                { "x": 1774, "y": 1203 },
                                { "x": 1732, "y": 1203 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1775, "y": 1119 },
                                { "x": 1814, "y": 1119 },
                                { "x": 1814, "y": 1203 },
                                { "x": 1775, "y": 1203 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1810, "y": 1119 },
                                { "x": 1853, "y": 1119 },
                                { "x": 1853, "y": 1203 },
                                { "x": 1810, "y": 1203 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1855, "y": 1119 },
                                { "x": 1894, "y": 1119 },
                                { "x": 1894, "y": 1203 },
                                { "x": 1855, "y": 1203 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1896, "y": 1119 },
                                { "x": 1931, "y": 1119 },
                                { "x": 1931, "y": 1203 },
                                { "x": 1896, "y": 1203 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2036, "y": 1119 },
                            { "x": 2123, "y": 1119 },
                            { "x": 2123, "y": 1203 },
                            { "x": 2036, "y": 1203 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2036, "y": 1119 },
                                { "x": 2123, "y": 1119 },
                                { "x": 2123, "y": 1203 },
                                { "x": 2036, "y": 1203 }
                              ]
                            },
                            "text": "2"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 791, "y": 1222 },
                    { "x": 2474, "y": 1242 },
                    { "x": 2470, "y": 1572 },
                    { "x": 787, "y": 1552 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 791, "y": 1222 },
                        { "x": 2474, "y": 1242 },
                        { "x": 2470, "y": 1572 },
                        { "x": 787, "y": 1552 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 791, "y": 1222 },
                            { "x": 1033, "y": 1226 },
                            { "x": 1032, "y": 1314 },
                            { "x": 790, "y": 1310 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 791, "y": 1223 },
                                { "x": 835, "y": 1224 },
                                { "x": 834, "y": 1311 },
                                { "x": 790, "y": 1310 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 826, "y": 1223 },
                                { "x": 864, "y": 1224 },
                                { "x": 863, "y": 1311 },
                                { "x": 825, "y": 1310 }
                              ]
                            },
                            "text": "u"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 867, "y": 1224 },
                                { "x": 911, "y": 1225 },
                                { "x": 910, "y": 1312 },
                                { "x": 866, "y": 1311 }
                              ]
                            },
                            "text": "v"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 902, "y": 1224 },
                                { "x": 947, "y": 1225 },
                                { "x": 946, "y": 1312 },
                                { "x": 901, "y": 1311 }
                              ]
                            },
                            "text": "e"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 949, "y": 1225 },
                                { "x": 986, "y": 1226 },
                                { "x": 985, "y": 1313 },
                                { "x": 948, "y": 1312 }
                              ]
                            },
                            "text": "r"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 989, "y": 1226 },
                                { "x": 1033, "y": 1227 },
                                { "x": 1032, "y": 1314 },
                                { "x": 988, "y": 1313 }
                              ]
                            },
                            "text": "t"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1062, "y": 1227 },
                            { "x": 1143, "y": 1228 },
                            { "x": 1142, "y": 1315 },
                            { "x": 1061, "y": 1314 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1062, "y": 1227 },
                                { "x": 1107, "y": 1228 },
                                { "x": 1106, "y": 1315 },
                                { "x": 1061, "y": 1314 }
                              ]
                            },
                            "text": "d"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1103, "y": 1228 },
                                { "x": 1143, "y": 1229 },
                                { "x": 1142, "y": 1316 },
                                { "x": 1102, "y": 1315 }
                              ]
                            },
                            "text": "u"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1180, "y": 1228 },
                            { "x": 1376, "y": 1231 },
                            { "x": 1375, "y": 1319 },
                            { "x": 1179, "y": 1316 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1180, "y": 1229 },
                                { "x": 1227, "y": 1230 },
                                { "x": 1226, "y": 1317 },
                                { "x": 1179, "y": 1316 }
                              ]
                            },
                            "text": "l"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1219, "y": 1229 },
                                { "x": 1258, "y": 1230 },
                                { "x": 1257, "y": 1317 },
                                { "x": 1218, "y": 1316 }
                              ]
                            },
                            "text": "u"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1259, "y": 1230 },
                                { "x": 1304, "y": 1231 },
                                { "x": 1303, "y": 1318 },
                                { "x": 1258, "y": 1317 }
                              ]
                            },
                            "text": "n"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1302, "y": 1231 },
                                { "x": 1343, "y": 1232 },
                                { "x": 1342, "y": 1319 },
                                { "x": 1301, "y": 1318 }
                              ]
                            },
                            "text": "d"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1347, "y": 1231 },
                                { "x": 1376, "y": 1231 },
                                { "x": 1375, "y": 1318 },
                                { "x": 1346, "y": 1318 }
                              ]
                            },
                            "text": "i"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1416, "y": 1232 },
                            { "x": 1496, "y": 1233 },
                            { "x": 1495, "y": 1321 },
                            { "x": 1415, "y": 1320 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1416, "y": 1233 },
                                { "x": 1455, "y": 1234 },
                                { "x": 1454, "y": 1321 },
                                { "x": 1415, "y": 1320 }
                              ]
                            },
                            "text": "a"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1459, "y": 1233 },
                                { "x": 1496, "y": 1234 },
                                { "x": 1495, "y": 1321 },
                                { "x": 1458, "y": 1320 }
                              ]
                            },
                            "text": "u"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1538, "y": 1234 },
                            { "x": 1770, "y": 1238 },
                            { "x": 1769, "y": 1326 },
                            { "x": 1537, "y": 1322 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1538, "y": 1235 },
                                { "x": 1573, "y": 1236 },
                                { "x": 1572, "y": 1323 },
                                { "x": 1537, "y": 1322 }
                              ]
                            },
                            "text": "s"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1575, "y": 1235 },
                                { "x": 1610, "y": 1236 },
                                { "x": 1609, "y": 1323 },
                                { "x": 1574, "y": 1322 }
                              ]
                            },
                            "text": "a"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1618, "y": 1236 },
                                { "x": 1655, "y": 1237 },
                                { "x": 1654, "y": 1324 },
                                { "x": 1617, "y": 1323 }
                              ]
                            },
                            "text": "m"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1653, "y": 1236 },
                                { "x": 1693, "y": 1237 },
                                { "x": 1692, "y": 1324 },
                                { "x": 1652, "y": 1323 }
                              ]
                            },
                            "text": "e"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1696, "y": 1237 },
                                { "x": 1735, "y": 1238 },
                                { "x": 1734, "y": 1325 },
                                { "x": 1695, "y": 1324 }
                              ]
                            },
                            "text": "d"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1741, "y": 1238 },
                                { "x": 1770, "y": 1238 },
                                { "x": 1769, "y": 1325 },
                                { "x": 1740, "y": 1325 }
                              ]
                            },
                            "text": "i"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1811, "y": 1239 },
                            { "x": 1891, "y": 1240 },
                            { "x": 1890, "y": 1327 },
                            { "x": 1810, "y": 1326 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1811, "y": 1239 },
                                { "x": 1850, "y": 1240 },
                                { "x": 1849, "y": 1327 },
                                { "x": 1810, "y": 1326 }
                              ]
                            },
                            "text": "d"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1854, "y": 1240 },
                                { "x": 1891, "y": 1241 },
                                { "x": 1890, "y": 1328 },
                                { "x": 1853, "y": 1327 }
                              ]
                            },
                            "text": "e"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1931, "y": 1240 },
                            { "x": 2128, "y": 1243 },
                            { "x": 2127, "y": 1331 },
                            { "x": 1930, "y": 1328 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1931, "y": 1241 },
                                { "x": 1970, "y": 1242 },
                                { "x": 1969, "y": 1329 },
                                { "x": 1930, "y": 1328 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1969, "y": 1242 },
                                { "x": 2011, "y": 1243 },
                                { "x": 2010, "y": 1330 },
                                { "x": 1968, "y": 1329 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2009, "y": 1242 },
                                { "x": 2049, "y": 1243 },
                                { "x": 2048, "y": 1330 },
                                { "x": 2008, "y": 1329 }
                              ]
                            },
                            "text": "h"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2046, "y": 1243 },
                                { "x": 2086, "y": 1244 },
                                { "x": 2085, "y": 1331 },
                                { "x": 2045, "y": 1330 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2090, "y": 1243 },
                                { "x": 2128, "y": 1244 },
                                { "x": 2127, "y": 1331 },
                                { "x": 2089, "y": 1330 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2163, "y": 1245 },
                            { "x": 2209, "y": 1246 },
                            { "x": 2208, "y": 1333 },
                            { "x": 2162, "y": 1332 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2163, "y": 1245 },
                                { "x": 2209, "y": 1246 },
                                { "x": 2208, "y": 1333 },
                                { "x": 2162, "y": 1332 }
                              ]
                            },
                            "text": "A"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2276, "y": 1246 },
                            { "x": 2474, "y": 1249 },
                            { "x": 2473, "y": 1337 },
                            { "x": 2275, "y": 1334 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2276, "y": 1246 },
                                { "x": 2323, "y": 1247 },
                                { "x": 2322, "y": 1334 },
                                { "x": 2275, "y": 1333 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2324, "y": 1247 },
                                { "x": 2355, "y": 1248 },
                                { "x": 2354, "y": 1334 },
                                { "x": 2323, "y": 1334 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2356, "y": 1248 },
                                { "x": 2398, "y": 1249 },
                                { "x": 2397, "y": 1336 },
                                { "x": 2355, "y": 1335 }
                              ]
                            },
                            "text": "h"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2395, "y": 1248 },
                                { "x": 2438, "y": 1249 },
                                { "x": 2437, "y": 1336 },
                                { "x": 2394, "y": 1335 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "EOL_SURE_SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2432, "y": 1249 },
                                { "x": 2474, "y": 1250 },
                                { "x": 2473, "y": 1337 },
                                { "x": 2431, "y": 1336 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1142, "y": 1351 },
                            { "x": 1225, "y": 1352 },
                            { "x": 1224, "y": 1439 },
                            { "x": 1141, "y": 1438 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1142, "y": 1351 },
                                { "x": 1187, "y": 1351 },
                                { "x": 1186, "y": 1438 },
                                { "x": 1141, "y": 1438 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1181, "y": 1351 },
                                { "x": 1225, "y": 1351 },
                                { "x": 1224, "y": 1438 },
                                { "x": 1180, "y": 1438 }
                              ]
                            },
                            "text": "e"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1261, "y": 1351 },
                            { "x": 1579, "y": 1354 },
                            { "x": 1578, "y": 1442 },
                            { "x": 1260, "y": 1439 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1261, "y": 1352 },
                                { "x": 1303, "y": 1352 },
                                { "x": 1302, "y": 1439 },
                                { "x": 1260, "y": 1439 }
                              ]
                            },
                            "text": "d"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1312, "y": 1352 },
                                { "x": 1334, "y": 1352 },
                                { "x": 1333, "y": 1439 },
                                { "x": 1311, "y": 1439 }
                              ]
                            },
                            "text": "i"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1344, "y": 1352 },
                                { "x": 1382, "y": 1352 },
                                { "x": 1381, "y": 1439 },
                                { "x": 1343, "y": 1439 }
                              ]
                            },
                            "text": "m"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1381, "y": 1353 },
                                { "x": 1419, "y": 1353 },
                                { "x": 1418, "y": 1440 },
                                { "x": 1380, "y": 1440 }
                              ]
                            },
                            "text": "a"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1419, "y": 1353 },
                                { "x": 1459, "y": 1353 },
                                { "x": 1458, "y": 1440 },
                                { "x": 1418, "y": 1440 }
                              ]
                            },
                            "text": "n"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1457, "y": 1353 },
                                { "x": 1498, "y": 1353 },
                                { "x": 1497, "y": 1440 },
                                { "x": 1456, "y": 1440 }
                              ]
                            },
                            "text": "c"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1492, "y": 1354 },
                                { "x": 1536, "y": 1354 },
                                { "x": 1535, "y": 1441 },
                                { "x": 1491, "y": 1441 }
                              ]
                            },
                            "text": "h"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1538, "y": 1354 },
                                { "x": 1579, "y": 1354 },
                                { "x": 1578, "y": 1441 },
                                { "x": 1537, "y": 1441 }
                              ]
                            },
                            "text": "e"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1615, "y": 1354 },
                            { "x": 1816, "y": 1356 },
                            { "x": 1815, "y": 1444 },
                            { "x": 1614, "y": 1442 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1615, "y": 1355 },
                                { "x": 1656, "y": 1355 },
                                { "x": 1655, "y": 1442 },
                                { "x": 1614, "y": 1442 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1655, "y": 1355 },
                                { "x": 1697, "y": 1355 },
                                { "x": 1696, "y": 1442 },
                                { "x": 1654, "y": 1442 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1693, "y": 1355 },
                                { "x": 1738, "y": 1355 },
                                { "x": 1737, "y": 1442 },
                                { "x": 1692, "y": 1442 }
                              ]
                            },
                            "text": "h"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1735, "y": 1356 },
                                { "x": 1773, "y": 1356 },
                                { "x": 1772, "y": 1443 },
                                { "x": 1734, "y": 1443 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1772, "y": 1356 },
                                { "x": 1816, "y": 1356 },
                                { "x": 1815, "y": 1443 },
                                { "x": 1771, "y": 1443 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1849, "y": 1357 },
                            { "x": 1893, "y": 1357 },
                            { "x": 1892, "y": 1444 },
                            { "x": 1848, "y": 1444 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1849, "y": 1357 },
                                { "x": 1893, "y": 1357 },
                                { "x": 1892, "y": 1444 },
                                { "x": 1848, "y": 1444 }
                              ]
                            },
                            "text": "a"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1931, "y": 1357 },
                            { "x": 2127, "y": 1359 },
                            { "x": 2126, "y": 1447 },
                            { "x": 1930, "y": 1445 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1931, "y": 1358 },
                                { "x": 1961, "y": 1358 },
                                { "x": 1960, "y": 1445 },
                                { "x": 1930, "y": 1445 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1965, "y": 1358 },
                                { "x": 2009, "y": 1358 },
                                { "x": 2008, "y": 1445 },
                                { "x": 1964, "y": 1445 }
                              ]
                            },
                            "text": "9"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2004, "y": 1358 },
                                { "x": 2050, "y": 1358 },
                                { "x": 2049, "y": 1445 },
                                { "x": 2003, "y": 1445 }
                              ]
                            },
                            "text": "h"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2044, "y": 1359 },
                                { "x": 2085, "y": 1359 },
                                { "x": 2084, "y": 1446 },
                                { "x": 2043, "y": 1446 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "EOL_SURE_SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2084, "y": 1359 },
                                { "x": 2127, "y": 1359 },
                                { "x": 2126, "y": 1446 },
                                { "x": 2083, "y": 1446 }
                              ]
                            },
                            "text": "5"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1246, "y": 1470 },
                            { "x": 1367, "y": 1471 },
                            { "x": 1366, "y": 1558 },
                            { "x": 1245, "y": 1557 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1246, "y": 1471 },
                                { "x": 1281, "y": 1471 },
                                { "x": 1280, "y": 1557 },
                                { "x": 1245, "y": 1557 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1280, "y": 1471 },
                                { "x": 1321, "y": 1471 },
                                { "x": 1320, "y": 1557 },
                                { "x": 1279, "y": 1557 }
                              ]
                            },
                            "text": "e"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1328, "y": 1471 },
                                { "x": 1367, "y": 1471 },
                                { "x": 1366, "y": 1557 },
                                { "x": 1327, "y": 1557 }
                              ]
                            },
                            "text": "l"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1408, "y": 1472 },
                            { "x": 1430, "y": 1472 },
                            { "x": 1429, "y": 1558 },
                            { "x": 1407, "y": 1558 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1408, "y": 1472 },
                                { "x": 1430, "y": 1472 },
                                { "x": 1429, "y": 1558 },
                                { "x": 1407, "y": 1558 }
                              ]
                            },
                            "text": ":"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1477, "y": 1472 },
                            { "x": 2028, "y": 1477 },
                            { "x": 2027, "y": 1564 },
                            { "x": 1476, "y": 1559 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1477, "y": 1473 },
                                { "x": 1516, "y": 1473 },
                                { "x": 1515, "y": 1559 },
                                { "x": 1476, "y": 1559 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1515, "y": 1473 },
                                { "x": 1558, "y": 1473 },
                                { "x": 1557, "y": 1559 },
                                { "x": 1514, "y": 1559 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1562, "y": 1474 },
                                { "x": 1593, "y": 1474 },
                                { "x": 1592, "y": 1560 },
                                { "x": 1561, "y": 1560 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1597, "y": 1474 },
                                { "x": 1634, "y": 1474 },
                                { "x": 1633, "y": 1560 },
                                { "x": 1596, "y": 1560 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1634, "y": 1474 },
                                { "x": 1672, "y": 1474 },
                                { "x": 1671, "y": 1560 },
                                { "x": 1633, "y": 1560 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1684, "y": 1475 },
                                { "x": 1708, "y": 1475 },
                                { "x": 1707, "y": 1561 },
                                { "x": 1683, "y": 1561 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1713, "y": 1475 },
                                { "x": 1752, "y": 1475 },
                                { "x": 1751, "y": 1561 },
                                { "x": 1712, "y": 1561 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1755, "y": 1476 },
                                { "x": 1792, "y": 1476 },
                                { "x": 1791, "y": 1562 },
                                { "x": 1754, "y": 1562 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1799, "y": 1476 },
                                { "x": 1821, "y": 1476 },
                                { "x": 1820, "y": 1562 },
                                { "x": 1798, "y": 1562 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1830, "y": 1476 },
                                { "x": 1866, "y": 1476 },
                                { "x": 1865, "y": 1562 },
                                { "x": 1829, "y": 1562 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1870, "y": 1477 },
                                { "x": 1913, "y": 1477 },
                                { "x": 1912, "y": 1563 },
                                { "x": 1869, "y": 1563 }
                              ]
                            },
                            "text": "6"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1915, "y": 1477 },
                                { "x": 1943, "y": 1477 },
                                { "x": 1942, "y": 1563 },
                                { "x": 1914, "y": 1563 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1952, "y": 1478 },
                                { "x": 1980, "y": 1478 },
                                { "x": 1979, "y": 1564 },
                                { "x": 1951, "y": 1564 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1983, "y": 1478 },
                                { "x": 2028, "y": 1478 },
                                { "x": 2027, "y": 1564 },
                                { "x": 1982, "y": 1564 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1095, "y": 1708 },
                    { "x": 2174, "y": 1719 },
                    { "x": 2173, "y": 1802 },
                    { "x": 1094, "y": 1791 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1095, "y": 1708 },
                        { "x": 2174, "y": 1719 },
                        { "x": 2173, "y": 1802 },
                        { "x": 1094, "y": 1791 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1095, "y": 1708 },
                            { "x": 1403, "y": 1711 },
                            { "x": 1402, "y": 1794 },
                            { "x": 1094, "y": 1791 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1095, "y": 1709 },
                                { "x": 1122, "y": 1709 },
                                { "x": 1121, "y": 1791 },
                                { "x": 1094, "y": 1791 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1128, "y": 1709 },
                                { "x": 1167, "y": 1709 },
                                { "x": 1166, "y": 1791 },
                                { "x": 1127, "y": 1791 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1169, "y": 1709 },
                                { "x": 1209, "y": 1709 },
                                { "x": 1208, "y": 1791 },
                                { "x": 1168, "y": 1791 }
                              ]
                            },
                            "text": "/"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1204, "y": 1710 },
                                { "x": 1248, "y": 1710 },
                                { "x": 1247, "y": 1792 },
                                { "x": 1203, "y": 1792 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1248, "y": 1710 },
                                { "x": 1281, "y": 1710 },
                                { "x": 1280, "y": 1792 },
                                { "x": 1247, "y": 1792 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1288, "y": 1710 },
                                { "x": 1326, "y": 1710 },
                                { "x": 1325, "y": 1792 },
                                { "x": 1287, "y": 1792 }
                              ]
                            },
                            "text": "/"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1319, "y": 1711 },
                                { "x": 1361, "y": 1711 },
                                { "x": 1360, "y": 1793 },
                                { "x": 1318, "y": 1793 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1357, "y": 1711 },
                                { "x": 1403, "y": 1711 },
                                { "x": 1402, "y": 1793 },
                                { "x": 1356, "y": 1793 }
                              ]
                            },
                            "text": "5"
                          }
                        ]
                      },
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1433, "y": 1712 },
                            { "x": 1474, "y": 1712 },
                            { "x": 1473, "y": 1794 },
                            { "x": 1432, "y": 1794 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1433, "y": 1712 },
                                { "x": 1474, "y": 1712 },
                                { "x": 1473, "y": 1794 },
                                { "x": 1432, "y": 1794 }
                              ]
                            },
                            "text": "-"
                          }
                        ]
                      },
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1519, "y": 1712 },
                            { "x": 1713, "y": 1714 },
                            { "x": 1712, "y": 1797 },
                            { "x": 1518, "y": 1795 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1519, "y": 1713 },
                                { "x": 1549, "y": 1713 },
                                { "x": 1548, "y": 1795 },
                                { "x": 1518, "y": 1795 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1552, "y": 1713 },
                                { "x": 1597, "y": 1713 },
                                { "x": 1596, "y": 1795 },
                                { "x": 1551, "y": 1795 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1605, "y": 1714 },
                                { "x": 1629, "y": 1714 },
                                { "x": 1628, "y": 1796 },
                                { "x": 1604, "y": 1796 }
                              ]
                            },
                            "text": ":"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1628, "y": 1714 },
                                { "x": 1671, "y": 1714 },
                                { "x": 1670, "y": 1796 },
                                { "x": 1627, "y": 1796 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1671, "y": 1714 },
                                { "x": 1713, "y": 1714 },
                                { "x": 1712, "y": 1796 },
                                { "x": 1670, "y": 1796 }
                              ]
                            },
                            "text": "8"
                          }
                        ]
                      },
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1746, "y": 1715 },
                            { "x": 1873, "y": 1716 },
                            { "x": 1872, "y": 1798 },
                            { "x": 1745, "y": 1797 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1746, "y": 1715 },
                                { "x": 1790, "y": 1715 },
                                { "x": 1789, "y": 1797 },
                                { "x": 1745, "y": 1797 }
                              ]
                            },
                            "text": "9"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1782, "y": 1715 },
                                { "x": 1828, "y": 1715 },
                                { "x": 1827, "y": 1797 },
                                { "x": 1781, "y": 1797 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1825, "y": 1716 },
                                { "x": 1873, "y": 1716 },
                                { "x": 1872, "y": 1798 },
                                { "x": 1824, "y": 1798 }
                              ]
                            },
                            "text": "0"
                          }
                        ]
                      },
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1901, "y": 1717 },
                            { "x": 1985, "y": 1718 },
                            { "x": 1984, "y": 1800 },
                            { "x": 1900, "y": 1799 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1901, "y": 1717 },
                                { "x": 1943, "y": 1717 },
                                { "x": 1942, "y": 1799 },
                                { "x": 1900, "y": 1799 }
                              ]
                            },
                            "text": "9"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1938, "y": 1717 },
                                { "x": 1985, "y": 1717 },
                                { "x": 1984, "y": 1799 },
                                { "x": 1937, "y": 1799 }
                              ]
                            },
                            "text": "4"
                          }
                        ]
                      },
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 2015, "y": 1718 },
                            { "x": 2174, "y": 1720 },
                            { "x": 2173, "y": 1802 },
                            { "x": 2014, "y": 1800 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2015, "y": 1718 },
                                { "x": 2061, "y": 1718 },
                                { "x": 2060, "y": 1800 },
                                { "x": 2014, "y": 1800 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2057, "y": 1718 },
                                { "x": 2103, "y": 1718 },
                                { "x": 2102, "y": 1800 },
                                { "x": 2056, "y": 1800 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2095, "y": 1719 },
                                { "x": 2139, "y": 1719 },
                                { "x": 2138, "y": 1801 },
                                { "x": 2094, "y": 1801 }
                              ]
                            },
                            "text": "7"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2128, "y": 1719 },
                                { "x": 2174, "y": 1719 },
                                { "x": 2173, "y": 1801 },
                                { "x": 2127, "y": 1801 }
                              ]
                            },
                            "text": "4"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 508, "y": 2500 },
                    { "x": 1200, "y": 2500 },
                    { "x": 1200, "y": 2585 },
                    { "x": 508, "y": 2585 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 508, "y": 2500 },
                        { "x": 1200, "y": 2500 },
                        { "x": 1200, "y": 2585 },
                        { "x": 508, "y": 2585 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 508, "y": 2500 },
                            { "x": 816, "y": 2500 },
                            { "x": 816, "y": 2585 },
                            { "x": 508, "y": 2585 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 508, "y": 2500 },
                                { "x": 548, "y": 2500 },
                                { "x": 548, "y": 2585 },
                                { "x": 508, "y": 2585 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 539, "y": 2500 },
                                { "x": 584, "y": 2500 },
                                { "x": 584, "y": 2585 },
                                { "x": 539, "y": 2585 }
                              ]
                            },
                            "text": "P"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 586, "y": 2500 },
                                { "x": 620, "y": 2500 },
                                { "x": 620, "y": 2585 },
                                { "x": 586, "y": 2585 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 616, "y": 2500 },
                                { "x": 661, "y": 2500 },
                                { "x": 661, "y": 2585 },
                                { "x": 616, "y": 2585 }
                              ]
                            },
                            "text": "C"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 662, "y": 2500 },
                                { "x": 703, "y": 2500 },
                                { "x": 703, "y": 2585 },
                                { "x": 662, "y": 2585 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 691, "y": 2500 },
                                { "x": 737, "y": 2500 },
                                { "x": 737, "y": 2585 },
                                { "x": 691, "y": 2585 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 744, "y": 2500 },
                                { "x": 777, "y": 2500 },
                                { "x": 777, "y": 2585 },
                                { "x": 744, "y": 2585 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 778, "y": 2500 },
                                { "x": 816, "y": 2500 },
                                { "x": 816, "y": 2585 },
                                { "x": 778, "y": 2585 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 817, "y": 2500 },
                            { "x": 860, "y": 2500 },
                            { "x": 860, "y": 2585 },
                            { "x": 817, "y": 2585 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 817, "y": 2500 },
                                { "x": 860, "y": 2500 },
                                { "x": 860, "y": 2585 },
                                { "x": 817, "y": 2585 }
                              ]
                            },
                            "text": "/"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 851, "y": 2500 },
                            { "x": 1174, "y": 2500 },
                            { "x": 1174, "y": 2585 },
                            { "x": 851, "y": 2585 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 851, "y": 2500 },
                                { "x": 899, "y": 2500 },
                                { "x": 899, "y": 2585 },
                                { "x": 851, "y": 2585 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 890, "y": 2500 },
                                { "x": 938, "y": 2500 },
                                { "x": 938, "y": 2585 },
                                { "x": 890, "y": 2585 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 939, "y": 2500 },
                                { "x": 974, "y": 2500 },
                                { "x": 974, "y": 2585 },
                                { "x": 939, "y": 2585 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 970, "y": 2500 },
                                { "x": 1014, "y": 2500 },
                                { "x": 1014, "y": 2585 },
                                { "x": 970, "y": 2585 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1008, "y": 2500 },
                                { "x": 1054, "y": 2500 },
                                { "x": 1054, "y": 2585 },
                                { "x": 1008, "y": 2585 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1047, "y": 2500 },
                                { "x": 1094, "y": 2500 },
                                { "x": 1094, "y": 2585 },
                                { "x": 1047, "y": 2585 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1086, "y": 2500 },
                                { "x": 1135, "y": 2500 },
                                { "x": 1135, "y": 2585 },
                                { "x": 1086, "y": 2585 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1126, "y": 2500 },
                                { "x": 1174, "y": 2500 },
                                { "x": 1174, "y": 2585 },
                                { "x": 1126, "y": 2585 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1171, "y": 2500 },
                            { "x": 1200, "y": 2500 },
                            { "x": 1200, "y": 2585 },
                            { "x": 1171, "y": 2585 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1171, "y": 2500 },
                                { "x": 1200, "y": 2500 },
                                { "x": 1200, "y": 2585 },
                                { "x": 1171, "y": 2585 }
                              ]
                            },
                            "text": "."
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 505, "y": 2615 },
                    { "x": 1323, "y": 2611 },
                    { "x": 1323, "y": 2695 },
                    { "x": 505, "y": 2699 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 505, "y": 2615 },
                        { "x": 1323, "y": 2611 },
                        { "x": 1323, "y": 2695 },
                        { "x": 505, "y": 2699 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 505, "y": 2616 },
                            { "x": 539, "y": 2616 },
                            { "x": 539, "y": 2699 },
                            { "x": 505, "y": 2699 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 505, "y": 2616 },
                                { "x": 539, "y": 2616 },
                                { "x": 539, "y": 2699 },
                                { "x": 505, "y": 2699 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 610, "y": 2615 },
                            { "x": 923, "y": 2613 },
                            { "x": 923, "y": 2696 },
                            { "x": 610, "y": 2698 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 610, "y": 2615 },
                                { "x": 652, "y": 2615 },
                                { "x": 652, "y": 2698 },
                                { "x": 610, "y": 2698 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 653, "y": 2615 },
                                { "x": 692, "y": 2615 },
                                { "x": 692, "y": 2698 },
                                { "x": 653, "y": 2698 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 696, "y": 2615 },
                                { "x": 735, "y": 2615 },
                                { "x": 735, "y": 2698 },
                                { "x": 696, "y": 2698 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 736, "y": 2614 },
                                { "x": 766, "y": 2614 },
                                { "x": 766, "y": 2697 },
                                { "x": 736, "y": 2697 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 773, "y": 2614 },
                                { "x": 810, "y": 2614 },
                                { "x": 810, "y": 2697 },
                                { "x": 773, "y": 2697 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 807, "y": 2614 },
                                { "x": 845, "y": 2614 },
                                { "x": 845, "y": 2697 },
                                { "x": 807, "y": 2697 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 846, "y": 2614 },
                                { "x": 885, "y": 2614 },
                                { "x": 885, "y": 2697 },
                                { "x": 846, "y": 2697 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 884, "y": 2614 },
                                { "x": 923, "y": 2614 },
                                { "x": 923, "y": 2697 },
                                { "x": 884, "y": 2697 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 964, "y": 2613 },
                            { "x": 1045, "y": 2613 },
                            { "x": 1045, "y": 2696 },
                            { "x": 964, "y": 2696 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 964, "y": 2613 },
                                { "x": 1004, "y": 2613 },
                                { "x": 1004, "y": 2696 },
                                { "x": 964, "y": 2696 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1010, "y": 2613 },
                                { "x": 1045, "y": 2613 },
                                { "x": 1045, "y": 2696 },
                                { "x": 1010, "y": 2696 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1084, "y": 2612 },
                            { "x": 1203, "y": 2611 },
                            { "x": 1203, "y": 2695 },
                            { "x": 1084, "y": 2696 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1084, "y": 2613 },
                                { "x": 1126, "y": 2613 },
                                { "x": 1126, "y": 2696 },
                                { "x": 1084, "y": 2696 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1130, "y": 2612 },
                                { "x": 1159, "y": 2612 },
                                { "x": 1159, "y": 2695 },
                                { "x": 1130, "y": 2695 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1164, "y": 2612 },
                                { "x": 1203, "y": 2612 },
                                { "x": 1203, "y": 2695 },
                                { "x": 1164, "y": 2695 }
                              ]
                            },
                            "text": "Z"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1237, "y": 2612 },
                            { "x": 1323, "y": 2612 },
                            { "x": 1323, "y": 2695 },
                            { "x": 1237, "y": 2695 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1237, "y": 2612 },
                                { "x": 1283, "y": 2612 },
                                { "x": 1283, "y": 2695 },
                                { "x": 1237, "y": 2695 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1281, "y": 2612 },
                                { "x": 1323, "y": 2612 },
                                { "x": 1323, "y": 2695 },
                                { "x": 1281, "y": 2695 }
                              ]
                            },
                            "text": "5"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2217, "y": 2616 },
                    { "x": 2535, "y": 2625 },
                    { "x": 2533, "y": 2702 },
                    { "x": 2215, "y": 2693 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2217, "y": 2616 },
                        { "x": 2535, "y": 2625 },
                        { "x": 2533, "y": 2702 },
                        { "x": 2215, "y": 2693 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2217, "y": 2616 },
                            { "x": 2379, "y": 2621 },
                            { "x": 2377, "y": 2698 },
                            { "x": 2215, "y": 2693 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2217, "y": 2617 },
                                { "x": 2261, "y": 2618 },
                                { "x": 2259, "y": 2694 },
                                { "x": 2215, "y": 2693 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2271, "y": 2618 },
                                { "x": 2297, "y": 2619 },
                                { "x": 2295, "y": 2695 },
                                { "x": 2269, "y": 2694 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2299, "y": 2619 },
                                { "x": 2342, "y": 2620 },
                                { "x": 2340, "y": 2696 },
                                { "x": 2297, "y": 2695 }
                              ]
                            },
                            "text": "6"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2341, "y": 2620 },
                                { "x": 2379, "y": 2621 },
                                { "x": 2377, "y": 2697 },
                                { "x": 2339, "y": 2696 }
                              ]
                            },
                            "text": "9"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2418, "y": 2623 },
                            { "x": 2535, "y": 2626 },
                            { "x": 2533, "y": 2702 },
                            { "x": 2416, "y": 2699 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2418, "y": 2623 },
                                { "x": 2457, "y": 2624 },
                                { "x": 2455, "y": 2700 },
                                { "x": 2416, "y": 2699 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2459, "y": 2624 },
                                { "x": 2495, "y": 2625 },
                                { "x": 2493, "y": 2701 },
                                { "x": 2457, "y": 2700 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2498, "y": 2625 },
                                { "x": 2535, "y": 2626 },
                                { "x": 2533, "y": 2702 },
                                { "x": 2496, "y": 2701 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 491, "y": 2734 },
                    { "x": 1311, "y": 2728 },
                    { "x": 1312, "y": 2812 },
                    { "x": 492, "y": 2818 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 491, "y": 2734 },
                        { "x": 1311, "y": 2728 },
                        { "x": 1312, "y": 2812 },
                        { "x": 492, "y": 2818 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 491, "y": 2735 },
                            { "x": 540, "y": 2735 },
                            { "x": 541, "y": 2818 },
                            { "x": 492, "y": 2818 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 491, "y": 2735 },
                                { "x": 540, "y": 2735 },
                                { "x": 541, "y": 2818 },
                                { "x": 492, "y": 2818 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 606, "y": 2733 },
                            { "x": 921, "y": 2731 },
                            { "x": 922, "y": 2815 },
                            { "x": 607, "y": 2817 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 606, "y": 2734 },
                                { "x": 649, "y": 2734 },
                                { "x": 650, "y": 2817 },
                                { "x": 607, "y": 2817 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 648, "y": 2733 },
                                { "x": 688, "y": 2733 },
                                { "x": 689, "y": 2816 },
                                { "x": 649, "y": 2816 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 688, "y": 2733 },
                                { "x": 727, "y": 2733 },
                                { "x": 728, "y": 2816 },
                                { "x": 689, "y": 2816 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 730, "y": 2733 },
                                { "x": 762, "y": 2733 },
                                { "x": 763, "y": 2816 },
                                { "x": 731, "y": 2816 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 766, "y": 2733 },
                                { "x": 804, "y": 2733 },
                                { "x": 805, "y": 2816 },
                                { "x": 767, "y": 2816 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 805, "y": 2732 },
                                { "x": 842, "y": 2732 },
                                { "x": 843, "y": 2815 },
                                { "x": 806, "y": 2815 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 844, "y": 2732 },
                                { "x": 881, "y": 2732 },
                                { "x": 882, "y": 2815 },
                                { "x": 845, "y": 2815 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 881, "y": 2732 },
                                { "x": 921, "y": 2732 },
                                { "x": 922, "y": 2815 },
                                { "x": 882, "y": 2815 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 959, "y": 2731 },
                            { "x": 1043, "y": 2730 },
                            { "x": 1044, "y": 2813 },
                            { "x": 960, "y": 2814 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 959, "y": 2731 },
                                { "x": 1001, "y": 2731 },
                                { "x": 1002, "y": 2814 },
                                { "x": 960, "y": 2814 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1005, "y": 2731 },
                                { "x": 1043, "y": 2731 },
                                { "x": 1044, "y": 2814 },
                                { "x": 1006, "y": 2814 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1078, "y": 2730 },
                            { "x": 1198, "y": 2729 },
                            { "x": 1199, "y": 2813 },
                            { "x": 1079, "y": 2814 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1078, "y": 2730 },
                                { "x": 1119, "y": 2730 },
                                { "x": 1120, "y": 2813 },
                                { "x": 1079, "y": 2813 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1125, "y": 2730 },
                                { "x": 1160, "y": 2730 },
                                { "x": 1161, "y": 2813 },
                                { "x": 1126, "y": 2813 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1165, "y": 2730 },
                                { "x": 1198, "y": 2730 },
                                { "x": 1199, "y": 2813 },
                                { "x": 1166, "y": 2813 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1240, "y": 2729 },
                            { "x": 1311, "y": 2729 },
                            { "x": 1312, "y": 2812 },
                            { "x": 1241, "y": 2812 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1240, "y": 2729 },
                                { "x": 1276, "y": 2729 },
                                { "x": 1277, "y": 2812 },
                                { "x": 1241, "y": 2812 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1279, "y": 2729 },
                                { "x": 1311, "y": 2729 },
                                { "x": 1312, "y": 2812 },
                                { "x": 1280, "y": 2812 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2218, "y": 2740 },
                    { "x": 2538, "y": 2740 },
                    { "x": 2538, "y": 2818 },
                    { "x": 2218, "y": 2818 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2218, "y": 2740 },
                        { "x": 2538, "y": 2740 },
                        { "x": 2538, "y": 2818 },
                        { "x": 2218, "y": 2818 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2218, "y": 2740 },
                            { "x": 2381, "y": 2740 },
                            { "x": 2381, "y": 2818 },
                            { "x": 2218, "y": 2818 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2218, "y": 2740 },
                                { "x": 2264, "y": 2740 },
                                { "x": 2264, "y": 2818 },
                                { "x": 2218, "y": 2818 }
                              ]
                            },
                            "text": "2"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2267, "y": 2740 },
                                { "x": 2294, "y": 2740 },
                                { "x": 2294, "y": 2818 },
                                { "x": 2267, "y": 2818 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2302, "y": 2740 },
                                { "x": 2342, "y": 2740 },
                                { "x": 2342, "y": 2818 },
                                { "x": 2302, "y": 2818 }
                              ]
                            },
                            "text": "6"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2343, "y": 2740 },
                                { "x": 2381, "y": 2740 },
                                { "x": 2381, "y": 2818 },
                                { "x": 2343, "y": 2818 }
                              ]
                            },
                            "text": "9"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2422, "y": 2740 },
                            { "x": 2538, "y": 2740 },
                            { "x": 2538, "y": 2818 },
                            { "x": 2422, "y": 2818 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2422, "y": 2740 },
                                { "x": 2459, "y": 2740 },
                                { "x": 2459, "y": 2818 },
                                { "x": 2422, "y": 2818 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2465, "y": 2740 },
                                { "x": 2498, "y": 2740 },
                                { "x": 2498, "y": 2818 },
                                { "x": 2465, "y": 2818 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2503, "y": 2740 },
                                { "x": 2538, "y": 2740 },
                                { "x": 2538, "y": 2818 },
                                { "x": 2503, "y": 2818 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 497, "y": 2850 },
                    { "x": 1318, "y": 2850 },
                    { "x": 1318, "y": 2932 },
                    { "x": 497, "y": 2932 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 497, "y": 2850 },
                        { "x": 1318, "y": 2850 },
                        { "x": 1318, "y": 2932 },
                        { "x": 497, "y": 2932 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 497, "y": 2850 },
                            { "x": 534, "y": 2850 },
                            { "x": 534, "y": 2932 },
                            { "x": 497, "y": 2932 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 497, "y": 2850 },
                                { "x": 534, "y": 2850 },
                                { "x": 534, "y": 2932 },
                                { "x": 497, "y": 2932 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 604, "y": 2850 },
                            { "x": 842, "y": 2850 },
                            { "x": 842, "y": 2932 },
                            { "x": 604, "y": 2932 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 604, "y": 2850 },
                                { "x": 648, "y": 2850 },
                                { "x": 648, "y": 2932 },
                                { "x": 604, "y": 2932 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 646, "y": 2850 },
                                { "x": 684, "y": 2850 },
                                { "x": 684, "y": 2932 },
                                { "x": 646, "y": 2932 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 683, "y": 2850 },
                                { "x": 725, "y": 2850 },
                                { "x": 725, "y": 2932 },
                                { "x": 683, "y": 2932 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 725, "y": 2850 },
                                { "x": 763, "y": 2850 },
                                { "x": 763, "y": 2932 },
                                { "x": 725, "y": 2932 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 766, "y": 2850 },
                                { "x": 805, "y": 2850 },
                                { "x": 805, "y": 2932 },
                                { "x": 766, "y": 2932 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 803, "y": 2850 },
                                { "x": 842, "y": 2850 },
                                { "x": 842, "y": 2932 },
                                { "x": 803, "y": 2932 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 879, "y": 2850 },
                            { "x": 1164, "y": 2850 },
                            { "x": 1164, "y": 2932 },
                            { "x": 879, "y": 2932 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 879, "y": 2850 },
                                { "x": 921, "y": 2850 },
                                { "x": 921, "y": 2932 },
                                { "x": 879, "y": 2932 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 923, "y": 2850 },
                                { "x": 960, "y": 2850 },
                                { "x": 960, "y": 2932 },
                                { "x": 923, "y": 2932 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 961, "y": 2850 },
                                { "x": 1003, "y": 2850 },
                                { "x": 1003, "y": 2932 },
                                { "x": 961, "y": 2932 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 998, "y": 2850 },
                                { "x": 1041, "y": 2850 },
                                { "x": 1041, "y": 2932 },
                                { "x": 998, "y": 2932 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1045, "y": 2850 },
                                { "x": 1083, "y": 2850 },
                                { "x": 1083, "y": 2932 },
                                { "x": 1045, "y": 2932 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1078, "y": 2850 },
                                { "x": 1120, "y": 2850 },
                                { "x": 1120, "y": 2932 },
                                { "x": 1078, "y": 2932 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1125, "y": 2850 },
                                { "x": 1164, "y": 2850 },
                                { "x": 1164, "y": 2932 },
                                { "x": 1125, "y": 2932 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1201, "y": 2850 },
                            { "x": 1318, "y": 2850 },
                            { "x": 1318, "y": 2932 },
                            { "x": 1201, "y": 2932 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1201, "y": 2850 },
                                { "x": 1242, "y": 2850 },
                                { "x": 1242, "y": 2932 },
                                { "x": 1201, "y": 2932 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1242, "y": 2850 },
                                { "x": 1282, "y": 2850 },
                                { "x": 1282, "y": 2932 },
                                { "x": 1242, "y": 2932 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1286, "y": 2850 },
                                { "x": 1318, "y": 2850 },
                                { "x": 1318, "y": 2932 },
                                { "x": 1286, "y": 2932 }
                              ]
                            },
                            "text": "I"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2220, "y": 2858 },
                    { "x": 2542, "y": 2858 },
                    { "x": 2542, "y": 2939 },
                    { "x": 2220, "y": 2939 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2220, "y": 2858 },
                        { "x": 2542, "y": 2858 },
                        { "x": 2542, "y": 2939 },
                        { "x": 2220, "y": 2939 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2220, "y": 2858 },
                            { "x": 2386, "y": 2858 },
                            { "x": 2386, "y": 2939 },
                            { "x": 2220, "y": 2939 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2220, "y": 2858 },
                                { "x": 2266, "y": 2858 },
                                { "x": 2266, "y": 2939 },
                                { "x": 2220, "y": 2939 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2274, "y": 2858 },
                                { "x": 2303, "y": 2858 },
                                { "x": 2303, "y": 2939 },
                                { "x": 2274, "y": 2939 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2304, "y": 2858 },
                                { "x": 2343, "y": 2858 },
                                { "x": 2343, "y": 2939 },
                                { "x": 2304, "y": 2939 }
                              ]
                            },
                            "text": "7"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2344, "y": 2858 },
                                { "x": 2386, "y": 2858 },
                                { "x": 2386, "y": 2939 },
                                { "x": 2344, "y": 2939 }
                              ]
                            },
                            "text": "9"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2426, "y": 2858 },
                            { "x": 2542, "y": 2858 },
                            { "x": 2542, "y": 2939 },
                            { "x": 2426, "y": 2939 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2426, "y": 2858 },
                                { "x": 2464, "y": 2858 },
                                { "x": 2464, "y": 2939 },
                                { "x": 2426, "y": 2939 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2467, "y": 2858 },
                                { "x": 2504, "y": 2858 },
                                { "x": 2504, "y": 2939 },
                                { "x": 2467, "y": 2939 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2505, "y": 2858 },
                                { "x": 2542, "y": 2858 },
                                { "x": 2542, "y": 2939 },
                                { "x": 2505, "y": 2939 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 496, "y": 2967 },
                    { "x": 1272, "y": 2967 },
                    { "x": 1272, "y": 3049 },
                    { "x": 496, "y": 3049 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 496, "y": 2967 },
                        { "x": 1272, "y": 2967 },
                        { "x": 1272, "y": 3049 },
                        { "x": 496, "y": 3049 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 496, "y": 2967 },
                            { "x": 535, "y": 2967 },
                            { "x": 535, "y": 3049 },
                            { "x": 496, "y": 3049 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 496, "y": 2967 },
                                { "x": 535, "y": 2967 },
                                { "x": 535, "y": 3049 },
                                { "x": 496, "y": 3049 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 603, "y": 2967 },
                            { "x": 1004, "y": 2967 },
                            { "x": 1004, "y": 3049 },
                            { "x": 603, "y": 3049 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 603, "y": 2967 },
                                { "x": 645, "y": 2967 },
                                { "x": 645, "y": 3049 },
                                { "x": 603, "y": 3049 }
                              ]
                            },
                            "text": "G"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 646, "y": 2967 },
                                { "x": 687, "y": 2967 },
                                { "x": 687, "y": 3049 },
                                { "x": 646, "y": 3049 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 687, "y": 2967 },
                                { "x": 728, "y": 2967 },
                                { "x": 728, "y": 3049 },
                                { "x": 687, "y": 3049 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 730, "y": 2967 },
                                { "x": 767, "y": 2967 },
                                { "x": 767, "y": 3049 },
                                { "x": 730, "y": 3049 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 769, "y": 2967 },
                                { "x": 815, "y": 2967 },
                                { "x": 815, "y": 3049 },
                                { "x": 769, "y": 3049 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 812, "y": 2967 },
                                { "x": 843, "y": 2967 },
                                { "x": 843, "y": 3049 },
                                { "x": 812, "y": 3049 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 844, "y": 2967 },
                                { "x": 885, "y": 2967 },
                                { "x": 885, "y": 3049 },
                                { "x": 844, "y": 3049 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 882, "y": 2967 },
                                { "x": 923, "y": 2967 },
                                { "x": 923, "y": 3049 },
                                { "x": 882, "y": 3049 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 934, "y": 2967 },
                                { "x": 961, "y": 2967 },
                                { "x": 961, "y": 3049 },
                                { "x": 934, "y": 3049 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 961, "y": 2967 },
                                { "x": 1004, "y": 2967 },
                                { "x": 1004, "y": 3049 },
                                { "x": 961, "y": 3049 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1046, "y": 2967 },
                            { "x": 1243, "y": 2967 },
                            { "x": 1243, "y": 3049 },
                            { "x": 1046, "y": 3049 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1046, "y": 2967 },
                                { "x": 1080, "y": 2967 },
                                { "x": 1080, "y": 3049 },
                                { "x": 1046, "y": 3049 }
                              ]
                            },
                            "text": "F"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1084, "y": 2967 },
                                { "x": 1123, "y": 2967 },
                                { "x": 1123, "y": 3049 },
                                { "x": 1084, "y": 3049 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1121, "y": 2967 },
                                { "x": 1163, "y": 2967 },
                                { "x": 1163, "y": 3049 },
                                { "x": 1121, "y": 3049 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1160, "y": 2967 },
                                { "x": 1201, "y": 2967 },
                                { "x": 1201, "y": 3049 },
                                { "x": 1160, "y": 3049 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1203, "y": 2967 },
                                { "x": 1243, "y": 2967 },
                                { "x": 1243, "y": 3049 },
                                { "x": 1203, "y": 3049 }
                              ]
                            },
                            "text": "G"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1253, "y": 2967 },
                            { "x": 1272, "y": 2967 },
                            { "x": 1272, "y": 3049 },
                            { "x": 1253, "y": 3049 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1253, "y": 2967 },
                                { "x": 1272, "y": 2967 },
                                { "x": 1272, "y": 3049 },
                                { "x": 1253, "y": 3049 }
                              ]
                            },
                            "text": "."
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2221, "y": 2974 },
                    { "x": 2542, "y": 2981 },
                    { "x": 2540, "y": 3062 },
                    { "x": 2219, "y": 3055 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2221, "y": 2974 },
                        { "x": 2542, "y": 2981 },
                        { "x": 2540, "y": 3062 },
                        { "x": 2219, "y": 3055 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2221, "y": 2974 },
                            { "x": 2383, "y": 2977 },
                            { "x": 2381, "y": 3058 },
                            { "x": 2219, "y": 3055 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2221, "y": 2975 },
                                { "x": 2267, "y": 2976 },
                                { "x": 2265, "y": 3056 },
                                { "x": 2219, "y": 3055 }
                              ]
                            },
                            "text": "4"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2273, "y": 2976 },
                                { "x": 2305, "y": 2977 },
                                { "x": 2303, "y": 3057 },
                                { "x": 2271, "y": 3056 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2302, "y": 2976 },
                                { "x": 2346, "y": 2977 },
                                { "x": 2344, "y": 3057 },
                                { "x": 2300, "y": 3056 }
                              ]
                            },
                            "text": "6"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2345, "y": 2977 },
                                { "x": 2383, "y": 2978 },
                                { "x": 2381, "y": 3058 },
                                { "x": 2343, "y": 3057 }
                              ]
                            },
                            "text": "9"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2429, "y": 2978 },
                            { "x": 2542, "y": 2980 },
                            { "x": 2540, "y": 3061 },
                            { "x": 2427, "y": 3059 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2429, "y": 2979 },
                                { "x": 2466, "y": 2980 },
                                { "x": 2464, "y": 3060 },
                                { "x": 2427, "y": 3059 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2468, "y": 2980 },
                                { "x": 2505, "y": 2981 },
                                { "x": 2503, "y": 3061 },
                                { "x": 2466, "y": 3060 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2506, "y": 2980 },
                                { "x": 2542, "y": 2981 },
                                { "x": 2540, "y": 3061 },
                                { "x": 2504, "y": 3060 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1285, "y": 3171 },
                    { "x": 1570, "y": 3176 },
                    { "x": 1569, "y": 3242 },
                    { "x": 1284, "y": 3237 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1285, "y": 3171 },
                        { "x": 1570, "y": 3176 },
                        { "x": 1569, "y": 3242 },
                        { "x": 1284, "y": 3237 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1285, "y": 3171 },
                            { "x": 1570, "y": 3176 },
                            { "x": 1569, "y": 3242 },
                            { "x": 1284, "y": 3237 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1285, "y": 3172 },
                                { "x": 1344, "y": 3173 },
                                { "x": 1343, "y": 3238 },
                                { "x": 1284, "y": 3237 }
                              ]
                            },
                            "text": "3"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1352, "y": 3173 },
                                { "x": 1416, "y": 3174 },
                                { "x": 1415, "y": 3239 },
                                { "x": 1351, "y": 3238 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1397, "y": 3174 },
                                { "x": 1470, "y": 3175 },
                                { "x": 1469, "y": 3240 },
                                { "x": 1396, "y": 3239 }
                              ]
                            },
                            "text": "X"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1468, "y": 3175 },
                                { "x": 1503, "y": 3176 },
                                { "x": 1502, "y": 3241 },
                                { "x": 1467, "y": 3240 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1502, "y": 3175 },
                                { "x": 1570, "y": 3176 },
                                { "x": 1569, "y": 3241 },
                                { "x": 1501, "y": 3240 }
                              ]
                            },
                            "text": "M"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 490, "y": 3306 },
                    { "x": 1352, "y": 3292 },
                    { "x": 1355, "y": 3499 },
                    { "x": 493, "y": 3513 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 496, "y": 3306 },
                        { "x": 1352, "y": 3301 },
                        { "x": 1352, "y": 3386 },
                        { "x": 496, "y": 3391 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 496, "y": 3306 },
                            { "x": 694, "y": 3305 },
                            { "x": 694, "y": 3390 },
                            { "x": 496, "y": 3391 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 496, "y": 3307 },
                                { "x": 535, "y": 3307 },
                                { "x": 535, "y": 3391 },
                                { "x": 496, "y": 3391 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 532, "y": 3306 },
                                { "x": 571, "y": 3306 },
                                { "x": 571, "y": 3390 },
                                { "x": 532, "y": 3390 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 574, "y": 3306 },
                                { "x": 615, "y": 3306 },
                                { "x": 615, "y": 3390 },
                                { "x": 574, "y": 3390 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 611, "y": 3306 },
                                { "x": 657, "y": 3306 },
                                { "x": 657, "y": 3390 },
                                { "x": 611, "y": 3390 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 658, "y": 3306 },
                                { "x": 694, "y": 3306 },
                                { "x": 694, "y": 3390 },
                                { "x": 658, "y": 3390 }
                              ]
                            },
                            "text": "L"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 735, "y": 3305 },
                            { "x": 894, "y": 3304 },
                            { "x": 894, "y": 3389 },
                            { "x": 735, "y": 3390 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 735, "y": 3305 },
                                { "x": 778, "y": 3305 },
                                { "x": 778, "y": 3389 },
                                { "x": 735, "y": 3389 }
                              ]
                            },
                            "text": "H"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 774, "y": 3305 },
                                { "x": 818, "y": 3305 },
                                { "x": 818, "y": 3389 },
                                { "x": 774, "y": 3389 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 812, "y": 3305 },
                                { "x": 855, "y": 3305 },
                                { "x": 855, "y": 3389 },
                                { "x": 812, "y": 3389 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 853, "y": 3305 },
                                { "x": 894, "y": 3305 },
                                { "x": 894, "y": 3389 },
                                { "x": 853, "y": 3389 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 929, "y": 3304 },
                            { "x": 1286, "y": 3302 },
                            { "x": 1286, "y": 3387 },
                            { "x": 929, "y": 3389 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 929, "y": 3304 },
                                { "x": 971, "y": 3304 },
                                { "x": 971, "y": 3388 },
                                { "x": 929, "y": 3388 }
                              ]
                            },
                            "text": "P"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 966, "y": 3304 },
                                { "x": 1012, "y": 3304 },
                                { "x": 1012, "y": 3388 },
                                { "x": 966, "y": 3388 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1010, "y": 3304 },
                                { "x": 1055, "y": 3304 },
                                { "x": 1055, "y": 3388 },
                                { "x": 1010, "y": 3388 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1046, "y": 3304 },
                                { "x": 1089, "y": 3304 },
                                { "x": 1089, "y": 3388 },
                                { "x": 1046, "y": 3388 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1089, "y": 3303 },
                                { "x": 1131, "y": 3303 },
                                { "x": 1131, "y": 3387 },
                                { "x": 1089, "y": 3387 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1132, "y": 3303 },
                                { "x": 1171, "y": 3303 },
                                { "x": 1171, "y": 3387 },
                                { "x": 1132, "y": 3387 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1170, "y": 3303 },
                                { "x": 1203, "y": 3303 },
                                { "x": 1203, "y": 3387 },
                                { "x": 1170, "y": 3387 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1203, "y": 3303 },
                                { "x": 1246, "y": 3303 },
                                { "x": 1246, "y": 3387 },
                                { "x": 1203, "y": 3387 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1244, "y": 3303 },
                                { "x": 1286, "y": 3303 },
                                { "x": 1286, "y": 3387 },
                                { "x": 1244, "y": 3387 }
                              ]
                            },
                            "text": "N"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1329, "y": 3302 },
                            { "x": 1352, "y": 3302 },
                            { "x": 1352, "y": 3386 },
                            { "x": 1329, "y": 3386 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1329, "y": 3302 },
                                { "x": 1352, "y": 3302 },
                                { "x": 1352, "y": 3386 },
                                { "x": 1329, "y": 3386 }
                              ]
                            },
                            "text": ":"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 492, "y": 3432 },
                        { "x": 1163, "y": 3414 },
                        { "x": 1165, "y": 3495 },
                        { "x": 494, "y": 3513 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 492, "y": 3432 },
                            { "x": 736, "y": 3425 },
                            { "x": 738, "y": 3506 },
                            { "x": 494, "y": 3513 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 492, "y": 3433 },
                                { "x": 534, "y": 3432 },
                                { "x": 536, "y": 3512 },
                                { "x": 494, "y": 3513 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 532, "y": 3431 },
                                { "x": 571, "y": 3430 },
                                { "x": 573, "y": 3510 },
                                { "x": 534, "y": 3511 }
                              ]
                            },
                            "text": "O"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 568, "y": 3430 },
                                { "x": 616, "y": 3429 },
                                { "x": 618, "y": 3509 },
                                { "x": 570, "y": 3510 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 612, "y": 3429 },
                                { "x": 657, "y": 3428 },
                                { "x": 659, "y": 3508 },
                                { "x": 614, "y": 3509 }
                              ]
                            },
                            "text": "B"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 650, "y": 3428 },
                                { "x": 694, "y": 3427 },
                                { "x": 696, "y": 3507 },
                                { "x": 652, "y": 3508 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 697, "y": 3427 },
                                { "x": 736, "y": 3426 },
                                { "x": 738, "y": 3506 },
                                { "x": 699, "y": 3507 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 774, "y": 3424 },
                            { "x": 1163, "y": 3414 },
                            { "x": 1165, "y": 3495 },
                            { "x": 776, "y": 3505 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 774, "y": 3425 },
                                { "x": 818, "y": 3424 },
                                { "x": 820, "y": 3504 },
                                { "x": 776, "y": 3505 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 825, "y": 3424 },
                                { "x": 848, "y": 3423 },
                                { "x": 850, "y": 3503 },
                                { "x": 827, "y": 3504 }
                              ]
                            },
                            "text": "'"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 853, "y": 3423 },
                                { "x": 897, "y": 3422 },
                                { "x": 899, "y": 3502 },
                                { "x": 855, "y": 3503 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 891, "y": 3422 },
                                { "x": 935, "y": 3421 },
                                { "x": 937, "y": 3501 },
                                { "x": 893, "y": 3502 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 935, "y": 3421 },
                                { "x": 975, "y": 3420 },
                                { "x": 977, "y": 3500 },
                                { "x": 937, "y": 3501 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 979, "y": 3419 },
                                { "x": 1006, "y": 3418 },
                                { "x": 1008, "y": 3498 },
                                { "x": 981, "y": 3499 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1007, "y": 3419 },
                                { "x": 1048, "y": 3418 },
                                { "x": 1050, "y": 3498 },
                                { "x": 1009, "y": 3499 }
                              ]
                            },
                            "text": "C"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1054, "y": 3417 },
                                { "x": 1090, "y": 3416 },
                                { "x": 1092, "y": 3496 },
                                { "x": 1056, "y": 3497 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1088, "y": 3416 },
                                { "x": 1127, "y": 3415 },
                                { "x": 1129, "y": 3495 },
                                { "x": 1090, "y": 3496 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1123, "y": 3416 },
                                { "x": 1163, "y": 3415 },
                                { "x": 1165, "y": 3495 },
                                { "x": 1125, "y": 3496 }
                              ]
                            },
                            "text": "S"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2189, "y": 3324 },
                    { "x": 2545, "y": 3329 },
                    { "x": 2544, "y": 3406 },
                    { "x": 2188, "y": 3401 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2189, "y": 3324 },
                        { "x": 2545, "y": 3329 },
                        { "x": 2544, "y": 3406 },
                        { "x": 2188, "y": 3401 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2189, "y": 3324 },
                            { "x": 2390, "y": 3327 },
                            { "x": 2389, "y": 3404 },
                            { "x": 2188, "y": 3401 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2189, "y": 3325 },
                                { "x": 2219, "y": 3325 },
                                { "x": 2218, "y": 3401 },
                                { "x": 2188, "y": 3401 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2220, "y": 3325 },
                                { "x": 2274, "y": 3326 },
                                { "x": 2273, "y": 3402 },
                                { "x": 2219, "y": 3401 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2272, "y": 3326 },
                                { "x": 2303, "y": 3326 },
                                { "x": 2302, "y": 3402 },
                                { "x": 2271, "y": 3402 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2303, "y": 3326 },
                                { "x": 2353, "y": 3327 },
                                { "x": 2352, "y": 3403 },
                                { "x": 2302, "y": 3402 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2346, "y": 3327 },
                                { "x": 2390, "y": 3328 },
                                { "x": 2389, "y": 3404 },
                                { "x": 2345, "y": 3403 }
                              ]
                            },
                            "text": "6"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2426, "y": 3328 },
                            { "x": 2545, "y": 3330 },
                            { "x": 2544, "y": 3406 },
                            { "x": 2425, "y": 3404 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2426, "y": 3328 },
                                { "x": 2464, "y": 3329 },
                                { "x": 2463, "y": 3405 },
                                { "x": 2425, "y": 3404 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2468, "y": 3329 },
                                { "x": 2508, "y": 3330 },
                                { "x": 2507, "y": 3406 },
                                { "x": 2467, "y": 3405 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2502, "y": 3329 },
                                { "x": 2545, "y": 3330 },
                                { "x": 2544, "y": 3406 },
                                { "x": 2501, "y": 3405 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1950, "y": 3423 },
                    { "x": 2029, "y": 3426 },
                    { "x": 2026, "y": 3503 },
                    { "x": 1947, "y": 3500 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1950, "y": 3423 },
                        { "x": 2029, "y": 3426 },
                        { "x": 2026, "y": 3503 },
                        { "x": 1947, "y": 3500 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1950, "y": 3423 },
                            { "x": 2029, "y": 3426 },
                            { "x": 2026, "y": 3503 },
                            { "x": 1947, "y": 3500 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1950, "y": 3423 },
                                { "x": 2029, "y": 3426 },
                                { "x": 2026, "y": 3503 },
                                { "x": 1947, "y": 3500 }
                              ]
                            },
                            "text": "D"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1943, "y": 3423 },
                    { "x": 2127, "y": 3432 },
                    { "x": 2123, "y": 3510 },
                    { "x": 1939, "y": 3501 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1943, "y": 3423 },
                        { "x": 2127, "y": 3432 },
                        { "x": 2123, "y": 3510 },
                        { "x": 1939, "y": 3501 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 1943, "y": 3423 },
                            { "x": 2127, "y": 3432 },
                            { "x": 2123, "y": 3510 },
                            { "x": 1939, "y": 3501 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1943, "y": 3423 },
                                { "x": 2022, "y": 3427 },
                                { "x": 2018, "y": 3505 },
                                { "x": 1939, "y": 3501 }
                              ]
                            },
                            "text": "0"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2031, "y": 3427 },
                                { "x": 2127, "y": 3432 },
                                { "x": 2123, "y": 3509 },
                                { "x": 2027, "y": 3505 }
                              ]
                            },
                            "text": "2"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2320, "y": 3440 },
                    { "x": 2394, "y": 3444 },
                    { "x": 2390, "y": 3521 },
                    { "x": 2316, "y": 3518 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2320, "y": 3440 },
                        { "x": 2394, "y": 3444 },
                        { "x": 2390, "y": 3521 },
                        { "x": 2316, "y": 3518 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 2320, "y": 3440 },
                            { "x": 2394, "y": 3444 },
                            { "x": 2390, "y": 3521 },
                            { "x": 2316, "y": 3518 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2320, "y": 3440 },
                                { "x": 2394, "y": 3444 },
                                { "x": 2390, "y": 3521 },
                                { "x": 2316, "y": 3518 }
                              ]
                            },
                            "text": "4"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 495, "y": 3776 },
                    { "x": 1009, "y": 3762 },
                    { "x": 1011, "y": 3845 },
                    { "x": 497, "y": 3859 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 495, "y": 3776 },
                        { "x": 1009, "y": 3762 },
                        { "x": 1011, "y": 3845 },
                        { "x": 497, "y": 3859 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 495, "y": 3776 },
                            { "x": 698, "y": 3770 },
                            { "x": 700, "y": 3853 },
                            { "x": 497, "y": 3859 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 495, "y": 3777 },
                                { "x": 537, "y": 3776 },
                                { "x": 539, "y": 3858 },
                                { "x": 497, "y": 3859 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 536, "y": 3775 },
                                { "x": 575, "y": 3774 },
                                { "x": 577, "y": 3856 },
                                { "x": 538, "y": 3857 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 570, "y": 3774 },
                                { "x": 613, "y": 3773 },
                                { "x": 615, "y": 3855 },
                                { "x": 572, "y": 3856 }
                              ]
                            },
                            "text": "S"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 619, "y": 3773 },
                                { "x": 655, "y": 3772 },
                                { "x": 657, "y": 3854 },
                                { "x": 621, "y": 3855 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 659, "y": 3772 },
                                { "x": 698, "y": 3771 },
                                { "x": 700, "y": 3853 },
                                { "x": 661, "y": 3854 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 734, "y": 3770 },
                            { "x": 778, "y": 3769 },
                            { "x": 780, "y": 3851 },
                            { "x": 736, "y": 3852 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 734, "y": 3770 },
                                { "x": 778, "y": 3769 },
                                { "x": 780, "y": 3851 },
                                { "x": 736, "y": 3852 }
                              ]
                            },
                            "text": "A"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 814, "y": 3767 },
                            { "x": 1009, "y": 3762 },
                            { "x": 1011, "y": 3844 },
                            { "x": 816, "y": 3850 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 814, "y": 3768 },
                                { "x": 852, "y": 3767 },
                                { "x": 854, "y": 3849 },
                                { "x": 816, "y": 3850 }
                              ]
                            },
                            "text": "P"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 850, "y": 3766 },
                                { "x": 891, "y": 3765 },
                                { "x": 893, "y": 3847 },
                                { "x": 852, "y": 3848 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 890, "y": 3765 },
                                { "x": 933, "y": 3764 },
                                { "x": 935, "y": 3846 },
                                { "x": 892, "y": 3847 }
                              ]
                            },
                            "text": "Y"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 936, "y": 3764 },
                                { "x": 974, "y": 3763 },
                                { "x": 976, "y": 3845 },
                                { "x": 938, "y": 3846 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 967, "y": 3763 },
                                { "x": 1009, "y": 3762 },
                                { "x": 1011, "y": 3844 },
                                { "x": 969, "y": 3845 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2189, "y": 3787 },
                    { "x": 2544, "y": 3794 },
                    { "x": 2542, "y": 3876 },
                    { "x": 2187, "y": 3869 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2189, "y": 3787 },
                        { "x": 2544, "y": 3794 },
                        { "x": 2542, "y": 3876 },
                        { "x": 2187, "y": 3869 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2189, "y": 3787 },
                            { "x": 2390, "y": 3791 },
                            { "x": 2388, "y": 3873 },
                            { "x": 2187, "y": 3869 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2189, "y": 3788 },
                                { "x": 2217, "y": 3789 },
                                { "x": 2215, "y": 3870 },
                                { "x": 2187, "y": 3869 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2224, "y": 3788 },
                                { "x": 2275, "y": 3789 },
                                { "x": 2273, "y": 3870 },
                                { "x": 2222, "y": 3869 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2275, "y": 3789 },
                                { "x": 2305, "y": 3790 },
                                { "x": 2303, "y": 3871 },
                                { "x": 2273, "y": 3870 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2306, "y": 3790 },
                                { "x": 2359, "y": 3791 },
                                { "x": 2357, "y": 3872 },
                                { "x": 2304, "y": 3871 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2347, "y": 3791 },
                                { "x": 2390, "y": 3792 },
                                { "x": 2388, "y": 3873 },
                                { "x": 2345, "y": 3872 }
                              ]
                            },
                            "text": "6"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2426, "y": 3792 },
                            { "x": 2544, "y": 3794 },
                            { "x": 2542, "y": 3875 },
                            { "x": 2424, "y": 3873 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2426, "y": 3792 },
                                { "x": 2466, "y": 3793 },
                                { "x": 2464, "y": 3874 },
                                { "x": 2424, "y": 3873 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2467, "y": 3793 },
                                { "x": 2509, "y": 3794 },
                                { "x": 2507, "y": 3875 },
                                { "x": 2465, "y": 3874 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2503, "y": 3794 },
                                { "x": 2544, "y": 3795 },
                                { "x": 2542, "y": 3876 },
                                { "x": 2501, "y": 3875 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1386, "y": 3972 },
                    { "x": 1723, "y": 3982 },
                    { "x": 1719, "y": 4109 },
                    { "x": 1382, "y": 4099 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1386, "y": 3972 },
                        { "x": 1723, "y": 3982 },
                        { "x": 1719, "y": 4109 },
                        { "x": 1382, "y": 4099 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1386, "y": 3972 },
                            { "x": 1723, "y": 3982 },
                            { "x": 1719, "y": 4109 },
                            { "x": 1382, "y": 4099 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1386, "y": 3973 },
                                { "x": 1441, "y": 3975 },
                                { "x": 1437, "y": 4101 },
                                { "x": 1382, "y": 4099 }
                              ]
                            },
                            "text": "P"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1430, "y": 3974 },
                                { "x": 1480, "y": 3976 },
                                { "x": 1476, "y": 4101 },
                                { "x": 1426, "y": 4100 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1478, "y": 3975 },
                                { "x": 1521, "y": 3976 },
                                { "x": 1517, "y": 4102 },
                                { "x": 1474, "y": 4101 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1519, "y": 3977 },
                                { "x": 1563, "y": 3978 },
                                { "x": 1559, "y": 4104 },
                                { "x": 1515, "y": 4103 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1539, "y": 3977 },
                                { "x": 1593, "y": 3979 },
                                { "x": 1589, "y": 4105 },
                                { "x": 1535, "y": 4103 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1591, "y": 3979 },
                                { "x": 1648, "y": 3981 },
                                { "x": 1644, "y": 4107 },
                                { "x": 1587, "y": 4105 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1620, "y": 3980 },
                                { "x": 1677, "y": 3982 },
                                { "x": 1673, "y": 4108 },
                                { "x": 1616, "y": 4106 }
                              ]
                            },
                            "text": "N"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1674, "y": 3981 },
                                { "x": 1723, "y": 3982 },
                                { "x": 1719, "y": 4108 },
                                { "x": 1670, "y": 4107 }
                              ]
                            },
                            "text": "T"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1847, "y": 3987 },
                    { "x": 2088, "y": 3994 },
                    { "x": 2084, "y": 4120 },
                    { "x": 1843, "y": 4113 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1847, "y": 3987 },
                        { "x": 2088, "y": 3994 },
                        { "x": 2084, "y": 4120 },
                        { "x": 1843, "y": 4113 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "fr", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1847, "y": 3987 },
                            { "x": 2088, "y": 3994 },
                            { "x": 2084, "y": 4120 },
                            { "x": 1843, "y": 4113 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1847, "y": 3987 },
                                { "x": 1903, "y": 3989 },
                                { "x": 1899, "y": 4115 },
                                { "x": 1843, "y": 4113 }
                              ]
                            },
                            "text": "i"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1993, "y": 3991 },
                                { "x": 2088, "y": 3994 },
                                { "x": 2084, "y": 4120 },
                                { "x": 1989, "y": 4117 }
                              ]
                            },
                            "text": "s"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 614, "y": 4200 },
                    { "x": 2110, "y": 4211 },
                    { "x": 2109, "y": 4341 },
                    { "x": 613, "y": 4330 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 614, "y": 4200 },
                        { "x": 2110, "y": 4211 },
                        { "x": 2109, "y": 4341 },
                        { "x": 613, "y": 4330 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 614, "y": 4201 },
                            { "x": 696, "y": 4202 },
                            { "x": 695, "y": 4331 },
                            { "x": 613, "y": 4330 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 614, "y": 4201 },
                                { "x": 656, "y": 4201 },
                                { "x": 655, "y": 4330 },
                                { "x": 613, "y": 4330 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 644, "y": 4201 },
                                { "x": 696, "y": 4201 },
                                { "x": 695, "y": 4330 },
                                { "x": 643, "y": 4330 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 730, "y": 4201 },
                            { "x": 1052, "y": 4203 },
                            { "x": 1051, "y": 4333 },
                            { "x": 729, "y": 4331 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 730, "y": 4201 },
                                { "x": 779, "y": 4201 },
                                { "x": 778, "y": 4330 },
                                { "x": 729, "y": 4330 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 774, "y": 4202 },
                                { "x": 819, "y": 4202 },
                                { "x": 818, "y": 4331 },
                                { "x": 773, "y": 4331 }
                              ]
                            },
                            "text": "l"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 822, "y": 4202 },
                                { "x": 845, "y": 4202 },
                                { "x": 844, "y": 4331 },
                                { "x": 821, "y": 4331 }
                              ]
                            },
                            "text": "i"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 849, "y": 4202 },
                                { "x": 898, "y": 4202 },
                                { "x": 897, "y": 4331 },
                                { "x": 848, "y": 4331 }
                              ]
                            },
                            "text": "g"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 904, "y": 4203 },
                                { "x": 921, "y": 4203 },
                                { "x": 920, "y": 4332 },
                                { "x": 903, "y": 4332 }
                              ]
                            },
                            "text": "i"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 927, "y": 4203 },
                                { "x": 976, "y": 4203 },
                                { "x": 975, "y": 4332 },
                                { "x": 926, "y": 4332 }
                              ]
                            },
                            "text": "b"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 970, "y": 4203 },
                                { "x": 1015, "y": 4203 },
                                { "x": 1014, "y": 4332 },
                                { "x": 969, "y": 4332 }
                              ]
                            },
                            "text": "l"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1007, "y": 4203 },
                                { "x": 1052, "y": 4203 },
                                { "x": 1051, "y": 4332 },
                                { "x": 1006, "y": 4332 }
                              ]
                            },
                            "text": "e"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1054, "y": 4204 },
                            { "x": 1085, "y": 4204 },
                            { "x": 1084, "y": 4333 },
                            { "x": 1053, "y": 4333 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1054, "y": 4204 },
                                { "x": 1085, "y": 4204 },
                                { "x": 1084, "y": 4333 },
                                { "x": 1053, "y": 4333 }
                              ]
                            },
                            "text": "("
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1088, "y": 4204 },
                            { "x": 1299, "y": 4206 },
                            { "x": 1298, "y": 4335 },
                            { "x": 1087, "y": 4333 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1088, "y": 4204 },
                                { "x": 1121, "y": 4204 },
                                { "x": 1120, "y": 4333 },
                                { "x": 1087, "y": 4333 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1119, "y": 4204 },
                                { "x": 1176, "y": 4204 },
                                { "x": 1175, "y": 4333 },
                                { "x": 1118, "y": 4333 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1172, "y": 4205 },
                                { "x": 1198, "y": 4205 },
                                { "x": 1197, "y": 4334 },
                                { "x": 1171, "y": 4334 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1203, "y": 4205 },
                                { "x": 1252, "y": 4205 },
                                { "x": 1251, "y": 4334 },
                                { "x": 1202, "y": 4334 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1247, "y": 4205 },
                                { "x": 1299, "y": 4205 },
                                { "x": 1298, "y": 4334 },
                                { "x": 1246, "y": 4334 }
                              ]
                            },
                            "text": "6"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1320, "y": 4206 },
                            { "x": 1441, "y": 4207 },
                            { "x": 1440, "y": 4336 },
                            { "x": 1319, "y": 4335 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1320, "y": 4206 },
                                { "x": 1360, "y": 4206 },
                                { "x": 1359, "y": 4335 },
                                { "x": 1319, "y": 4335 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1356, "y": 4206 },
                                { "x": 1400, "y": 4206 },
                                { "x": 1399, "y": 4335 },
                                { "x": 1355, "y": 4335 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1387, "y": 4206 },
                                { "x": 1441, "y": 4206 },
                                { "x": 1440, "y": 4335 },
                                { "x": 1386, "y": 4335 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1439, "y": 4206 },
                            { "x": 1480, "y": 4206 },
                            { "x": 1479, "y": 4335 },
                            { "x": 1438, "y": 4335 }
                          ]
                        },
                        "symbols": [
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1439, "y": 4206 },
                                { "x": 1480, "y": 4206 },
                                { "x": 1479, "y": 4335 },
                                { "x": 1438, "y": 4335 }
                              ]
                            },
                            "text": ")"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1655, "y": 4208 },
                            { "x": 1881, "y": 4210 },
                            { "x": 1880, "y": 4339 },
                            { "x": 1654, "y": 4337 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1655, "y": 4208 },
                                { "x": 1744, "y": 4209 },
                                { "x": 1743, "y": 4338 },
                                { "x": 1654, "y": 4337 }
                              ]
                            },
                            "text": "a"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1735, "y": 4209 },
                                { "x": 1787, "y": 4209 },
                                { "x": 1786, "y": 4338 },
                                { "x": 1734, "y": 4338 }
                              ]
                            },
                            "text": "i"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1790, "y": 4209 },
                                { "x": 1881, "y": 4210 },
                                { "x": 1880, "y": 4339 },
                                { "x": 1789, "y": 4338 }
                              ]
                            },
                            "text": "d"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "en", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1939, "y": 4210 },
                            { "x": 2110, "y": 4211 },
                            { "x": 2109, "y": 4340 },
                            { "x": 1938, "y": 4339 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1939, "y": 4210 },
                                { "x": 2021, "y": 4211 },
                                { "x": 2020, "y": 4340 },
                                { "x": 1938, "y": 4339 }
                              ]
                            },
                            "text": "a"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2027, "y": 4211 },
                                { "x": 2110, "y": 4212 },
                                { "x": 2109, "y": 4341 },
                                { "x": 2026, "y": 4340 }
                              ]
                            },
                            "text": "n"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 499, "y": 4357 },
                    { "x": 652, "y": 4353 },
                    { "x": 654, "y": 4419 },
                    { "x": 501, "y": 4423 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 499, "y": 4357 },
                        { "x": 652, "y": 4353 },
                        { "x": 654, "y": 4419 },
                        { "x": 501, "y": 4423 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 499, "y": 4357 },
                            { "x": 652, "y": 4353 },
                            { "x": 654, "y": 4419 },
                            { "x": 501, "y": 4423 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 499, "y": 4358 },
                                { "x": 535, "y": 4357 },
                                { "x": 537, "y": 4422 },
                                { "x": 501, "y": 4423 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 533, "y": 4357 },
                                { "x": 572, "y": 4356 },
                                { "x": 574, "y": 4421 },
                                { "x": 535, "y": 4422 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 575, "y": 4355 },
                                { "x": 614, "y": 4354 },
                                { "x": 616, "y": 4419 },
                                { "x": 577, "y": 4420 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 614, "y": 4354 },
                                { "x": 652, "y": 4353 },
                                { "x": 654, "y": 4418 },
                                { "x": 616, "y": 4419 }
                              ]
                            },
                            "text": "3"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 2060, "y": 4242 },
                    { "x": 2514, "y": 4243 },
                    { "x": 2514, "y": 4444 },
                    { "x": 2060, "y": 4443 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 2060, "y": 4242 },
                        { "x": 2514, "y": 4243 },
                        { "x": 2514, "y": 4444 },
                        { "x": 2060, "y": 4443 }
                      ]
                    },
                    "words": [
                      {
                        "boundingBox": {
                          "vertices": [
                            { "x": 2067, "y": 4242 },
                            { "x": 2295, "y": 4259 },
                            { "x": 2288, "y": 4361 },
                            { "x": 2060, "y": 4345 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2067, "y": 4242 },
                                { "x": 2125, "y": 4246 },
                                { "x": 2117, "y": 4349 },
                                { "x": 2060, "y": 4345 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2124, "y": 4246 },
                                { "x": 2229, "y": 4254 },
                                { "x": 2221, "y": 4356 },
                                { "x": 2117, "y": 4349 }
                              ]
                            },
                            "text": "6"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "EOL_SURE_SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2211, "y": 4252 },
                                { "x": 2296, "y": 4258 },
                                { "x": 2288, "y": 4361 },
                                { "x": 2204, "y": 4355 }
                              ]
                            },
                            "text": "2"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2174, "y": 4357 },
                            { "x": 2372, "y": 4344 },
                            { "x": 2377, "y": 4429 },
                            { "x": 2180, "y": 4443 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2174, "y": 4358 },
                                { "x": 2206, "y": 4356 },
                                { "x": 2212, "y": 4441 },
                                { "x": 2180, "y": 4443 }
                              ]
                            },
                            "text": "1"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2210, "y": 4355 },
                                { "x": 2256, "y": 4352 },
                                { "x": 2262, "y": 4437 },
                                { "x": 2216, "y": 4440 }
                              ]
                            },
                            "text": "5"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2264, "y": 4351 },
                                { "x": 2283, "y": 4350 },
                                { "x": 2289, "y": 4435 },
                                { "x": 2270, "y": 4436 }
                              ]
                            },
                            "text": "."
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2292, "y": 4349 },
                                { "x": 2333, "y": 4346 },
                                { "x": 2339, "y": 4431 },
                                { "x": 2298, "y": 4434 }
                              ]
                            },
                            "text": "8"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2334, "y": 4347 },
                                { "x": 2372, "y": 4344 },
                                { "x": 2378, "y": 4429 },
                                { "x": 2340, "y": 4432 }
                              ]
                            },
                            "text": "6"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "sk", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 2410, "y": 4341 },
                            { "x": 2508, "y": 4334 },
                            { "x": 2514, "y": 4419 },
                            { "x": 2416, "y": 4426 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2410, "y": 4341 },
                                { "x": 2442, "y": 4339 },
                                { "x": 2448, "y": 4424 },
                                { "x": 2416, "y": 4426 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 2444, "y": 4339 },
                                { "x": 2476, "y": 4337 },
                                { "x": 2482, "y": 4422 },
                                { "x": 2450, "y": 4424 }
                              ]
                            },
                            "text": "U"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 2475, "y": 4337 },
                                { "x": 2508, "y": 4335 },
                                { "x": 2514, "y": 4420 },
                                { "x": 2481, "y": 4422 }
                              ]
                            },
                            "text": "R"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              },
              {
                "boundingBox": {
                  "vertices": [
                    { "x": 1240, "y": 4550 },
                    { "x": 2018, "y": 4555 },
                    { "x": 2018, "y": 4607 },
                    { "x": 1240, "y": 4607 }
                  ]
                },
                "paragraphs": [
                  {
                    "boundingBox": {
                      "vertices": [
                        { "x": 1240, "y": 4550 },
                        { "x": 2018, "y": 4555 },
                        { "x": 2018, "y": 4607 },
                        { "x": 1240, "y": 4607 }
                      ]
                    },
                    "words": [
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "ro", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1240, "y": 4551 },
                            { "x": 1324, "y": 4552 },
                            { "x": 1324, "y": 4607 },
                            { "x": 1240, "y": 4607 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1240, "y": 4551 },
                                { "x": 1281, "y": 4551 },
                                { "x": 1281, "y": 4607 },
                                { "x": 1240, "y": 4607 }
                              ]
                            },
                            "text": "M"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1279, "y": 4551 },
                                { "x": 1324, "y": 4551 },
                                { "x": 1324, "y": 4607 },
                                { "x": 1279, "y": 4607 }
                              ]
                            },
                            "text": "A"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "ro", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1359, "y": 4551 },
                            { "x": 1552, "y": 4552 },
                            { "x": 1552, "y": 4607 },
                            { "x": 1359, "y": 4607 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1359, "y": 4551 },
                                { "x": 1397, "y": 4551 },
                                { "x": 1397, "y": 4607 },
                                { "x": 1359, "y": 4607 }
                              ]
                            },
                            "text": "C"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1395, "y": 4551 },
                                { "x": 1435, "y": 4551 },
                                { "x": 1435, "y": 4607 },
                                { "x": 1395, "y": 4607 }
                              ]
                            },
                            "text": "A"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1434, "y": 4552 },
                                { "x": 1472, "y": 4552 },
                                { "x": 1472, "y": 4607 },
                                { "x": 1434, "y": 4607 }
                              ]
                            },
                            "text": "R"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1478, "y": 4552 },
                                { "x": 1512, "y": 4552 },
                                { "x": 1512, "y": 4607 },
                                { "x": 1478, "y": 4607 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1514, "y": 4552 },
                                { "x": 1552, "y": 4552 },
                                { "x": 1552, "y": 4607 },
                                { "x": 1514, "y": 4607 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "ro", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1587, "y": 4553 },
                            { "x": 1672, "y": 4554 },
                            { "x": 1672, "y": 4607 },
                            { "x": 1587, "y": 4607 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1587, "y": 4553 },
                                { "x": 1626, "y": 4553 },
                                { "x": 1626, "y": 4607 },
                                { "x": 1587, "y": 4607 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "SPACE" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1634, "y": 4553 },
                                { "x": 1672, "y": 4553 },
                                { "x": 1672, "y": 4607 },
                                { "x": 1634, "y": 4607 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      },
                      {
                        "property": {
                          "detectedLanguages": [
                            { "languageCode": "ro", "confidence": 1 }
                          ]
                        },
                        "boundingBox": {
                          "vertices": [
                            { "x": 1704, "y": 4553 },
                            { "x": 2018, "y": 4555 },
                            { "x": 2018, "y": 4607 },
                            { "x": 1704, "y": 4607 }
                          ]
                        },
                        "symbols": [
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1704, "y": 4553 },
                                { "x": 1745, "y": 4553 },
                                { "x": 1745, "y": 4607 },
                                { "x": 1704, "y": 4607 }
                              ]
                            },
                            "text": "F"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1751, "y": 4554 },
                                { "x": 1781, "y": 4554 },
                                { "x": 1781, "y": 4607 },
                                { "x": 1751, "y": 4607 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1780, "y": 4554 },
                                { "x": 1823, "y": 4554 },
                                { "x": 1823, "y": 4607 },
                                { "x": 1780, "y": 4607 }
                              ]
                            },
                            "text": "D"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1824, "y": 4554 },
                                { "x": 1863, "y": 4554 },
                                { "x": 1863, "y": 4607 },
                                { "x": 1824, "y": 4607 }
                              ]
                            },
                            "text": "E"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1861, "y": 4554 },
                                { "x": 1898, "y": 4554 },
                                { "x": 1898, "y": 4607 },
                                { "x": 1861, "y": 4607 }
                              ]
                            },
                            "text": "L"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1906, "y": 4555 },
                                { "x": 1938, "y": 4555 },
                                { "x": 1938, "y": 4607 },
                                { "x": 1906, "y": 4607 }
                              ]
                            },
                            "text": "I"
                          },
                          {
                            "boundingBox": {
                              "vertices": [
                                { "x": 1941, "y": 4555 },
                                { "x": 1978, "y": 4555 },
                                { "x": 1978, "y": 4607 },
                                { "x": 1941, "y": 4607 }
                              ]
                            },
                            "text": "T"
                          },
                          {
                            "property": {
                              "detectedBreak": { "type": "LINE_BREAK" }
                            },
                            "boundingBox": {
                              "vertices": [
                                { "x": 1979, "y": 4555 },
                                { "x": 2018, "y": 4555 },
                                { "x": 2018, "y": 4607 },
                                { "x": 1979, "y": 4607 }
                              ]
                            },
                            "text": "E"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "blockType": "TEXT"
              }
            ]
          }
        ],
        "text": "MONOPRIX\n231709408074250111180727\nGRENOBLE CASERNE DE BONNE\n15 rue MARCEAU\n38000 GRENOBLE 2\nOuvert du lundi au samedi de 08h00 A 21h00\nLe dimanche 08h30 a 19h45\nTel : 04.38.03.86.10\n11/01/25 - 18:08 940 94 8074\nEPICERIE/BOISSONS.\nT NOUILLES DE RIZ 25\n2.69 EUR\nT NOUILLES DE BLE ET\n2.69 EUR\nT NESTLE DESSERT NOI\n5.79 EUR\nT GALET.ROIS FRANG.\n4.69 EUR\n3TXIM\nTOTAL HORS PROMOTION :\nNOMBRE D'ARTICLES\n15.86 EUR\nD\n02\n4\nRESTE A PAYER\n15.86 EUR\nPAIEMENT\nis\nTR Eligible(15.86 EUR) aid an\nTRD3\n162\n15.86 EUR\nMA CARTE DE FIDELITE"
      }
    }
  ],
  "created_at": 1736867260
}
gzip -dk <PATH>/img/0001/h4pWIXaJre.json.gz

Other experiments (not implemented)

Gemini on a receipt

Proof pic:

Prompt:

model = genai.GenerativeModel(model_name="gemini-1.5-flash-latest")
class Price(typing.TypedDict):
    product_name: str
    barcode: str
    price: float

class Receipt(typing.TypedDict):
    store_name: str
    store_address: str
    date: str
    prices: list[Price]

response = model.generate_content(
    [sample_file, "Extract store name, store address, date and list of barcodes, product name and prices for each barcode. Barcodes are EAN13"],
    generation_config=genai.GenerationConfig(
        response_mime_type="application/json", response_schema=Receipt
    )
)

Result:

{
  "date": "05/09/24",
  "prices": [
    {
      "barcode": "3497917000136",
      "price": 3.16,
      "product_name": "CHIPS PAYSANNE SDG BRET'S 250G"
    },
    {
      "barcode": "3256226387938",
      "price": 2.33,
      "product_name": "SABLES NAPPES CHOC.LT UBIO200G"
    },
    {
      "barcode": "3256221407266",
      "price": 2.3,
      "product_name": "CHAMPIGNONS EMINCES U BIO 170G"
    },
    {
      "barcode": "0217714000000",
      "price": 5.67,
      "product_name": "ESC.DDE FINE LR LOUÉ X2 S/ATM"
    },
    {
      "barcode": "3123930650026",
      "price": 3.14,
      "product_name": "COMTE AOP LC34% ENTREMONT 200G"
    },
    {
      "barcode": "3412290011074",
      "price": 2.03,
      "product_name": "BEUR.MOULE DS80% P.BRETON 125G"
    },
    {
      "barcode": "8005153003023",
      "price": 2.85,
      "product_name": "I FRESCHI CHIF SPECK MONT.100G"
    },
    {
      "barcode": "3606760066750",
      "price": 0.99,
      "product_name": "LAITUE ICEBERG"
    }
  ],
  "store_address": "34 BLD ORNANO / 125 RUE DE CLIGNANCOURT PARIS 75018 FR",
  "store_name": "SUPER U"
}