> ## Documentation Index
> Fetch the complete documentation index at: https://jigsaw-13.mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# vOCR

> Recognise, describe and retrieve data within an image with great accuracy.

### Body

<ParamField body="url" type="string">
  The image url.
</ParamField>

<ParamField body="file_store_key" type="string">
  The key used to store the image on Jigsawstack file. Learn more about how to handle files in Jigsawstack's [Handling Files](/docs/api-reference/handling-files) section.
</ParamField>

<ParamField body="prompt" type="string | Array<string> | object">
  The prompt used to describe the image. Default prompt is `Describe the image in detail.`
</ParamField>

<ParamField body="fine_grained" type="boolean">
  Enables enhanced OCR processing to improve bounding box accuracy for detected text elements.
</ParamField>

<ParamField body="page_range" type="Array<number>">
  Specifies a range of pages to process with vOCR, provided as a two-element array: \[startPage, endPage]. For example, `[1,10]` processes pages 1
  through 10. The range must span 10 or fewer pages. If the specified endPage exceeds the document's total pages, the last available page will be used
  instead. Both startPage and endPage are inclusive and must be positive integers where startPage ≤ endPage.
</ParamField>

<Info>Either `url` or `file_store_key` should be provided not both.</Info>

## Prompt Example

* **`String`**

```javascript theme={null}
{
  prompt: "Describe the image in detail.";
}
```

* **`Array<String>`**

> Use this approach to retrieve specific data from the image file.

```javascript theme={null}
{
  prompt: ["first name", "last name"];
}
```

<Snippet file="header.mdx" />

### Response

<ResponseField name="success" type="boolean">
  Indicates whether the call was successful.
</ResponseField>

<ResponseField name="_usage" type="object" optional>
  Usage information for the API call.

  <Expandable title="_usage">
    <ResponseField name="input_tokens" type="number">
      Number of input tokens processed.
    </ResponseField>

    <ResponseField name="output_tokens" type="number">
      Number of output tokens generated.
    </ResponseField>

    <ResponseField name="inference_time_tokens" type="number">
      Number of tokens processed during inference time.
    </ResponseField>

    <ResponseField name="total_tokens" type="number">
      Total number of tokens used (input + output).
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="log_id" type="string" optional>
  A unique identifier for the request
</ResponseField>

<ResponseField name="context" type="string | object">
  When using a string prompt: Returns the descriptive text about the image.
  When using an array prompt: Returns an object with keys matching the prompt items and values as arrays of extracted data.
</ResponseField>

<ResponseField name="width" type="number">
  The width of the processed image in pixels.
</ResponseField>

<ResponseField name="height" type="number">
  The height of the processed image in pixels.
</ResponseField>

<ResponseField name="tags" type="string[]">
  Array of automatically generated tags describing the content of the image.
</ResponseField>

<ResponseField name="has_text" type="boolean">
  Indicates whether text was detected in the image.
</ResponseField>

<ResponseField name="sections" type="array">
  Array of text sections detected in the image with detailed positioning information.

  <Expandable title="Section Object">
    <ResponseField name="text" type="string">
      The complete text content of this section.
    </ResponseField>

    <ResponseField name="lines" type="array">
      Array of individual text lines within this section.

      <Expandable title="Line Object">
        <ResponseField name="text" type="string">
          The text content of this line.
        </ResponseField>

        <ResponseField name="average_confidence" type="number">
          The average confidence score for the line.
        </ResponseField>

        <ResponseField name="bounds" type="object">
          Bounding box coordinates.

          <Expandable title="BoundingBox Object">
            <ResponseField name="top_left" type="object">
              Top-left corner coordinates.

              <Expandable title="Point Object">
                <ResponseField name="x" type="number">
                  X-coordinate.
                </ResponseField>

                <ResponseField name="y" type="number">
                  Y-coordinate.
                </ResponseField>
              </Expandable>
            </ResponseField>

            <ResponseField name="top_right" type="object">
              Top-right corner coordinates (same structure as top\_left).
            </ResponseField>

            <ResponseField name="bottom_left" type="object">
              Bottom-left corner coordinates (same structure as top\_left).
            </ResponseField>

            <ResponseField name="bottom_right" type="object">
              Bottom-right corner coordinates (same structure as top\_left).
            </ResponseField>

            <ResponseField name="width" type="number">
              Width of the bounding box.
            </ResponseField>

            <ResponseField name="height" type="number">
              Height of the bounding box.
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="words" type="array">
          Array of individual words within this line.

          <Expandable title="Word Object">
            <ResponseField name="text" type="string">
              The text content of this word.
            </ResponseField>

            <ResponseField name="bounds" type="object">
              Bounding box coordinates for the word (same structure as line bounds).
            </ResponseField>

            <ResponseField name="confidence" type="number">
              The confidence score for this word.
            </ResponseField>
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="total_pages" type="number" optional>
  The total number of pages in the document. Only available for PDF files.
</ResponseField>

<ResponseField name="page_range" type="number[]" optional>
  The range of pages that were processed. Only available when `page_range` parameter is specified in the request.
</ResponseField>

<Info>Supported file types: - **Images**: JPEG, JPG, PNG - **Documents**: Multi-page PDFs (up to 10 pages per API request)</Info>

<RequestExample>
  ```javascript Javascript theme={null}
  import { JigsawStack } from "jigsawstack";

  const jigsaw = JigsawStack({ apiKey: "your-api-key" });

  const response = await jigsaw.vision.vocr({
    "prompt": [
          "total_price",
          "tax"
    ],
    "url": "https://jigsawstack.com/preview/vocr-example.jpg"
  })
  ```

  ```python Python theme={null}
  from jigsawstack import JigsawStack

  jigsaw = JigsawStack(api_key="your-api-key")

  response = jigsaw.vision.vocr({
    "prompt": [
          "total_price",
          "tax"
    ],
    "url": "https://jigsawstack.com/preview/vocr-example.jpg"
  })
  ```

  ```bash Curl theme={null}
  curl https://api.jigsawstack.com/v1/vocr \
  -X POST \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: your-api-key' \
  -d '{"prompt":["total_price","tax"],"url":"https://jigsawstack.com/preview/vocr-example.jpg"}'
  ```

  ```php PHP theme={null}
  <?php
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, 'https://api.jigsawstack.com/v1/vocr');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
  curl_setopt($ch, CURLOPT_HTTPHEADER, [
  'Content-Type: application/json',
  'x-api-key: your-api-key',
  ]);
  curl_setopt($ch, CURLOPT_POSTFIELDS, '{"prompt":["total_price","tax"],"url":"https://jigsawstack.com/preview/vocr-example.jpg"}');

  $response = curl_exec($ch);

  curl_close($ch);

  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'json'

  uri = URI('https://api.jigsawstack.com/v1/vocr')
  req = Net::HTTP::Post.new(uri)
  req.content_type = 'application/json'
  req['x-api-key'] = 'your-api-key'

  req.body = {
  'prompt' => [
  'total_price',
  'tax'
  ],
  'url' => 'https://jigsawstack.com/preview/vocr-example.jpg'
  }.to_json

  req_options = {
  use_ssl: uri.scheme == 'https'
  }
  res = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
  http.request(req)
  end

  ```

  ```go Go theme={null}
  package main

  import (
  "fmt"
  "io"
  "log"
  "net/http"
  "strings"
  )

  func main() {
  client := &http.Client{}
  var data = strings.NewReader(`{"prompt":["total_price","tax"],"url":"https://jigsawstack.com/preview/vocr-example.jpg"}`)
  req, err := http.NewRequest("POST", "https://api.jigsawstack.com/v1/vocr", data)
  if err != nil {
  	log.Fatal(err)
  }
  req.Header.Set("Content-Type", "application/json")
  req.Header.Set("x-api-key", "your-api-key")
  resp, err := client.Do(req)
  if err != nil {
  	log.Fatal(err)
  }
  defer resp.Body.Close()
  bodyText, err := io.ReadAll(resp.Body)
  if err != nil {
  	log.Fatal(err)
  }
  fmt.Printf("%s\n", bodyText)
  }

  ```

  ```java Java theme={null}
  import java.io.IOException;
  import java.net.URI;
  import java.net.http.HttpClient;
  import java.net.http.HttpRequest;
  import java.net.http.HttpRequest.BodyPublishers;
  import java.net.http.HttpResponse;

  HttpClient client = HttpClient.newHttpClient();

  HttpRequest request = HttpRequest.newBuilder()
  .uri(URI.create("https://api.jigsawstack.com/v1/vocr"))
  .POST(BodyPublishers.ofString("{\"prompt\":[\"total_price\",\"tax\"],\"url\":\"https://jigsawstack.com/preview/vocr-example.jpg\"}"))
  .setHeader("Content-Type", "application/json")
  .setHeader("x-api-key", "your-api-key")
  .build();

  HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());

  ```

  ```swift Swift theme={null}
  import Foundation

  let jsonData = [
  "prompt": [
      "total_price",
      "tax"
  ],
  "url": "https://jigsawstack.com/preview/vocr-example.jpg"
  ] as [String : Any]
  let data = try! JSONSerialization.data(withJSONObject: jsonData, options: [])

  let url = URL(string: "https://api.jigsawstack.com/v1/vocr")!
  let headers = [
  "Content-Type": "application/json",
  "x-api-key": "your-api-key"
  ]

  var request = URLRequest(url: url)
  request.httpMethod = "POST"
  request.allHTTPHeaderFields = headers
  request.httpBody = data as Data

  let task = URLSession.shared.dataTask(with: request) { (data, response, error) in
  if let error = error {
      print(error)
  } else if let data = data {
      let str = String(data: data, encoding: .utf8)
      print(str ?? "")
  }
  }

  task.resume()

  ```

  ```dart Dart theme={null}
  import 'package:http/http.dart' as http;

  void main() async {
  final headers = {
  'Content-Type': 'application/json',
  'x-api-key': 'your-api-key',
  };

  final data = '{"prompt":["total_price","tax"],"url":"https://jigsawstack.com/preview/vocr-example.jpg"}';

  final url = Uri.parse('https://api.jigsawstack.com/v1/vocr');

  final res = await http.post(url, headers: headers, body: data);
  final status = res.statusCode;
  if (status != 200) throw Exception('http.post error: statusCode= $status');

  print(res.body);
  }

  ```

  ```kotlin Kotlin theme={null}
  import java.io.IOException
  import okhttp3.MediaType.Companion.toMediaType
  import okhttp3.OkHttpClient
  import okhttp3.Request
  import okhttp3.RequestBody.Companion.toRequestBody

  val client = OkHttpClient()

  val MEDIA_TYPE = "application/json".toMediaType()

  val requestBody = "{\"prompt\":[\"total_price\",\"tax\"],\"url\":\"https://jigsawstack.com/preview/vocr-example.jpg\"}"

  val request = Request.Builder()
  .url("https://api.jigsawstack.com/v1/vocr")
  .post(requestBody.toRequestBody(MEDIA_TYPE))
  .header("Content-Type", "application/json")
  .header("x-api-key", "your-api-key")
  .build()

  client.newCall(request).execute().use { response ->
  if (!response.isSuccessful) throw IOException("Unexpected code $response")
  response.body!!.string()
  }

  ```

  ```csharp C# theme={null}
  using System.Net.Http.Headers;
  using System.Net.Http.Json;

  HttpClient client = new HttpClient();

  HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "https://api.jigsawstack.com/v1/vocr");
  request.Headers.Add("x-api-key", "your-api-key");
  request.Content = JsonContent.Create(new
  {
  prompt = new List<string> { "total_price", "tax" },
  url = "https://jigsawstack.com/preview/vocr-example.jpg"
  });
  request.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");

  HttpResponseMessage response = await client.SendAsync(request);
  response.EnsureSuccessStatusCode();
  string responseBody = await response.Content.ReadAsStringAsync();

  Console.WriteLine(responseBody);
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "context": {
          "total_price": [
                "144.02"
          ],
          "tax": [
                "4.58"
          ]
    },
    "width": 720,
    "height": 960,
    "tags": [
          "text",
          "paper",
          "receipt"
    ],
    "has_text": true,
    "sections": [
          {
                "text": "See back of receipt for your chance\nto win $1000 ID #: 7N5N1V1XCQDQ\nWalmart\n317-851-1102 Mgr:JAMIE BROOKSHIRE\n882 S. STATE ROAD 135\nGREENWOOD IN 46143\nST# 05483 OP# 001436 TE# 09 TR# 06976\nTATER TOTS\n001312000026 F 2.96 0\nHARD/PROV/DC 007874219410 F\nSNACK BARS\n2.68 0\nHRI CL CHS 5.88 0\n002190848816 F 4.98 T\nHRI CL CHS\n003120606000 F\n003120506000 F 6.88 0\n** VOIDED ENTRY ##\nHRI CL CHS\n003120506000 F 5.88-0\nHRI 12 U SG 003120535000 F\nHRI CL PEP 003120507000 F\n5.88 D\nEARBUDS 068113100946 4.88 X\n5.88 0\nSC BCN CHDDR 007874202906 F\nABF THINBRST 022451710972 F\n6.98 0\nHARD/PROV/DC 007874219410 F\n9.72 0\nDV RSE OIL M 001111101220\n2.68 0\nAPPLE 3 BAG 084747300184 F\n5.94 X\nSTOK LT SWT 004127102774 F\n6.47 N\nPEANUT BUTTR 005160026499 F 6.44 0\n4.42 T\nAVO VERDE 061611206143 F 2.98 N\nROLLS 007874219416 F 1.28 0\nBTS DRY BLON 501072452746 6.58 X\nGALE 000000000003K 32.00 T\nTR HS FRM 4 002240062190 2.74 X\nBAGELS 001376402801 F 4.66 0\nGV SLIDERS 007874201625 2.98 X\nACCESSORY 007515161216 0.97 X\nCHEEZE IT 002410053523 F 4.00 0\nWAS 4.54 YOU SAVED 0.54\nRITZ 004400088210 F 2.78 N\nRUFFLES 002840020942 F 2.50 N\nGV HNY GRMS 007874207253 F 1.28 N\nSUBTOTAL 139.44\nTAX 1 7.000 % 4.58\nTOTAL 144.02\nCASH TEND 150.02\nCHANGE DUE 6.00\n# ITEMS SOLD 26\nTC# 0783 6080 4072 3416 2495 5\n04/27/19 12:59:46\nScan with Walmart app to save receipts",
                "lines": [
                      {
                            "text": "See back of receipt for your chance",
                            "bounds": {
                                  "top_left": {
                                        "x": 185,
                                        "y": 64
                                  },
                                  "top_right": {
                                        "x": 459,
                                        "y": 76
                                  },
                                  "bottom_right": {
                                        "x": 458,
                                        "y": 93
                                  },
                                  "bottom_left": {
                                        "x": 184,
                                        "y": 84
                                  },
                                  "width": 274,
                                  "height": 18.5
                            },
                            "words": [
                                  {
                                        "text": "See",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 187,
                                                    "y": 64
                                              },
                                              "top_right": {
                                                    "x": 210,
                                                    "y": 66
                                              },
                                              "bottom_right": {
                                                    "x": 209,
                                                    "y": 82
                                              },
                                              "bottom_left": {
                                                    "x": 185,
                                                    "y": 79
                                              },
                                              "width": 23.5,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "back",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 218,
                                                    "y": 67
                                              },
                                              "top_right": {
                                                    "x": 249,
                                                    "y": 70
                                              },
                                              "bottom_right": {
                                                    "x": 248,
                                                    "y": 86
                                              },
                                              "bottom_left": {
                                                    "x": 216,
                                                    "y": 83
                                              },
                                              "width": 31.5,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "of",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 258,
                                                    "y": 70
                                              },
                                              "top_right": {
                                                    "x": 274,
                                                    "y": 72
                                              },
                                              "bottom_right": {
                                                    "x": 273,
                                                    "y": 88
                                              },
                                              "bottom_left": {
                                                    "x": 256,
                                                    "y": 87
                                              },
                                              "width": 16.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "receipt",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 281,
                                                    "y": 72
                                              },
                                              "top_right": {
                                                    "x": 337,
                                                    "y": 75
                                              },
                                              "bottom_right": {
                                                    "x": 336,
                                                    "y": 91
                                              },
                                              "bottom_left": {
                                                    "x": 279,
                                                    "y": 88
                                              },
                                              "width": 56.5,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "for",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 342,
                                                    "y": 75
                                              },
                                              "top_right": {
                                                    "x": 365,
                                                    "y": 76
                                              },
                                              "bottom_right": {
                                                    "x": 364,
                                                    "y": 92
                                              },
                                              "bottom_left": {
                                                    "x": 341,
                                                    "y": 92
                                              },
                                              "width": 23,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "your",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 371,
                                                    "y": 76
                                              },
                                              "top_right": {
                                                    "x": 403,
                                                    "y": 77
                                              },
                                              "bottom_right": {
                                                    "x": 402,
                                                    "y": 93
                                              },
                                              "bottom_left": {
                                                    "x": 371,
                                                    "y": 92
                                              },
                                              "width": 31.5,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "chance",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 410,
                                                    "y": 77
                                              },
                                              "top_right": {
                                                    "x": 457,
                                                    "y": 77
                                              },
                                              "bottom_right": {
                                                    "x": 457,
                                                    "y": 92
                                              },
                                              "bottom_left": {
                                                    "x": 410,
                                                    "y": 93
                                              },
                                              "width": 47,
                                              "height": 15.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "to win $1000 ID #: 7N5N1V1XCQDQ",
                            "bounds": {
                                  "top_left": {
                                        "x": 186,
                                        "y": 79
                                  },
                                  "top_right": {
                                        "x": 420,
                                        "y": 89
                                  },
                                  "bottom_right": {
                                        "x": 419,
                                        "y": 107
                                  },
                                  "bottom_left": {
                                        "x": 185,
                                        "y": 98
                                  },
                                  "width": 234,
                                  "height": 18.5
                            },
                            "words": [
                                  {
                                        "text": "to",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 187,
                                                    "y": 79
                                              },
                                              "top_right": {
                                                    "x": 202,
                                                    "y": 81
                                              },
                                              "bottom_right": {
                                                    "x": 200,
                                                    "y": 94
                                              },
                                              "bottom_left": {
                                                    "x": 185,
                                                    "y": 92
                                              },
                                              "width": 15,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "win",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 210,
                                                    "y": 81
                                              },
                                              "top_right": {
                                                    "x": 234,
                                                    "y": 83
                                              },
                                              "bottom_right": {
                                                    "x": 232,
                                                    "y": 98
                                              },
                                              "bottom_left": {
                                                    "x": 208,
                                                    "y": 95
                                              },
                                              "width": 24,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "$1000",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 241,
                                                    "y": 84
                                              },
                                              "top_right": {
                                                    "x": 281,
                                                    "y": 87
                                              },
                                              "bottom_right": {
                                                    "x": 280,
                                                    "y": 103
                                              },
                                              "bottom_left": {
                                                    "x": 240,
                                                    "y": 99
                                              },
                                              "width": 40,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "ID",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 290,
                                                    "y": 87
                                              },
                                              "top_right": {
                                                    "x": 305,
                                                    "y": 88
                                              },
                                              "bottom_right": {
                                                    "x": 303,
                                                    "y": 104
                                              },
                                              "bottom_left": {
                                                    "x": 288,
                                                    "y": 104
                                              },
                                              "width": 15,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "#:",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 311,
                                                    "y": 88
                                              },
                                              "top_right": {
                                                    "x": 325,
                                                    "y": 89
                                              },
                                              "bottom_right": {
                                                    "x": 323,
                                                    "y": 105
                                              },
                                              "bottom_left": {
                                                    "x": 310,
                                                    "y": 105
                                              },
                                              "width": 13.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "7N5N1V1XCQDQ",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 328,
                                                    "y": 89
                                              },
                                              "top_right": {
                                                    "x": 419,
                                                    "y": 90
                                              },
                                              "bottom_right": {
                                                    "x": 418,
                                                    "y": 105
                                              },
                                              "bottom_left": {
                                                    "x": 326,
                                                    "y": 106
                                              },
                                              "width": 91.5,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "Walmart",
                            "bounds": {
                                  "top_left": {
                                        "x": 273,
                                        "y": 106
                                  },
                                  "top_right": {
                                        "x": 381,
                                        "y": 109
                                  },
                                  "bottom_right": {
                                        "x": 380,
                                        "y": 137
                                  },
                                  "bottom_left": {
                                        "x": 273,
                                        "y": 134
                                  },
                                  "width": 107.5,
                                  "height": 28
                            },
                            "words": [
                                  {
                                        "text": "Walmart",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 274,
                                                    "y": 107
                                              },
                                              "top_right": {
                                                    "x": 380,
                                                    "y": 110
                                              },
                                              "bottom_right": {
                                                    "x": 378,
                                                    "y": 137
                                              },
                                              "bottom_left": {
                                                    "x": 273,
                                                    "y": 135
                                              },
                                              "width": 105.5,
                                              "height": 27.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "317-851-1102 Mgr:JAMIE BROOKSHIRE",
                            "bounds": {
                                  "top_left": {
                                        "x": 200,
                                        "y": 130
                                  },
                                  "top_right": {
                                        "x": 456,
                                        "y": 137
                                  },
                                  "bottom_right": {
                                        "x": 455,
                                        "y": 158
                                  },
                                  "bottom_left": {
                                        "x": 199,
                                        "y": 153
                                  },
                                  "width": 256,
                                  "height": 22
                            },
                            "words": [
                                  {
                                        "text": "317-851-1102",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 201,
                                                    "y": 131
                                              },
                                              "top_right": {
                                                    "x": 296,
                                                    "y": 139
                                              },
                                              "bottom_right": {
                                                    "x": 295,
                                                    "y": 156
                                              },
                                              "bottom_left": {
                                                    "x": 200,
                                                    "y": 148
                                              },
                                              "width": 95,
                                              "height": 17
                                        }
                                  },
                                  {
                                        "text": "Mgr:JAMIE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 301,
                                                    "y": 139
                                              },
                                              "top_right": {
                                                    "x": 371,
                                                    "y": 141
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 157
                                              },
                                              "bottom_left": {
                                                    "x": 300,
                                                    "y": 156
                                              },
                                              "width": 70.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "BROOKSHIRE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 378,
                                                    "y": 141
                                              },
                                              "top_right": {
                                                    "x": 456,
                                                    "y": 138
                                              },
                                              "bottom_right": {
                                                    "x": 455,
                                                    "y": 154
                                              },
                                              "bottom_left": {
                                                    "x": 378,
                                                    "y": 157
                                              },
                                              "width": 77.5,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "882 S. STATE ROAD 135",
                            "bounds": {
                                  "top_left": {
                                        "x": 246,
                                        "y": 150
                                  },
                                  "top_right": {
                                        "x": 409,
                                        "y": 154
                                  },
                                  "bottom_right": {
                                        "x": 409,
                                        "y": 171
                                  },
                                  "bottom_left": {
                                        "x": 245,
                                        "y": 167
                                  },
                                  "width": 163.5,
                                  "height": 17
                            },
                            "words": [
                                  {
                                        "text": "882",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 248,
                                                    "y": 150
                                              },
                                              "top_right": {
                                                    "x": 272,
                                                    "y": 152
                                              },
                                              "bottom_right": {
                                                    "x": 271,
                                                    "y": 168
                                              },
                                              "bottom_left": {
                                                    "x": 247,
                                                    "y": 167
                                              },
                                              "width": 24,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "S.",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 278,
                                                    "y": 152
                                              },
                                              "top_right": {
                                                    "x": 295,
                                                    "y": 153
                                              },
                                              "bottom_right": {
                                                    "x": 294,
                                                    "y": 169
                                              },
                                              "bottom_left": {
                                                    "x": 278,
                                                    "y": 168
                                              },
                                              "width": 16.5,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "STATE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 302,
                                                    "y": 153
                                              },
                                              "top_right": {
                                                    "x": 341,
                                                    "y": 154
                                              },
                                              "bottom_right": {
                                                    "x": 339,
                                                    "y": 170
                                              },
                                              "bottom_left": {
                                                    "x": 301,
                                                    "y": 169
                                              },
                                              "width": 38.5,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "ROAD",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 347,
                                                    "y": 154
                                              },
                                              "top_right": {
                                                    "x": 379,
                                                    "y": 155
                                              },
                                              "bottom_right": {
                                                    "x": 377,
                                                    "y": 171
                                              },
                                              "bottom_left": {
                                                    "x": 346,
                                                    "y": 171
                                              },
                                              "width": 31.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "135",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 387,
                                                    "y": 155
                                              },
                                              "top_right": {
                                                    "x": 410,
                                                    "y": 155
                                              },
                                              "bottom_right": {
                                                    "x": 408,
                                                    "y": 171
                                              },
                                              "bottom_left": {
                                                    "x": 385,
                                                    "y": 171
                                              },
                                              "width": 23,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "GREENWOOD IN 46143",
                            "bounds": {
                                  "top_left": {
                                        "x": 259,
                                        "y": 165
                                  },
                                  "top_right": {
                                        "x": 402,
                                        "y": 167
                                  },
                                  "bottom_right": {
                                        "x": 402,
                                        "y": 184
                                  },
                                  "bottom_left": {
                                        "x": 258,
                                        "y": 182
                                  },
                                  "width": 143.5,
                                  "height": 17
                            },
                            "words": [
                                  {
                                        "text": "GREENWOOD",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 262,
                                                    "y": 165
                                              },
                                              "top_right": {
                                                    "x": 332,
                                                    "y": 167
                                              },
                                              "bottom_right": {
                                                    "x": 331,
                                                    "y": 184
                                              },
                                              "bottom_left": {
                                                    "x": 261,
                                                    "y": 182
                                              },
                                              "width": 70,
                                              "height": 17
                                        }
                                  },
                                  {
                                        "text": "IN",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 341,
                                                    "y": 167
                                              },
                                              "top_right": {
                                                    "x": 354,
                                                    "y": 168
                                              },
                                              "bottom_right": {
                                                    "x": 353,
                                                    "y": 184
                                              },
                                              "bottom_left": {
                                                    "x": 340,
                                                    "y": 184
                                              },
                                              "width": 13,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "46143",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 363,
                                                    "y": 168
                                              },
                                              "top_right": {
                                                    "x": 402,
                                                    "y": 168
                                              },
                                              "bottom_right": {
                                                    "x": 401,
                                                    "y": 184
                                              },
                                              "bottom_left": {
                                                    "x": 362,
                                                    "y": 184
                                              },
                                              "width": 39,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "ST# 05483 OP# 001436 TE# 09 TR# 06976",
                            "bounds": {
                                  "top_left": {
                                        "x": 183,
                                        "y": 171
                                  },
                                  "top_right": {
                                        "x": 473,
                                        "y": 179
                                  },
                                  "bottom_right": {
                                        "x": 472,
                                        "y": 198
                                  },
                                  "bottom_left": {
                                        "x": 182,
                                        "y": 193
                                  },
                                  "width": 290,
                                  "height": 20.5
                            },
                            "words": [
                                  {
                                        "text": "ST#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 183,
                                                    "y": 171
                                              },
                                              "top_right": {
                                                    "x": 207,
                                                    "y": 174
                                              },
                                              "bottom_right": {
                                                    "x": 207,
                                                    "y": 189
                                              },
                                              "bottom_left": {
                                                    "x": 183,
                                                    "y": 186
                                              },
                                              "width": 24,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "05483",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 215,
                                                    "y": 174
                                              },
                                              "top_right": {
                                                    "x": 255,
                                                    "y": 178
                                              },
                                              "bottom_right": {
                                                    "x": 254,
                                                    "y": 194
                                              },
                                              "bottom_left": {
                                                    "x": 214,
                                                    "y": 190
                                              },
                                              "width": 40,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "OP#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 262,
                                                    "y": 178
                                              },
                                              "top_right": {
                                                    "x": 287,
                                                    "y": 180
                                              },
                                              "bottom_right": {
                                                    "x": 286,
                                                    "y": 196
                                              },
                                              "bottom_left": {
                                                    "x": 261,
                                                    "y": 194
                                              },
                                              "width": 25,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "001436",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 293,
                                                    "y": 180
                                              },
                                              "top_right": {
                                                    "x": 339,
                                                    "y": 182
                                              },
                                              "bottom_right": {
                                                    "x": 339,
                                                    "y": 198
                                              },
                                              "bottom_left": {
                                                    "x": 293,
                                                    "y": 196
                                              },
                                              "width": 46,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "TE#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 348,
                                                    "y": 182
                                              },
                                              "top_right": {
                                                    "x": 371,
                                                    "y": 182
                                              },
                                              "bottom_right": {
                                                    "x": 370,
                                                    "y": 198
                                              },
                                              "bottom_left": {
                                                    "x": 347,
                                                    "y": 198
                                              },
                                              "width": 23,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "09",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 377,
                                                    "y": 182
                                              },
                                              "top_right": {
                                                    "x": 393,
                                                    "y": 182
                                              },
                                              "bottom_right": {
                                                    "x": 393,
                                                    "y": 198
                                              },
                                              "bottom_left": {
                                                    "x": 377,
                                                    "y": 198
                                              },
                                              "width": 16,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "TR#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 401,
                                                    "y": 182
                                              },
                                              "top_right": {
                                                    "x": 424,
                                                    "y": 182
                                              },
                                              "bottom_right": {
                                                    "x": 424,
                                                    "y": 197
                                              },
                                              "bottom_left": {
                                                    "x": 401,
                                                    "y": 198
                                              },
                                              "width": 23,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "06976",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 430,
                                                    "y": 182
                                              },
                                              "top_right": {
                                                    "x": 471,
                                                    "y": 180
                                              },
                                              "bottom_right": {
                                                    "x": 471,
                                                    "y": 194
                                              },
                                              "bottom_left": {
                                                    "x": 430,
                                                    "y": 197
                                              },
                                              "width": 41,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "TATER TOTS",
                            "bounds": {
                                  "top_left": {
                                        "x": 183,
                                        "y": 187
                                  },
                                  "top_right": {
                                        "x": 263,
                                        "y": 193
                                  },
                                  "bottom_right": {
                                        "x": 262,
                                        "y": 208
                                  },
                                  "bottom_left": {
                                        "x": 183,
                                        "y": 201
                                  },
                                  "width": 79.5,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "TATER",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 184,
                                                    "y": 187
                                              },
                                              "top_right": {
                                                    "x": 222,
                                                    "y": 190
                                              },
                                              "bottom_right": {
                                                    "x": 221,
                                                    "y": 204
                                              },
                                              "bottom_left": {
                                                    "x": 183,
                                                    "y": 202
                                              },
                                              "width": 38,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "TOTS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 232,
                                                    "y": 191
                                              },
                                              "top_right": {
                                                    "x": 262,
                                                    "y": 193
                                              },
                                              "bottom_right": {
                                                    "x": 260,
                                                    "y": 208
                                              },
                                              "bottom_left": {
                                                    "x": 231,
                                                    "y": 205
                                              },
                                              "width": 29.5,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "001312000026 F 2.96 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 282,
                                        "y": 195
                                  },
                                  "top_right": {
                                        "x": 392,
                                        "y": 196
                                  },
                                  "bottom_right": {
                                        "x": 392,
                                        "y": 211
                                  },
                                  "bottom_left": {
                                        "x": 282,
                                        "y": 210
                                  },
                                  "width": 110,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "001312000026",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 284,
                                                    "y": 196
                                              },
                                              "top_right": {
                                                    "x": 377,
                                                    "y": 197
                                              },
                                              "bottom_right": {
                                                    "x": 376,
                                                    "y": 211
                                              },
                                              "bottom_left": {
                                                    "x": 284,
                                                    "y": 211
                                              },
                                              "width": 92.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 385,
                                                    "y": 197
                                              },
                                              "top_right": {
                                                    "x": 392,
                                                    "y": 197
                                              },
                                              "bottom_right": {
                                                    "x": 392,
                                                    "y": 210
                                              },
                                              "bottom_left": {
                                                    "x": 384,
                                                    "y": 211
                                              },
                                              "width": 7.5,
                                              "height": 13.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HARD/PROV/DC 007874219410 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 180,
                                        "y": 200
                                  },
                                  "top_right": {
                                        "x": 392,
                                        "y": 211
                                  },
                                  "bottom_right": {
                                        "x": 391,
                                        "y": 225
                                  },
                                  "bottom_left": {
                                        "x": 180,
                                        "y": 217
                                  },
                                  "width": 211.5,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "HARD/PROV/DC",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 181,
                                                    "y": 201
                                              },
                                              "top_right": {
                                                    "x": 276,
                                                    "y": 207
                                              },
                                              "bottom_right": {
                                                    "x": 275,
                                                    "y": 223
                                              },
                                              "bottom_left": {
                                                    "x": 180,
                                                    "y": 214
                                              },
                                              "width": 95,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "007874219410",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 285,
                                                    "y": 208
                                              },
                                              "top_right": {
                                                    "x": 376,
                                                    "y": 211
                                              },
                                              "bottom_right": {
                                                    "x": 376,
                                                    "y": 224
                                              },
                                              "bottom_left": {
                                                    "x": 284,
                                                    "y": 223
                                              },
                                              "width": 91.5,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 384,
                                                    "y": 211
                                              },
                                              "top_right": {
                                                    "x": 391,
                                                    "y": 211
                                              },
                                              "bottom_right": {
                                                    "x": 391,
                                                    "y": 224
                                              },
                                              "bottom_left": {
                                                    "x": 384,
                                                    "y": 224
                                              },
                                              "width": 7,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "SNACK BARS",
                            "bounds": {
                                  "top_left": {
                                        "x": 180,
                                        "y": 214
                                  },
                                  "top_right": {
                                        "x": 264,
                                        "y": 220
                                  },
                                  "bottom_right": {
                                        "x": 263,
                                        "y": 234
                                  },
                                  "bottom_left": {
                                        "x": 180,
                                        "y": 228
                                  },
                                  "width": 83.5,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "SNACK",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 182,
                                                    "y": 215
                                              },
                                              "top_right": {
                                                    "x": 220,
                                                    "y": 217
                                              },
                                              "bottom_right": {
                                                    "x": 219,
                                                    "y": 232
                                              },
                                              "bottom_left": {
                                                    "x": 181,
                                                    "y": 229
                                              },
                                              "width": 38,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "BARS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 230,
                                                    "y": 218
                                              },
                                              "top_right": {
                                                    "x": 261,
                                                    "y": 220
                                              },
                                              "bottom_right": {
                                                    "x": 260,
                                                    "y": 234
                                              },
                                              "bottom_left": {
                                                    "x": 229,
                                                    "y": 232
                                              },
                                              "width": 31,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "2.68 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 429,
                                        "y": 208
                                  },
                                  "top_right": {
                                        "x": 479,
                                        "y": 209
                                  },
                                  "bottom_right": {
                                        "x": 479,
                                        "y": 222
                                  },
                                  "bottom_left": {
                                        "x": 429,
                                        "y": 222
                                  },
                                  "width": 50,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "2.68",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 431,
                                                    "y": 209
                                              },
                                              "top_right": {
                                                    "x": 462,
                                                    "y": 210
                                              },
                                              "bottom_right": {
                                                    "x": 461,
                                                    "y": 223
                                              },
                                              "bottom_left": {
                                                    "x": 431,
                                                    "y": 222
                                              },
                                              "width": 30.5,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "0",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 470,
                                                    "y": 210
                                              },
                                              "top_right": {
                                                    "x": 477,
                                                    "y": 210
                                              },
                                              "bottom_right": {
                                                    "x": 476,
                                                    "y": 223
                                              },
                                              "bottom_left": {
                                                    "x": 469,
                                                    "y": 223
                                              },
                                              "width": 7,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HRI CL CHS 5.88 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 180,
                                        "y": 229
                                  },
                                  "top_right": {
                                        "x": 261,
                                        "y": 234
                                  },
                                  "bottom_right": {
                                        "x": 260,
                                        "y": 249
                                  },
                                  "bottom_left": {
                                        "x": 179,
                                        "y": 244
                                  },
                                  "width": 81,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "HRI",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 181,
                                                    "y": 230
                                              },
                                              "top_right": {
                                                    "x": 206,
                                                    "y": 231
                                              },
                                              "bottom_right": {
                                                    "x": 204,
                                                    "y": 246
                                              },
                                              "bottom_left": {
                                                    "x": 180,
                                                    "y": 244
                                              },
                                              "width": 24.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "CL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 214,
                                                    "y": 232
                                              },
                                              "top_right": {
                                                    "x": 229,
                                                    "y": 233
                                              },
                                              "bottom_right": {
                                                    "x": 227,
                                                    "y": 247
                                              },
                                              "bottom_left": {
                                                    "x": 212,
                                                    "y": 246
                                              },
                                              "width": 15,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "CHS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 237,
                                                    "y": 233
                                              },
                                              "top_right": {
                                                    "x": 261,
                                                    "y": 235
                                              },
                                              "bottom_right": {
                                                    "x": 260,
                                                    "y": 250
                                              },
                                              "bottom_left": {
                                                    "x": 236,
                                                    "y": 248
                                              },
                                              "width": 24,
                                              "height": 15
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "002190848816 F 4.98 T",
                            "bounds": {
                                  "top_left": {
                                        "x": 282,
                                        "y": 222
                                  },
                                  "top_right": {
                                        "x": 392,
                                        "y": 223
                                  },
                                  "bottom_right": {
                                        "x": 392,
                                        "y": 239
                                  },
                                  "bottom_left": {
                                        "x": 281,
                                        "y": 238
                                  },
                                  "width": 110.5,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "002190848816",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 283,
                                                    "y": 222
                                              },
                                              "top_right": {
                                                    "x": 376,
                                                    "y": 225
                                              },
                                              "bottom_right": {
                                                    "x": 376,
                                                    "y": 238
                                              },
                                              "bottom_left": {
                                                    "x": 283,
                                                    "y": 238
                                              },
                                              "width": 93,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 384,
                                                    "y": 225
                                              },
                                              "top_right": {
                                                    "x": 391,
                                                    "y": 225
                                              },
                                              "bottom_right": {
                                                    "x": 391,
                                                    "y": 238
                                              },
                                              "bottom_left": {
                                                    "x": 383,
                                                    "y": 238
                                              },
                                              "width": 7.5,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HRI CL CHS",
                            "bounds": {
                                  "top_left": {
                                        "x": 179,
                                        "y": 243
                                  },
                                  "top_right": {
                                        "x": 261,
                                        "y": 249
                                  },
                                  "bottom_right": {
                                        "x": 260,
                                        "y": 263
                                  },
                                  "bottom_left": {
                                        "x": 178,
                                        "y": 257
                                  },
                                  "width": 82,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "HRI",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 179,
                                                    "y": 244
                                              },
                                              "top_right": {
                                                    "x": 205,
                                                    "y": 246
                                              },
                                              "bottom_right": {
                                                    "x": 204,
                                                    "y": 259
                                              },
                                              "bottom_left": {
                                                    "x": 179,
                                                    "y": 258
                                              },
                                              "width": 25.5,
                                              "height": 13.5
                                        }
                                  },
                                  {
                                        "text": "CL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 212,
                                                    "y": 246
                                              },
                                              "top_right": {
                                                    "x": 227,
                                                    "y": 247
                                              },
                                              "bottom_right": {
                                                    "x": 226,
                                                    "y": 261
                                              },
                                              "bottom_left": {
                                                    "x": 212,
                                                    "y": 260
                                              },
                                              "width": 14.5,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "CHS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 236,
                                                    "y": 248
                                              },
                                              "top_right": {
                                                    "x": 260,
                                                    "y": 249
                                              },
                                              "bottom_right": {
                                                    "x": 259,
                                                    "y": 264
                                              },
                                              "bottom_left": {
                                                    "x": 235,
                                                    "y": 262
                                              },
                                              "width": 24,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "003120606000 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 283,
                                        "y": 236
                                  },
                                  "top_right": {
                                        "x": 392,
                                        "y": 237
                                  },
                                  "bottom_right": {
                                        "x": 392,
                                        "y": 253
                                  },
                                  "bottom_left": {
                                        "x": 283,
                                        "y": 252
                                  },
                                  "width": 109,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "003120606000",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 284,
                                                    "y": 237
                                              },
                                              "top_right": {
                                                    "x": 375,
                                                    "y": 238
                                              },
                                              "bottom_right": {
                                                    "x": 375,
                                                    "y": 253
                                              },
                                              "bottom_left": {
                                                    "x": 283,
                                                    "y": 252
                                              },
                                              "width": 91.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 384,
                                                    "y": 239
                                              },
                                              "top_right": {
                                                    "x": 391,
                                                    "y": 239
                                              },
                                              "bottom_right": {
                                                    "x": 391,
                                                    "y": 252
                                              },
                                              "bottom_left": {
                                                    "x": 383,
                                                    "y": 252
                                              },
                                              "width": 7.5,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "003120506000 F 6.88 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 283,
                                        "y": 251
                                  },
                                  "top_right": {
                                        "x": 391,
                                        "y": 252
                                  },
                                  "bottom_right": {
                                        "x": 391,
                                        "y": 267
                                  },
                                  "bottom_left": {
                                        "x": 283,
                                        "y": 265
                                  },
                                  "width": 108,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "003120506000",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 284,
                                                    "y": 251
                                              },
                                              "top_right": {
                                                    "x": 375,
                                                    "y": 253
                                              },
                                              "bottom_right": {
                                                    "x": 374,
                                                    "y": 267
                                              },
                                              "bottom_left": {
                                                    "x": 283,
                                                    "y": 266
                                              },
                                              "width": 91,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 382,
                                                    "y": 253
                                              },
                                              "top_right": {
                                                    "x": 390,
                                                    "y": 253
                                              },
                                              "bottom_right": {
                                                    "x": 390,
                                                    "y": 267
                                              },
                                              "bottom_left": {
                                                    "x": 382,
                                                    "y": 267
                                              },
                                              "width": 8,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "** VOIDED ENTRY ##",
                            "bounds": {
                                  "top_left": {
                                        "x": 183,
                                        "y": 258
                                  },
                                  "top_right": {
                                        "x": 330,
                                        "y": 266
                                  },
                                  "bottom_right": {
                                        "x": 329,
                                        "y": 281
                                  },
                                  "bottom_left": {
                                        "x": 183,
                                        "y": 273
                                  },
                                  "width": 146.5,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "**",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 187,
                                                    "y": 258
                                              },
                                              "top_right": {
                                                    "x": 205,
                                                    "y": 260
                                              },
                                              "bottom_right": {
                                                    "x": 204,
                                                    "y": 274
                                              },
                                              "bottom_left": {
                                                    "x": 187,
                                                    "y": 273
                                              },
                                              "width": 17.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "VOIDED",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 212,
                                                    "y": 260
                                              },
                                              "top_right": {
                                                    "x": 259,
                                                    "y": 263
                                              },
                                              "bottom_right": {
                                                    "x": 259,
                                                    "y": 278
                                              },
                                              "bottom_left": {
                                                    "x": 212,
                                                    "y": 275
                                              },
                                              "width": 47,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "ENTRY",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 267,
                                                    "y": 264
                                              },
                                              "top_right": {
                                                    "x": 307,
                                                    "y": 266
                                              },
                                              "bottom_right": {
                                                    "x": 306,
                                                    "y": 280
                                              },
                                              "bottom_left": {
                                                    "x": 266,
                                                    "y": 278
                                              },
                                              "width": 40,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "##",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 314,
                                                    "y": 266
                                              },
                                              "top_right": {
                                                    "x": 329,
                                                    "y": 267
                                              },
                                              "bottom_right": {
                                                    "x": 328,
                                                    "y": 281
                                              },
                                              "bottom_left": {
                                                    "x": 312,
                                                    "y": 280
                                              },
                                              "width": 15.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HRI CL CHS",
                            "bounds": {
                                  "top_left": {
                                        "x": 178,
                                        "y": 271
                                  },
                                  "top_right": {
                                        "x": 259,
                                        "y": 276
                                  },
                                  "bottom_right": {
                                        "x": 258,
                                        "y": 291
                                  },
                                  "bottom_left": {
                                        "x": 178,
                                        "y": 286
                                  },
                                  "width": 80.5,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "HRI",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 179,
                                                    "y": 272
                                              },
                                              "top_right": {
                                                    "x": 205,
                                                    "y": 274
                                              },
                                              "bottom_right": {
                                                    "x": 204,
                                                    "y": 288
                                              },
                                              "bottom_left": {
                                                    "x": 178,
                                                    "y": 287
                                              },
                                              "width": 26,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "CL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 212,
                                                    "y": 274
                                              },
                                              "top_right": {
                                                    "x": 228,
                                                    "y": 275
                                              },
                                              "bottom_right": {
                                                    "x": 226,
                                                    "y": 290
                                              },
                                              "bottom_left": {
                                                    "x": 210,
                                                    "y": 289
                                              },
                                              "width": 16,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "CHS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 236,
                                                    "y": 276
                                              },
                                              "top_right": {
                                                    "x": 259,
                                                    "y": 277
                                              },
                                              "bottom_right": {
                                                    "x": 258,
                                                    "y": 291
                                              },
                                              "bottom_left": {
                                                    "x": 235,
                                                    "y": 290
                                              },
                                              "width": 23,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "003120506000 F 5.88-0",
                            "bounds": {
                                  "top_left": {
                                        "x": 281,
                                        "y": 279
                                  },
                                  "top_right": {
                                        "x": 390,
                                        "y": 279
                                  },
                                  "bottom_right": {
                                        "x": 390,
                                        "y": 294
                                  },
                                  "bottom_left": {
                                        "x": 281,
                                        "y": 294
                                  },
                                  "width": 109,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "003120506000",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 282,
                                                    "y": 279
                                              },
                                              "top_right": {
                                                    "x": 373,
                                                    "y": 281
                                              },
                                              "bottom_right": {
                                                    "x": 373,
                                                    "y": 294
                                              },
                                              "bottom_left": {
                                                    "x": 281,
                                                    "y": 294
                                              },
                                              "width": 91.5,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 382,
                                                    "y": 281
                                              },
                                              "top_right": {
                                                    "x": 389,
                                                    "y": 281
                                              },
                                              "bottom_right": {
                                                    "x": 389,
                                                    "y": 293
                                              },
                                              "bottom_left": {
                                                    "x": 382,
                                                    "y": 294
                                              },
                                              "width": 7,
                                              "height": 12.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HRI 12 U SG 003120535000 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 178,
                                        "y": 285
                                  },
                                  "top_right": {
                                        "x": 390,
                                        "y": 293
                                  },
                                  "bottom_right": {
                                        "x": 390,
                                        "y": 309
                                  },
                                  "bottom_left": {
                                        "x": 177,
                                        "y": 302
                                  },
                                  "width": 212.5,
                                  "height": 16.5
                            },
                            "words": [
                                  {
                                        "text": "HRI",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 179,
                                                    "y": 285
                                              },
                                              "top_right": {
                                                    "x": 205,
                                                    "y": 287
                                              },
                                              "bottom_right": {
                                                    "x": 204,
                                                    "y": 303
                                              },
                                              "bottom_left": {
                                                    "x": 177,
                                                    "y": 300
                                              },
                                              "width": 26.5,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "12",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 213,
                                                    "y": 288
                                              },
                                              "top_right": {
                                                    "x": 229,
                                                    "y": 289
                                              },
                                              "bottom_right": {
                                                    "x": 228,
                                                    "y": 304
                                              },
                                              "bottom_left": {
                                                    "x": 212,
                                                    "y": 303
                                              },
                                              "width": 16,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "U",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 243,
                                                    "y": 290
                                              },
                                              "top_right": {
                                                    "x": 250,
                                                    "y": 290
                                              },
                                              "bottom_right": {
                                                    "x": 249,
                                                    "y": 306
                                              },
                                              "bottom_left": {
                                                    "x": 242,
                                                    "y": 305
                                              },
                                              "width": 7,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "SG",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 259,
                                                    "y": 291
                                              },
                                              "top_right": {
                                                    "x": 274,
                                                    "y": 292
                                              },
                                              "bottom_right": {
                                                    "x": 273,
                                                    "y": 307
                                              },
                                              "bottom_left": {
                                                    "x": 259,
                                                    "y": 306
                                              },
                                              "width": 14.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "003120535000",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 282,
                                                    "y": 292
                                              },
                                              "top_right": {
                                                    "x": 374,
                                                    "y": 294
                                              },
                                              "bottom_right": {
                                                    "x": 374,
                                                    "y": 309
                                              },
                                              "bottom_left": {
                                                    "x": 281,
                                                    "y": 307
                                              },
                                              "width": 92.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 382,
                                                    "y": 294
                                              },
                                              "top_right": {
                                                    "x": 389,
                                                    "y": 294
                                              },
                                              "bottom_right": {
                                                    "x": 389,
                                                    "y": 308
                                              },
                                              "bottom_left": {
                                                    "x": 382,
                                                    "y": 309
                                              },
                                              "width": 7,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HRI CL PEP 003120507000 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 178,
                                        "y": 300
                                  },
                                  "top_right": {
                                        "x": 259,
                                        "y": 304
                                  },
                                  "bottom_right": {
                                        "x": 258,
                                        "y": 319
                                  },
                                  "bottom_left": {
                                        "x": 177,
                                        "y": 314
                                  },
                                  "width": 81,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "HRI",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 179,
                                                    "y": 300
                                              },
                                              "top_right": {
                                                    "x": 204,
                                                    "y": 303
                                              },
                                              "bottom_right": {
                                                    "x": 203,
                                                    "y": 316
                                              },
                                              "bottom_left": {
                                                    "x": 178,
                                                    "y": 315
                                              },
                                              "width": 25,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "CL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 212,
                                                    "y": 303
                                              },
                                              "top_right": {
                                                    "x": 226,
                                                    "y": 304
                                              },
                                              "bottom_right": {
                                                    "x": 225,
                                                    "y": 318
                                              },
                                              "bottom_left": {
                                                    "x": 210,
                                                    "y": 317
                                              },
                                              "width": 14.5,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "PEP",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 235,
                                                    "y": 305
                                              },
                                              "top_right": {
                                                    "x": 258,
                                                    "y": 306
                                              },
                                              "bottom_right": {
                                                    "x": 257,
                                                    "y": 319
                                              },
                                              "bottom_left": {
                                                    "x": 234,
                                                    "y": 318
                                              },
                                              "width": 23,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "5.88 D",
                            "bounds": {
                                  "top_left": {
                                        "x": 426,
                                        "y": 294
                                  },
                                  "top_right": {
                                        "x": 475,
                                        "y": 294
                                  },
                                  "bottom_right": {
                                        "x": 475,
                                        "y": 307
                                  },
                                  "bottom_left": {
                                        "x": 426,
                                        "y": 307
                                  },
                                  "width": 49,
                                  "height": 13
                            },
                            "words": [
                                  {
                                        "text": "5.88",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 428,
                                                    "y": 294
                                              },
                                              "top_right": {
                                                    "x": 458,
                                                    "y": 295
                                              },
                                              "bottom_right": {
                                                    "x": 458,
                                                    "y": 307
                                              },
                                              "bottom_left": {
                                                    "x": 428,
                                                    "y": 308
                                              },
                                              "width": 30,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "D",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 467,
                                                    "y": 295
                                              },
                                              "top_right": {
                                                    "x": 474,
                                                    "y": 295
                                              },
                                              "bottom_right": {
                                                    "x": 474,
                                                    "y": 308
                                              },
                                              "bottom_left": {
                                                    "x": 467,
                                                    "y": 308
                                              },
                                              "width": 7,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "EARBUDS 068113100946 4.88 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 177,
                                        "y": 315
                                  },
                                  "top_right": {
                                        "x": 239,
                                        "y": 318
                                  },
                                  "bottom_right": {
                                        "x": 238,
                                        "y": 332
                                  },
                                  "bottom_left": {
                                        "x": 176,
                                        "y": 329
                                  },
                                  "width": 62,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "EARBUDS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 179,
                                                    "y": 315
                                              },
                                              "top_right": {
                                                    "x": 234,
                                                    "y": 319
                                              },
                                              "bottom_right": {
                                                    "x": 234,
                                                    "y": 332
                                              },
                                              "bottom_left": {
                                                    "x": 177,
                                                    "y": 330
                                              },
                                              "width": 56,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "5.88 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 426,
                                        "y": 309
                                  },
                                  "top_right": {
                                        "x": 476,
                                        "y": 309
                                  },
                                  "bottom_right": {
                                        "x": 476,
                                        "y": 321
                                  },
                                  "bottom_left": {
                                        "x": 426,
                                        "y": 321
                                  },
                                  "width": 50,
                                  "height": 12
                            },
                            "words": [
                                  {
                                        "text": "5.88",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 427,
                                                    "y": 310
                                              },
                                              "top_right": {
                                                    "x": 458,
                                                    "y": 310
                                              },
                                              "bottom_right": {
                                                    "x": 458,
                                                    "y": 322
                                              },
                                              "bottom_left": {
                                                    "x": 427,
                                                    "y": 322
                                              },
                                              "width": 31,
                                              "height": 12
                                        }
                                  },
                                  {
                                        "text": "0",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 467,
                                                    "y": 310
                                              },
                                              "top_right": {
                                                    "x": 473,
                                                    "y": 310
                                              },
                                              "bottom_right": {
                                                    "x": 473,
                                                    "y": 322
                                              },
                                              "bottom_left": {
                                                    "x": 467,
                                                    "y": 322
                                              },
                                              "width": 6,
                                              "height": 12
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "SC BCN CHDDR 007874202906 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 175,
                                        "y": 329
                                  },
                                  "top_right": {
                                        "x": 389,
                                        "y": 336
                                  },
                                  "bottom_right": {
                                        "x": 388,
                                        "y": 351
                                  },
                                  "bottom_left": {
                                        "x": 175,
                                        "y": 345
                                  },
                                  "width": 213.5,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "SC",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 178,
                                                    "y": 330
                                              },
                                              "top_right": {
                                                    "x": 193,
                                                    "y": 331
                                              },
                                              "bottom_right": {
                                                    "x": 192,
                                                    "y": 344
                                              },
                                              "bottom_left": {
                                                    "x": 177,
                                                    "y": 343
                                              },
                                              "width": 15,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "BCN",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 203,
                                                    "y": 331
                                              },
                                              "top_right": {
                                                    "x": 226,
                                                    "y": 332
                                              },
                                              "bottom_right": {
                                                    "x": 225,
                                                    "y": 347
                                              },
                                              "bottom_left": {
                                                    "x": 202,
                                                    "y": 345
                                              },
                                              "width": 23,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "CHDDR",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 234,
                                                    "y": 333
                                              },
                                              "top_right": {
                                                    "x": 273,
                                                    "y": 334
                                              },
                                              "bottom_right": {
                                                    "x": 272,
                                                    "y": 349
                                              },
                                              "bottom_left": {
                                                    "x": 233,
                                                    "y": 347
                                              },
                                              "width": 39,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "007874202906",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 282,
                                                    "y": 335
                                              },
                                              "top_right": {
                                                    "x": 373,
                                                    "y": 337
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 351
                                              },
                                              "bottom_left": {
                                                    "x": 281,
                                                    "y": 350
                                              },
                                              "width": 91,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 381,
                                                    "y": 337
                                              },
                                              "top_right": {
                                                    "x": 388,
                                                    "y": 337
                                              },
                                              "bottom_right": {
                                                    "x": 387,
                                                    "y": 351
                                              },
                                              "bottom_left": {
                                                    "x": 380,
                                                    "y": 351
                                              },
                                              "width": 7,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "ABF THINBRST 022451710972 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 176,
                                        "y": 343
                                  },
                                  "top_right": {
                                        "x": 390,
                                        "y": 350
                                  },
                                  "bottom_right": {
                                        "x": 389,
                                        "y": 365
                                  },
                                  "bottom_left": {
                                        "x": 176,
                                        "y": 359
                                  },
                                  "width": 213.5,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "ABF",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 178,
                                                    "y": 344
                                              },
                                              "top_right": {
                                                    "x": 202,
                                                    "y": 345
                                              },
                                              "bottom_right": {
                                                    "x": 200,
                                                    "y": 360
                                              },
                                              "bottom_left": {
                                                    "x": 177,
                                                    "y": 358
                                              },
                                              "width": 23.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "THINBRST",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 212,
                                                    "y": 345
                                              },
                                              "top_right": {
                                                    "x": 274,
                                                    "y": 348
                                              },
                                              "bottom_right": {
                                                    "x": 273,
                                                    "y": 363
                                              },
                                              "bottom_left": {
                                                    "x": 210,
                                                    "y": 360
                                              },
                                              "width": 62.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "022451710972",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 281,
                                                    "y": 348
                                              },
                                              "top_right": {
                                                    "x": 373,
                                                    "y": 350
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 365
                                              },
                                              "bottom_left": {
                                                    "x": 280,
                                                    "y": 363
                                              },
                                              "width": 92,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 379,
                                                    "y": 350
                                              },
                                              "top_right": {
                                                    "x": 387,
                                                    "y": 350
                                              },
                                              "bottom_right": {
                                                    "x": 386,
                                                    "y": 365
                                              },
                                              "bottom_left": {
                                                    "x": 379,
                                                    "y": 365
                                              },
                                              "width": 7.5,
                                              "height": 15
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "6.98 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 424,
                                        "y": 336
                                  },
                                  "top_right": {
                                        "x": 475,
                                        "y": 337
                                  },
                                  "bottom_right": {
                                        "x": 475,
                                        "y": 350
                                  },
                                  "bottom_left": {
                                        "x": 424,
                                        "y": 350
                                  },
                                  "width": 51,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "6.98",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 426,
                                                    "y": 337
                                              },
                                              "top_right": {
                                                    "x": 457,
                                                    "y": 338
                                              },
                                              "bottom_right": {
                                                    "x": 456,
                                                    "y": 350
                                              },
                                              "bottom_left": {
                                                    "x": 426,
                                                    "y": 350
                                              },
                                              "width": 30.5,
                                              "height": 12.5
                                        }
                                  },
                                  {
                                        "text": "0",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 466,
                                                    "y": 338
                                              },
                                              "top_right": {
                                                    "x": 472,
                                                    "y": 338
                                              },
                                              "bottom_right": {
                                                    "x": 472,
                                                    "y": 350
                                              },
                                              "bottom_left": {
                                                    "x": 465,
                                                    "y": 350
                                              },
                                              "width": 6.5,
                                              "height": 12
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "HARD/PROV/DC 007874219410 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 176,
                                        "y": 358
                                  },
                                  "top_right": {
                                        "x": 390,
                                        "y": 364
                                  },
                                  "bottom_right": {
                                        "x": 389,
                                        "y": 379
                                  },
                                  "bottom_left": {
                                        "x": 176,
                                        "y": 374
                                  },
                                  "width": 213.5,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "HARD/PROV/DC",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 177,
                                                    "y": 359
                                              },
                                              "top_right": {
                                                    "x": 272,
                                                    "y": 362
                                              },
                                              "bottom_right": {
                                                    "x": 272,
                                                    "y": 377
                                              },
                                              "bottom_left": {
                                                    "x": 176,
                                                    "y": 373
                                              },
                                              "width": 95.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "007874219410",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 281,
                                                    "y": 362
                                              },
                                              "top_right": {
                                                    "x": 372,
                                                    "y": 364
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 379
                                              },
                                              "bottom_left": {
                                                    "x": 280,
                                                    "y": 378
                                              },
                                              "width": 91,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 379,
                                                    "y": 365
                                              },
                                              "top_right": {
                                                    "x": 387,
                                                    "y": 365
                                              },
                                              "bottom_right": {
                                                    "x": 386,
                                                    "y": 379
                                              },
                                              "bottom_left": {
                                                    "x": 378,
                                                    "y": 379
                                              },
                                              "width": 8,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "9.72 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 424,
                                        "y": 351
                                  },
                                  "top_right": {
                                        "x": 474,
                                        "y": 351
                                  },
                                  "bottom_right": {
                                        "x": 474,
                                        "y": 365
                                  },
                                  "bottom_left": {
                                        "x": 424,
                                        "y": 364
                                  },
                                  "width": 50,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "9.72",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 426,
                                                    "y": 351
                                              },
                                              "top_right": {
                                                    "x": 458,
                                                    "y": 352
                                              },
                                              "bottom_right": {
                                                    "x": 458,
                                                    "y": 365
                                              },
                                              "bottom_left": {
                                                    "x": 427,
                                                    "y": 365
                                              },
                                              "width": 31.5,
                                              "height": 13.5
                                        }
                                  },
                                  {
                                        "text": "0",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 465,
                                                    "y": 352
                                              },
                                              "top_right": {
                                                    "x": 472,
                                                    "y": 353
                                              },
                                              "bottom_right": {
                                                    "x": 472,
                                                    "y": 365
                                              },
                                              "bottom_left": {
                                                    "x": 465,
                                                    "y": 365
                                              },
                                              "width": 7,
                                              "height": 12.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "DV RSE OIL M 001111101220",
                            "bounds": {
                                  "top_left": {
                                        "x": 176,
                                        "y": 373
                                  },
                                  "top_right": {
                                        "x": 373,
                                        "y": 379
                                  },
                                  "bottom_right": {
                                        "x": 372,
                                        "y": 395
                                  },
                                  "bottom_left": {
                                        "x": 176,
                                        "y": 387
                                  },
                                  "width": 196.5,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "DV",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 177,
                                                    "y": 373
                                              },
                                              "top_right": {
                                                    "x": 193,
                                                    "y": 374
                                              },
                                              "bottom_right": {
                                                    "x": 193,
                                                    "y": 388
                                              },
                                              "bottom_left": {
                                                    "x": 176,
                                                    "y": 387
                                              },
                                              "width": 16.5,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "RSE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 201,
                                                    "y": 374
                                              },
                                              "top_right": {
                                                    "x": 225,
                                                    "y": 375
                                              },
                                              "bottom_right": {
                                                    "x": 224,
                                                    "y": 390
                                              },
                                              "bottom_left": {
                                                    "x": 201,
                                                    "y": 388
                                              },
                                              "width": 23.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "OIL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 233,
                                                    "y": 375
                                              },
                                              "top_right": {
                                                    "x": 257,
                                                    "y": 376
                                              },
                                              "bottom_right": {
                                                    "x": 256,
                                                    "y": 391
                                              },
                                              "bottom_left": {
                                                    "x": 233,
                                                    "y": 390
                                              },
                                              "width": 23.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "M",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 264,
                                                    "y": 376
                                              },
                                              "top_right": {
                                                    "x": 271,
                                                    "y": 376
                                              },
                                              "bottom_right": {
                                                    "x": 271,
                                                    "y": 392
                                              },
                                              "bottom_left": {
                                                    "x": 263,
                                                    "y": 391
                                              },
                                              "width": 7.5,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "001111101220",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 281,
                                                    "y": 376
                                              },
                                              "top_right": {
                                                    "x": 371,
                                                    "y": 379
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 395
                                              },
                                              "bottom_left": {
                                                    "x": 280,
                                                    "y": 392
                                              },
                                              "width": 90.5,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "2.68 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 423,
                                        "y": 366
                                  },
                                  "top_right": {
                                        "x": 473,
                                        "y": 367
                                  },
                                  "bottom_right": {
                                        "x": 473,
                                        "y": 380
                                  },
                                  "bottom_left": {
                                        "x": 423,
                                        "y": 379
                                  },
                                  "width": 50,
                                  "height": 13
                            },
                            "words": [
                                  {
                                        "text": "2.68",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 427,
                                                    "y": 366
                                              },
                                              "top_right": {
                                                    "x": 456,
                                                    "y": 367
                                              },
                                              "bottom_right": {
                                                    "x": 456,
                                                    "y": 380
                                              },
                                              "bottom_left": {
                                                    "x": 427,
                                                    "y": 380
                                              },
                                              "width": 29,
                                              "height": 13.5
                                        }
                                  },
                                  {
                                        "text": "0",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 465,
                                                    "y": 367
                                              },
                                              "top_right": {
                                                    "x": 472,
                                                    "y": 368
                                              },
                                              "bottom_right": {
                                                    "x": 471,
                                                    "y": 380
                                              },
                                              "bottom_left": {
                                                    "x": 465,
                                                    "y": 380
                                              },
                                              "width": 6.5,
                                              "height": 12.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "APPLE 3 BAG 084747300184 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 175,
                                        "y": 386
                                  },
                                  "top_right": {
                                        "x": 387,
                                        "y": 392
                                  },
                                  "bottom_right": {
                                        "x": 386,
                                        "y": 408
                                  },
                                  "bottom_left": {
                                        "x": 175,
                                        "y": 402
                                  },
                                  "width": 211.5,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "APPLE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 177,
                                                    "y": 387
                                              },
                                              "top_right": {
                                                    "x": 217,
                                                    "y": 388
                                              },
                                              "bottom_right": {
                                                    "x": 216,
                                                    "y": 403
                                              },
                                              "bottom_left": {
                                                    "x": 176,
                                                    "y": 402
                                              },
                                              "width": 40,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "3",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 225,
                                                    "y": 389
                                              },
                                              "top_right": {
                                                    "x": 234,
                                                    "y": 389
                                              },
                                              "bottom_right": {
                                                    "x": 233,
                                                    "y": 404
                                              },
                                              "bottom_left": {
                                                    "x": 225,
                                                    "y": 404
                                              },
                                              "width": 8.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "BAG",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 248,
                                                    "y": 390
                                              },
                                              "top_right": {
                                                    "x": 272,
                                                    "y": 390
                                              },
                                              "bottom_right": {
                                                    "x": 271,
                                                    "y": 405
                                              },
                                              "bottom_left": {
                                                    "x": 248,
                                                    "y": 404
                                              },
                                              "width": 23.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "084747300184",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 280,
                                                    "y": 391
                                              },
                                              "top_right": {
                                                    "x": 372,
                                                    "y": 393
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 407
                                              },
                                              "bottom_left": {
                                                    "x": 279,
                                                    "y": 405
                                              },
                                              "width": 92,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 378,
                                                    "y": 393
                                              },
                                              "top_right": {
                                                    "x": 386,
                                                    "y": 394
                                              },
                                              "bottom_right": {
                                                    "x": 385,
                                                    "y": 407
                                              },
                                              "bottom_left": {
                                                    "x": 378,
                                                    "y": 407
                                              },
                                              "width": 7.5,
                                              "height": 13.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "5.94 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 421,
                                        "y": 380
                                  },
                                  "top_right": {
                                        "x": 473,
                                        "y": 380
                                  },
                                  "bottom_right": {
                                        "x": 473,
                                        "y": 394
                                  },
                                  "bottom_left": {
                                        "x": 421,
                                        "y": 393
                                  },
                                  "width": 52,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "5.94",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 425,
                                                    "y": 380
                                              },
                                              "top_right": {
                                                    "x": 456,
                                                    "y": 381
                                              },
                                              "bottom_right": {
                                                    "x": 456,
                                                    "y": 393
                                              },
                                              "bottom_left": {
                                                    "x": 425,
                                                    "y": 394
                                              },
                                              "width": 31,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "X",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 464,
                                                    "y": 381
                                              },
                                              "top_right": {
                                                    "x": 471,
                                                    "y": 381
                                              },
                                              "bottom_right": {
                                                    "x": 471,
                                                    "y": 394
                                              },
                                              "bottom_left": {
                                                    "x": 464,
                                                    "y": 393
                                              },
                                              "width": 7,
                                              "height": 12.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "STOK LT SWT 004127102774 F",
                            "bounds": {
                                  "top_left": {
                                        "x": 174,
                                        "y": 400
                                  },
                                  "top_right": {
                                        "x": 386,
                                        "y": 406
                                  },
                                  "bottom_right": {
                                        "x": 386,
                                        "y": 421
                                  },
                                  "bottom_left": {
                                        "x": 174,
                                        "y": 415
                                  },
                                  "width": 212,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "STOK",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 177,
                                                    "y": 401
                                              },
                                              "top_right": {
                                                    "x": 208,
                                                    "y": 402
                                              },
                                              "bottom_right": {
                                                    "x": 208,
                                                    "y": 416
                                              },
                                              "bottom_left": {
                                                    "x": 177,
                                                    "y": 415
                                              },
                                              "width": 31,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "LT",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 216,
                                                    "y": 402
                                              },
                                              "top_right": {
                                                    "x": 233,
                                                    "y": 403
                                              },
                                              "bottom_right": {
                                                    "x": 233,
                                                    "y": 417
                                              },
                                              "bottom_left": {
                                                    "x": 216,
                                                    "y": 417
                                              },
                                              "width": 17,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "SWT",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 241,
                                                    "y": 403
                                              },
                                              "top_right": {
                                                    "x": 264,
                                                    "y": 404
                                              },
                                              "bottom_right": {
                                                    "x": 264,
                                                    "y": 418
                                              },
                                              "bottom_left": {
                                                    "x": 241,
                                                    "y": 417
                                              },
                                              "width": 23,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "004127102774",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 279,
                                                    "y": 404
                                              },
                                              "top_right": {
                                                    "x": 371,
                                                    "y": 406
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 420
                                              },
                                              "bottom_left": {
                                                    "x": 279,
                                                    "y": 419
                                              },
                                              "width": 92,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 378,
                                                    "y": 406
                                              },
                                              "top_right": {
                                                    "x": 385,
                                                    "y": 406
                                              },
                                              "bottom_right": {
                                                    "x": 385,
                                                    "y": 421
                                              },
                                              "bottom_left": {
                                                    "x": 378,
                                                    "y": 420
                                              },
                                              "width": 7,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "6.47 N",
                            "bounds": {
                                  "top_left": {
                                        "x": 421,
                                        "y": 393
                                  },
                                  "top_right": {
                                        "x": 473,
                                        "y": 394
                                  },
                                  "bottom_right": {
                                        "x": 473,
                                        "y": 408
                                  },
                                  "bottom_left": {
                                        "x": 421,
                                        "y": 407
                                  },
                                  "width": 52,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "6.47",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 425,
                                                    "y": 394
                                              },
                                              "top_right": {
                                                    "x": 457,
                                                    "y": 394
                                              },
                                              "bottom_right": {
                                                    "x": 457,
                                                    "y": 409
                                              },
                                              "bottom_left": {
                                                    "x": 424,
                                                    "y": 408
                                              },
                                              "width": 32.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "N",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 463,
                                                    "y": 395
                                              },
                                              "top_right": {
                                                    "x": 471,
                                                    "y": 395
                                              },
                                              "bottom_right": {
                                                    "x": 471,
                                                    "y": 409
                                              },
                                              "bottom_left": {
                                                    "x": 463,
                                                    "y": 409
                                              },
                                              "width": 8,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "PEANUT BUTTR 005160026499 F 6.44 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 174,
                                        "y": 414
                                  },
                                  "top_right": {
                                        "x": 389,
                                        "y": 419
                                  },
                                  "bottom_right": {
                                        "x": 389,
                                        "y": 435
                                  },
                                  "bottom_left": {
                                        "x": 174,
                                        "y": 430
                                  },
                                  "width": 215,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "PEANUT",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 176,
                                                    "y": 414
                                              },
                                              "top_right": {
                                                    "x": 225,
                                                    "y": 416
                                              },
                                              "bottom_right": {
                                                    "x": 225,
                                                    "y": 432
                                              },
                                              "bottom_left": {
                                                    "x": 175,
                                                    "y": 429
                                              },
                                              "width": 49.5,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "BUTTR",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 232,
                                                    "y": 417
                                              },
                                              "top_right": {
                                                    "x": 271,
                                                    "y": 418
                                              },
                                              "bottom_right": {
                                                    "x": 270,
                                                    "y": 433
                                              },
                                              "bottom_left": {
                                                    "x": 232,
                                                    "y": 432
                                              },
                                              "width": 38.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "005160026499",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 279,
                                                    "y": 418
                                              },
                                              "top_right": {
                                                    "x": 371,
                                                    "y": 420
                                              },
                                              "bottom_right": {
                                                    "x": 371,
                                                    "y": 434
                                              },
                                              "bottom_left": {
                                                    "x": 278,
                                                    "y": 433
                                              },
                                              "width": 92.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "F",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 378,
                                                    "y": 420
                                              },
                                              "top_right": {
                                                    "x": 385,
                                                    "y": 420
                                              },
                                              "bottom_right": {
                                                    "x": 385,
                                                    "y": 434
                                              },
                                              "bottom_left": {
                                                    "x": 378,
                                                    "y": 434
                                              },
                                              "width": 7,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "4.42 T",
                            "bounds": {
                                  "top_left": {
                                        "x": 421,
                                        "y": 408
                                  },
                                  "top_right": {
                                        "x": 472,
                                        "y": 408
                                  },
                                  "bottom_right": {
                                        "x": 472,
                                        "y": 422
                                  },
                                  "bottom_left": {
                                        "x": 421,
                                        "y": 421
                                  },
                                  "width": 51,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "4.42",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 425,
                                                    "y": 408
                                              },
                                              "top_right": {
                                                    "x": 455,
                                                    "y": 409
                                              },
                                              "bottom_right": {
                                                    "x": 455,
                                                    "y": 422
                                              },
                                              "bottom_left": {
                                                    "x": 425,
                                                    "y": 421
                                              },
                                              "width": 30,
                                              "height": 13
                                        }
                                  },
                                  {
                                        "text": "T",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 464,
                                                    "y": 409
                                              },
                                              "top_right": {
                                                    "x": 470,
                                                    "y": 409
                                              },
                                              "bottom_right": {
                                                    "x": 470,
                                                    "y": 422
                                              },
                                              "bottom_left": {
                                                    "x": 464,
                                                    "y": 422
                                              },
                                              "width": 6,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "AVO VERDE 061611206143 F 2.98 N",
                            "bounds": {
                                  "top_left": {
                                        "x": 175,
                                        "y": 430
                                  },
                                  "top_right": {
                                        "x": 248,
                                        "y": 431
                                  },
                                  "bottom_right": {
                                        "x": 248,
                                        "y": 445
                                  },
                                  "bottom_left": {
                                        "x": 175,
                                        "y": 444
                                  },
                                  "width": 73,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "AVO",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 176,
                                                    "y": 430
                                              },
                                              "top_right": {
                                                    "x": 199,
                                                    "y": 431
                                              },
                                              "bottom_right": {
                                                    "x": 198,
                                                    "y": 445
                                              },
                                              "bottom_left": {
                                                    "x": 175,
                                                    "y": 445
                                              },
                                              "width": 23,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "VERDE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 208,
                                                    "y": 431
                                              },
                                              "top_right": {
                                                    "x": 248,
                                                    "y": 432
                                              },
                                              "bottom_right": {
                                                    "x": 246,
                                                    "y": 446
                                              },
                                              "bottom_left": {
                                                    "x": 207,
                                                    "y": 445
                                              },
                                              "width": 39.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "ROLLS 007874219416 F 1.28 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 175,
                                        "y": 443
                                  },
                                  "top_right": {
                                        "x": 218,
                                        "y": 444
                                  },
                                  "bottom_right": {
                                        "x": 217,
                                        "y": 458
                                  },
                                  "bottom_left": {
                                        "x": 175,
                                        "y": 456
                                  },
                                  "width": 42.5,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "ROLLS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 176,
                                                    "y": 444
                                              },
                                              "top_right": {
                                                    "x": 216,
                                                    "y": 445
                                              },
                                              "bottom_right": {
                                                    "x": 215,
                                                    "y": 459
                                              },
                                              "bottom_left": {
                                                    "x": 175,
                                                    "y": 457
                                              },
                                              "width": 40,
                                              "height": 13.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "BTS DRY BLON 501072452746 6.58 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 176,
                                        "y": 456
                                  },
                                  "top_right": {
                                        "x": 371,
                                        "y": 461
                                  },
                                  "bottom_right": {
                                        "x": 371,
                                        "y": 476
                                  },
                                  "bottom_left": {
                                        "x": 176,
                                        "y": 471
                                  },
                                  "width": 195,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "BTS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 176,
                                                    "y": 457
                                              },
                                              "top_right": {
                                                    "x": 199,
                                                    "y": 458
                                              },
                                              "bottom_right": {
                                                    "x": 199,
                                                    "y": 472
                                              },
                                              "bottom_left": {
                                                    "x": 176,
                                                    "y": 472
                                              },
                                              "width": 23,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "DRY",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 206,
                                                    "y": 458
                                              },
                                              "top_right": {
                                                    "x": 231,
                                                    "y": 458
                                              },
                                              "bottom_right": {
                                                    "x": 231,
                                                    "y": 473
                                              },
                                              "bottom_left": {
                                                    "x": 206,
                                                    "y": 473
                                              },
                                              "width": 25,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "BLON",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 238,
                                                    "y": 459
                                              },
                                              "top_right": {
                                                    "x": 269,
                                                    "y": 459
                                              },
                                              "bottom_right": {
                                                    "x": 269,
                                                    "y": 474
                                              },
                                              "bottom_left": {
                                                    "x": 238,
                                                    "y": 473
                                              },
                                              "width": 31,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "501072452746",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 277,
                                                    "y": 460
                                              },
                                              "top_right": {
                                                    "x": 369,
                                                    "y": 462
                                              },
                                              "bottom_right": {
                                                    "x": 369,
                                                    "y": 476
                                              },
                                              "bottom_left": {
                                                    "x": 277,
                                                    "y": 474
                                              },
                                              "width": 92,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "GALE 000000000003K 32.00 T",
                            "bounds": {
                                  "top_left": {
                                        "x": 175,
                                        "y": 470
                                  },
                                  "top_right": {
                                        "x": 209,
                                        "y": 472
                                  },
                                  "bottom_right": {
                                        "x": 209,
                                        "y": 484
                                  },
                                  "bottom_left": {
                                        "x": 174,
                                        "y": 484
                                  },
                                  "width": 34.5,
                                  "height": 13
                            },
                            "words": [
                                  {
                                        "text": "GALE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 175,
                                                    "y": 470
                                              },
                                              "top_right": {
                                                    "x": 206,
                                                    "y": 471
                                              },
                                              "bottom_right": {
                                                    "x": 206,
                                                    "y": 485
                                              },
                                              "bottom_left": {
                                                    "x": 175,
                                                    "y": 484
                                              },
                                              "width": 31,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "TR HS FRM 4 002240062190 2.74 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 174,
                                        "y": 484
                                  },
                                  "top_right": {
                                        "x": 262,
                                        "y": 486
                                  },
                                  "bottom_right": {
                                        "x": 262,
                                        "y": 501
                                  },
                                  "bottom_left": {
                                        "x": 173,
                                        "y": 499
                                  },
                                  "width": 88.5,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "TR",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 175,
                                                    "y": 485
                                              },
                                              "top_right": {
                                                    "x": 189,
                                                    "y": 485
                                              },
                                              "bottom_right": {
                                                    "x": 189,
                                                    "y": 500
                                              },
                                              "bottom_left": {
                                                    "x": 175,
                                                    "y": 500
                                              },
                                              "width": 14,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "HS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 197,
                                                    "y": 486
                                              },
                                              "top_right": {
                                                    "x": 214,
                                                    "y": 486
                                              },
                                              "bottom_right": {
                                                    "x": 213,
                                                    "y": 501
                                              },
                                              "bottom_left": {
                                                    "x": 196,
                                                    "y": 500
                                              },
                                              "width": 17,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "FRM",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 222,
                                                    "y": 486
                                              },
                                              "top_right": {
                                                    "x": 244,
                                                    "y": 487
                                              },
                                              "bottom_right": {
                                                    "x": 244,
                                                    "y": 501
                                              },
                                              "bottom_left": {
                                                    "x": 221,
                                                    "y": 501
                                              },
                                              "width": 22.5,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "4",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 254,
                                                    "y": 487
                                              },
                                              "top_right": {
                                                    "x": 262,
                                                    "y": 487
                                              },
                                              "bottom_right": {
                                                    "x": 262,
                                                    "y": 501
                                              },
                                              "bottom_left": {
                                                    "x": 253,
                                                    "y": 501
                                              },
                                              "width": 8.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "BAGELS 001376402801 F 4.66 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 172,
                                        "y": 498
                                  },
                                  "top_right": {
                                        "x": 223,
                                        "y": 500
                                  },
                                  "bottom_right": {
                                        "x": 223,
                                        "y": 514
                                  },
                                  "bottom_left": {
                                        "x": 172,
                                        "y": 513
                                  },
                                  "width": 51,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "BAGELS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 173,
                                                    "y": 499
                                              },
                                              "top_right": {
                                                    "x": 221,
                                                    "y": 501
                                              },
                                              "bottom_right": {
                                                    "x": 221,
                                                    "y": 514
                                              },
                                              "bottom_left": {
                                                    "x": 173,
                                                    "y": 513
                                              },
                                              "width": 48,
                                              "height": 13.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "GV SLIDERS 007874201625 2.98 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 170,
                                        "y": 513
                                  },
                                  "top_right": {
                                        "x": 255,
                                        "y": 513
                                  },
                                  "bottom_right": {
                                        "x": 255,
                                        "y": 528
                                  },
                                  "bottom_left": {
                                        "x": 170,
                                        "y": 528
                                  },
                                  "width": 85,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "GV",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 172,
                                                    "y": 513
                                              },
                                              "top_right": {
                                                    "x": 188,
                                                    "y": 514
                                              },
                                              "bottom_right": {
                                                    "x": 187,
                                                    "y": 529
                                              },
                                              "bottom_left": {
                                                    "x": 172,
                                                    "y": 529
                                              },
                                              "width": 15.5,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "SLIDERS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 196,
                                                    "y": 514
                                              },
                                              "top_right": {
                                                    "x": 252,
                                                    "y": 514
                                              },
                                              "bottom_right": {
                                                    "x": 252,
                                                    "y": 528
                                              },
                                              "bottom_left": {
                                                    "x": 196,
                                                    "y": 529
                                              },
                                              "width": 56,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "ACCESSORY 007515161216 0.97 X",
                            "bounds": {
                                  "top_left": {
                                        "x": 170,
                                        "y": 526
                                  },
                                  "top_right": {
                                        "x": 246,
                                        "y": 528
                                  },
                                  "bottom_right": {
                                        "x": 246,
                                        "y": 542
                                  },
                                  "bottom_left": {
                                        "x": 170,
                                        "y": 541
                                  },
                                  "width": 76,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "ACCESSORY",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 171,
                                                    "y": 527
                                              },
                                              "top_right": {
                                                    "x": 244,
                                                    "y": 529
                                              },
                                              "bottom_right": {
                                                    "x": 243,
                                                    "y": 542
                                              },
                                              "bottom_left": {
                                                    "x": 171,
                                                    "y": 542
                                              },
                                              "width": 72.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "CHEEZE IT 002410053523 F 4.00 0",
                            "bounds": {
                                  "top_left": {
                                        "x": 169,
                                        "y": 541
                                  },
                                  "top_right": {
                                        "x": 244,
                                        "y": 542
                                  },
                                  "bottom_right": {
                                        "x": 244,
                                        "y": 558
                                  },
                                  "bottom_left": {
                                        "x": 169,
                                        "y": 556
                                  },
                                  "width": 75,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "CHEEZE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 170,
                                                    "y": 541
                                              },
                                              "top_right": {
                                                    "x": 218,
                                                    "y": 543
                                              },
                                              "bottom_right": {
                                                    "x": 218,
                                                    "y": 557
                                              },
                                              "bottom_left": {
                                                    "x": 170,
                                                    "y": 557
                                              },
                                              "width": 48,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "IT",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 228,
                                                    "y": 543
                                              },
                                              "top_right": {
                                                    "x": 244,
                                                    "y": 544
                                              },
                                              "bottom_right": {
                                                    "x": 242,
                                                    "y": 558
                                              },
                                              "bottom_left": {
                                                    "x": 227,
                                                    "y": 557
                                              },
                                              "width": 15.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "WAS 4.54 YOU SAVED 0.54",
                            "bounds": {
                                  "top_left": {
                                        "x": 195,
                                        "y": 556
                                  },
                                  "top_right": {
                                        "x": 384,
                                        "y": 559
                                  },
                                  "bottom_right": {
                                        "x": 384,
                                        "y": 573
                                  },
                                  "bottom_left": {
                                        "x": 194,
                                        "y": 571
                                  },
                                  "width": 189.5,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "WAS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 201,
                                                    "y": 557
                                              },
                                              "top_right": {
                                                    "x": 226,
                                                    "y": 557
                                              },
                                              "bottom_right": {
                                                    "x": 225,
                                                    "y": 572
                                              },
                                              "bottom_left": {
                                                    "x": 200,
                                                    "y": 571
                                              },
                                              "width": 25,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "4.54",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 235,
                                                    "y": 557
                                              },
                                              "top_right": {
                                                    "x": 267,
                                                    "y": 558
                                              },
                                              "bottom_right": {
                                                    "x": 267,
                                                    "y": 573
                                              },
                                              "bottom_left": {
                                                    "x": 235,
                                                    "y": 572
                                              },
                                              "width": 32,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "YOU",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 274,
                                                    "y": 558
                                              },
                                              "top_right": {
                                                    "x": 296,
                                                    "y": 559
                                              },
                                              "bottom_right": {
                                                    "x": 295,
                                                    "y": 573
                                              },
                                              "bottom_left": {
                                                    "x": 273,
                                                    "y": 573
                                              },
                                              "width": 22,
                                              "height": 14.5
                                        }
                                  },
                                  {
                                        "text": "SAVED",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 305,
                                                    "y": 559
                                              },
                                              "top_right": {
                                                    "x": 344,
                                                    "y": 560
                                              },
                                              "bottom_right": {
                                                    "x": 344,
                                                    "y": 573
                                              },
                                              "bottom_left": {
                                                    "x": 305,
                                                    "y": 573
                                              },
                                              "width": 39,
                                              "height": 13.5
                                        }
                                  },
                                  {
                                        "text": "0.54",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 352,
                                                    "y": 560
                                              },
                                              "top_right": {
                                                    "x": 383,
                                                    "y": 560
                                              },
                                              "bottom_right": {
                                                    "x": 383,
                                                    "y": 573
                                              },
                                              "bottom_left": {
                                                    "x": 352,
                                                    "y": 573
                                              },
                                              "width": 31,
                                              "height": 13
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "RITZ 004400088210 F 2.78 N",
                            "bounds": {
                                  "top_left": {
                                        "x": 166,
                                        "y": 570
                                  },
                                  "top_right": {
                                        "x": 203,
                                        "y": 571
                                  },
                                  "bottom_right": {
                                        "x": 202,
                                        "y": 585
                                  },
                                  "bottom_left": {
                                        "x": 166,
                                        "y": 584
                                  },
                                  "width": 36.5,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "RITZ",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 168,
                                                    "y": 570
                                              },
                                              "top_right": {
                                                    "x": 201,
                                                    "y": 571
                                              },
                                              "bottom_right": {
                                                    "x": 201,
                                                    "y": 585
                                              },
                                              "bottom_left": {
                                                    "x": 167,
                                                    "y": 584
                                              },
                                              "width": 33.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "RUFFLES 002840020942 F 2.50 N",
                            "bounds": {
                                  "top_left": {
                                        "x": 166,
                                        "y": 585
                                  },
                                  "top_right": {
                                        "x": 225,
                                        "y": 585
                                  },
                                  "bottom_right": {
                                        "x": 225,
                                        "y": 598
                                  },
                                  "bottom_left": {
                                        "x": 166,
                                        "y": 599
                                  },
                                  "width": 59,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "RUFFLES",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 167,
                                                    "y": 585
                                              },
                                              "top_right": {
                                                    "x": 224,
                                                    "y": 585
                                              },
                                              "bottom_right": {
                                                    "x": 224,
                                                    "y": 599
                                              },
                                              "bottom_left": {
                                                    "x": 167,
                                                    "y": 599
                                              },
                                              "width": 57,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "GV HNY GRMS 007874207253 F 1.28 N",
                            "bounds": {
                                  "top_left": {
                                        "x": 166,
                                        "y": 599
                                  },
                                  "top_right": {
                                        "x": 257,
                                        "y": 600
                                  },
                                  "bottom_right": {
                                        "x": 257,
                                        "y": 615
                                  },
                                  "bottom_left": {
                                        "x": 166,
                                        "y": 615
                                  },
                                  "width": 91,
                                  "height": 15.5
                            },
                            "words": [
                                  {
                                        "text": "GV",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 167,
                                                    "y": 600
                                              },
                                              "top_right": {
                                                    "x": 182,
                                                    "y": 600
                                              },
                                              "bottom_right": {
                                                    "x": 181,
                                                    "y": 615
                                              },
                                              "bottom_left": {
                                                    "x": 166,
                                                    "y": 615
                                              },
                                              "width": 15,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "HNY",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 190,
                                                    "y": 600
                                              },
                                              "top_right": {
                                                    "x": 216,
                                                    "y": 600
                                              },
                                              "bottom_right": {
                                                    "x": 215,
                                                    "y": 616
                                              },
                                              "bottom_left": {
                                                    "x": 189,
                                                    "y": 615
                                              },
                                              "width": 26,
                                              "height": 15.5
                                        }
                                  },
                                  {
                                        "text": "GRMS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 223,
                                                    "y": 600
                                              },
                                              "top_right": {
                                                    "x": 255,
                                                    "y": 600
                                              },
                                              "bottom_right": {
                                                    "x": 255,
                                                    "y": 616
                                              },
                                              "bottom_left": {
                                                    "x": 223,
                                                    "y": 616
                                              },
                                              "width": 32,
                                              "height": 16
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "SUBTOTAL 139.44",
                            "bounds": {
                                  "top_left": {
                                        "x": 309,
                                        "y": 615
                                  },
                                  "top_right": {
                                        "x": 374,
                                        "y": 617
                                  },
                                  "bottom_right": {
                                        "x": 374,
                                        "y": 631
                                  },
                                  "bottom_left": {
                                        "x": 309,
                                        "y": 629
                                  },
                                  "width": 65,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "SUBTOTAL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 311,
                                                    "y": 616
                                              },
                                              "top_right": {
                                                    "x": 374,
                                                    "y": 618
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 632
                                              },
                                              "bottom_left": {
                                                    "x": 310,
                                                    "y": 630
                                              },
                                              "width": 62.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "TAX 1 7.000 % 4.58",
                            "bounds": {
                                  "top_left": {
                                        "x": 238,
                                        "y": 630
                                  },
                                  "top_right": {
                                        "x": 278,
                                        "y": 631
                                  },
                                  "bottom_right": {
                                        "x": 278,
                                        "y": 644
                                  },
                                  "bottom_left": {
                                        "x": 238,
                                        "y": 644
                                  },
                                  "width": 40,
                                  "height": 13.5
                            },
                            "words": [
                                  {
                                        "text": "TAX",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 239,
                                                    "y": 630
                                              },
                                              "top_right": {
                                                    "x": 262,
                                                    "y": 630
                                              },
                                              "bottom_right": {
                                                    "x": 262,
                                                    "y": 644
                                              },
                                              "bottom_left": {
                                                    "x": 239,
                                                    "y": 643
                                              },
                                              "width": 23,
                                              "height": 13.5
                                        }
                                  },
                                  {
                                        "text": "1",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 272,
                                                    "y": 630
                                              },
                                              "top_right": {
                                                    "x": 277,
                                                    "y": 630
                                              },
                                              "bottom_right": {
                                                    "x": 277,
                                                    "y": 644
                                              },
                                              "bottom_left": {
                                                    "x": 271,
                                                    "y": 644
                                              },
                                              "width": 5.5,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "TOTAL 144.02",
                            "bounds": {
                                  "top_left": {
                                        "x": 332,
                                        "y": 645
                                  },
                                  "top_right": {
                                        "x": 374,
                                        "y": 647
                                  },
                                  "bottom_right": {
                                        "x": 373,
                                        "y": 660
                                  },
                                  "bottom_left": {
                                        "x": 332,
                                        "y": 660
                                  },
                                  "width": 41.5,
                                  "height": 14
                            },
                            "words": [
                                  {
                                        "text": "TOTAL",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 335,
                                                    "y": 645
                                              },
                                              "top_right": {
                                                    "x": 373,
                                                    "y": 646
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 661
                                              },
                                              "bottom_left": {
                                                    "x": 335,
                                                    "y": 660
                                              },
                                              "width": 37.5,
                                              "height": 15
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "CASH TEND 150.02",
                            "bounds": {
                                  "top_left": {
                                        "x": 291,
                                        "y": 660
                                  },
                                  "top_right": {
                                        "x": 375,
                                        "y": 660
                                  },
                                  "bottom_right": {
                                        "x": 375,
                                        "y": 675
                                  },
                                  "bottom_left": {
                                        "x": 291,
                                        "y": 674
                                  },
                                  "width": 84,
                                  "height": 14.5
                            },
                            "words": [
                                  {
                                        "text": "CASH",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 292,
                                                    "y": 660
                                              },
                                              "top_right": {
                                                    "x": 324,
                                                    "y": 660
                                              },
                                              "bottom_right": {
                                                    "x": 323,
                                                    "y": 675
                                              },
                                              "bottom_left": {
                                                    "x": 292,
                                                    "y": 675
                                              },
                                              "width": 31.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "TEND",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 342,
                                                    "y": 661
                                              },
                                              "top_right": {
                                                    "x": 373,
                                                    "y": 661
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 675
                                              },
                                              "bottom_left": {
                                                    "x": 341,
                                                    "y": 675
                                              },
                                              "width": 31,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "CHANGE DUE 6.00",
                            "bounds": {
                                  "top_left": {
                                        "x": 290,
                                        "y": 675
                                  },
                                  "top_right": {
                                        "x": 373,
                                        "y": 675
                                  },
                                  "bottom_right": {
                                        "x": 373,
                                        "y": 690
                                  },
                                  "bottom_left": {
                                        "x": 290,
                                        "y": 690
                                  },
                                  "width": 83,
                                  "height": 15
                            },
                            "words": [
                                  {
                                        "text": "CHANGE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 292,
                                                    "y": 676
                                              },
                                              "top_right": {
                                                    "x": 340,
                                                    "y": 676
                                              },
                                              "bottom_right": {
                                                    "x": 339,
                                                    "y": 690
                                              },
                                              "bottom_left": {
                                                    "x": 291,
                                                    "y": 690
                                              },
                                              "width": 48,
                                              "height": 14
                                        }
                                  },
                                  {
                                        "text": "DUE",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 348,
                                                    "y": 676
                                              },
                                              "top_right": {
                                                    "x": 372,
                                                    "y": 676
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 690
                                              },
                                              "bottom_left": {
                                                    "x": 348,
                                                    "y": 690
                                              },
                                              "width": 24,
                                              "height": 14
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "# ITEMS SOLD 26",
                            "bounds": {
                                  "top_left": {
                                        "x": 249,
                                        "y": 689
                                  },
                                  "top_right": {
                                        "x": 376,
                                        "y": 690
                                  },
                                  "bottom_right": {
                                        "x": 376,
                                        "y": 706
                                  },
                                  "bottom_left": {
                                        "x": 248,
                                        "y": 705
                                  },
                                  "width": 127.5,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 251,
                                                    "y": 690
                                              },
                                              "top_right": {
                                                    "x": 260,
                                                    "y": 690
                                              },
                                              "bottom_right": {
                                                    "x": 259,
                                                    "y": 705
                                              },
                                              "bottom_left": {
                                                    "x": 251,
                                                    "y": 705
                                              },
                                              "width": 8.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "ITEMS",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 268,
                                                    "y": 690
                                              },
                                              "top_right": {
                                                    "x": 308,
                                                    "y": 691
                                              },
                                              "bottom_right": {
                                                    "x": 307,
                                                    "y": 706
                                              },
                                              "bottom_left": {
                                                    "x": 267,
                                                    "y": 705
                                              },
                                              "width": 40,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "SOLD",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 317,
                                                    "y": 691
                                              },
                                              "top_right": {
                                                    "x": 347,
                                                    "y": 691
                                              },
                                              "bottom_right": {
                                                    "x": 347,
                                                    "y": 706
                                              },
                                              "bottom_left": {
                                                    "x": 316,
                                                    "y": 706
                                              },
                                              "width": 30.5,
                                              "height": 15
                                        }
                                  },
                                  {
                                        "text": "26",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 357,
                                                    "y": 691
                                              },
                                              "top_right": {
                                                    "x": 372,
                                                    "y": 691
                                              },
                                              "bottom_right": {
                                                    "x": 372,
                                                    "y": 705
                                              },
                                              "bottom_left": {
                                                    "x": 357,
                                                    "y": 706
                                              },
                                              "width": 15,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "TC# 0783 6080 4072 3416 2495 5",
                            "bounds": {
                                  "top_left": {
                                        "x": 192,
                                        "y": 703
                                  },
                                  "top_right": {
                                        "x": 440,
                                        "y": 705
                                  },
                                  "bottom_right": {
                                        "x": 439,
                                        "y": 723
                                  },
                                  "bottom_left": {
                                        "x": 192,
                                        "y": 720
                                  },
                                  "width": 247.5,
                                  "height": 17.5
                            },
                            "words": [
                                  {
                                        "text": "TC#",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 193,
                                                    "y": 704
                                              },
                                              "top_right": {
                                                    "x": 218,
                                                    "y": 704
                                              },
                                              "bottom_right": {
                                                    "x": 218,
                                                    "y": 720
                                              },
                                              "bottom_left": {
                                                    "x": 193,
                                                    "y": 720
                                              },
                                              "width": 25,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "0783",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 226,
                                                    "y": 704
                                              },
                                              "top_right": {
                                                    "x": 259,
                                                    "y": 704
                                              },
                                              "bottom_right": {
                                                    "x": 259,
                                                    "y": 721
                                              },
                                              "bottom_left": {
                                                    "x": 225,
                                                    "y": 720
                                              },
                                              "width": 33.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "6080",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 266,
                                                    "y": 704
                                              },
                                              "top_right": {
                                                    "x": 300,
                                                    "y": 704
                                              },
                                              "bottom_right": {
                                                    "x": 300,
                                                    "y": 721
                                              },
                                              "bottom_left": {
                                                    "x": 266,
                                                    "y": 721
                                              },
                                              "width": 34,
                                              "height": 17
                                        }
                                  },
                                  {
                                        "text": "4072",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 308,
                                                    "y": 704
                                              },
                                              "top_right": {
                                                    "x": 342,
                                                    "y": 705
                                              },
                                              "bottom_right": {
                                                    "x": 341,
                                                    "y": 721
                                              },
                                              "bottom_left": {
                                                    "x": 308,
                                                    "y": 721
                                              },
                                              "width": 33.5,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "3416",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 348,
                                                    "y": 705
                                              },
                                              "top_right": {
                                                    "x": 380,
                                                    "y": 705
                                              },
                                              "bottom_right": {
                                                    "x": 379,
                                                    "y": 722
                                              },
                                              "bottom_left": {
                                                    "x": 347,
                                                    "y": 722
                                              },
                                              "width": 32,
                                              "height": 17
                                        }
                                  },
                                  {
                                        "text": "2495",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 389,
                                                    "y": 705
                                              },
                                              "top_right": {
                                                    "x": 421,
                                                    "y": 706
                                              },
                                              "bottom_right": {
                                                    "x": 420,
                                                    "y": 723
                                              },
                                              "bottom_left": {
                                                    "x": 388,
                                                    "y": 722
                                              },
                                              "width": 32,
                                              "height": 17
                                        }
                                  },
                                  {
                                        "text": "5",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 428,
                                                    "y": 706
                                              },
                                              "top_right": {
                                                    "x": 436,
                                                    "y": 706
                                              },
                                              "bottom_right": {
                                                    "x": 435,
                                                    "y": 724
                                              },
                                              "bottom_left": {
                                                    "x": 427,
                                                    "y": 723
                                              },
                                              "width": 8,
                                              "height": 17.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "04/27/19 12:59:46",
                            "bounds": {
                                  "top_left": {
                                        "x": 223,
                                        "y": 763
                                  },
                                  "top_right": {
                                        "x": 291,
                                        "y": 763
                                  },
                                  "bottom_right": {
                                        "x": 291,
                                        "y": 779
                                  },
                                  "bottom_left": {
                                        "x": 223,
                                        "y": 779
                                  },
                                  "width": 68,
                                  "height": 16
                            },
                            "words": [
                                  {
                                        "text": "04/27/19",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 224,
                                                    "y": 763
                                              },
                                              "top_right": {
                                                    "x": 289,
                                                    "y": 764
                                              },
                                              "bottom_right": {
                                                    "x": 288,
                                                    "y": 779
                                              },
                                              "bottom_left": {
                                                    "x": 224,
                                                    "y": 779
                                              },
                                              "width": 64.5,
                                              "height": 15.5
                                        }
                                  }
                            ]
                      },
                      {
                            "text": "Scan with Walmart app to save receipts",
                            "bounds": {
                                  "top_left": {
                                        "x": 154,
                                        "y": 778
                                  },
                                  "top_right": {
                                        "x": 469,
                                        "y": 782
                                  },
                                  "bottom_right": {
                                        "x": 469,
                                        "y": 801
                                  },
                                  "bottom_left": {
                                        "x": 154,
                                        "y": 796
                                  },
                                  "width": 315,
                                  "height": 18.5
                            },
                            "words": [
                                  {
                                        "text": "Scan",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 155,
                                                    "y": 779
                                              },
                                              "top_right": {
                                                    "x": 188,
                                                    "y": 779
                                              },
                                              "bottom_right": {
                                                    "x": 187,
                                                    "y": 797
                                              },
                                              "bottom_left": {
                                                    "x": 154,
                                                    "y": 797
                                              },
                                              "width": 33,
                                              "height": 18
                                        }
                                  },
                                  {
                                        "text": "with",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 196,
                                                    "y": 779
                                              },
                                              "top_right": {
                                                    "x": 230,
                                                    "y": 779
                                              },
                                              "bottom_right": {
                                                    "x": 229,
                                                    "y": 796
                                              },
                                              "bottom_left": {
                                                    "x": 195,
                                                    "y": 797
                                              },
                                              "width": 34,
                                              "height": 17.5
                                        }
                                  },
                                  {
                                        "text": "Walmart",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 238,
                                                    "y": 779
                                              },
                                              "top_right": {
                                                    "x": 298,
                                                    "y": 780
                                              },
                                              "bottom_right": {
                                                    "x": 297,
                                                    "y": 796
                                              },
                                              "bottom_left": {
                                                    "x": 237,
                                                    "y": 796
                                              },
                                              "width": 60,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "app",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 305,
                                                    "y": 780
                                              },
                                              "top_right": {
                                                    "x": 330,
                                                    "y": 780
                                              },
                                              "bottom_right": {
                                                    "x": 329,
                                                    "y": 797
                                              },
                                              "bottom_left": {
                                                    "x": 304,
                                                    "y": 796
                                              },
                                              "width": 25,
                                              "height": 16.5
                                        }
                                  },
                                  {
                                        "text": "to",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 339,
                                                    "y": 781
                                              },
                                              "top_right": {
                                                    "x": 354,
                                                    "y": 781
                                              },
                                              "bottom_right": {
                                                    "x": 353,
                                                    "y": 797
                                              },
                                              "bottom_left": {
                                                    "x": 338,
                                                    "y": 797
                                              },
                                              "width": 15,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "save",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 362,
                                                    "y": 781
                                              },
                                              "top_right": {
                                                    "x": 395,
                                                    "y": 782
                                              },
                                              "bottom_right": {
                                                    "x": 394,
                                                    "y": 798
                                              },
                                              "bottom_left": {
                                                    "x": 361,
                                                    "y": 797
                                              },
                                              "width": 33,
                                              "height": 16
                                        }
                                  },
                                  {
                                        "text": "receipts",
                                        "bounds": {
                                              "top_left": {
                                                    "x": 401,
                                                    "y": 783
                                              },
                                              "top_right": {
                                                    "x": 469,
                                                    "y": 786
                                              },
                                              "bottom_right": {
                                                    "x": 468,
                                                    "y": 800
                                              },
                                              "bottom_left": {
                                                    "x": 400,
                                                    "y": 798
                                              },
                                              "width": 68,
                                              "height": 14.5
                                        }
                                  }
                            ]
                      }
                ]
          }
    ],
    "_usage": {
          "input_tokens": 23,
          "output_tokens": 11203,
          "inference_time_tokens": 3666,
          "total_tokens": 14892
    }
  }
  ```
</ResponseExample>
