diff --git a/app/parse.cpp b/app/parse.cpp index 6fb6325..9f474e0 100644 --- a/app/parse.cpp +++ b/app/parse.cpp @@ -7,26 +7,22 @@ void set_loglevel(std::string level) if(level=="info") { loguru::g_stderr_verbosity = loguru::Verbosity_INFO; - //set_verbosity(loguru::Verbosity_INFO); } else if(level=="warning") { loguru::g_stderr_verbosity = loguru::Verbosity_WARNING; - //loguru::set_verbosity(loguru::Verbosity_WARNING); } else if(level=="error") { loguru::g_stderr_verbosity = loguru::Verbosity_ERROR; - //loguru::set_verbosity(loguru::Verbosity_ERROR); } else if(level=="fatal") { loguru::g_stderr_verbosity = loguru::Verbosity_FATAL; - //loguru::set_verbosity(loguru::Verbosity_ERROR); } else { - loguru::g_stderr_verbosity = loguru::Verbosity_ERROR; + loguru::g_stderr_verbosity = loguru::Verbosity_ERROR; } } @@ -71,69 +67,93 @@ int main(int argc, char* argv[]) { // Initialize loguru loguru::init(argc, argv); - bool do_sanitization = true; - bool keep_shapes = true; - bool keep_bitmaps = true; - try { cxxopts::Options options("PDFProcessor", "A program to process PDF files or configuration files"); // Define the options options.add_options() - ("i,input", "Input PDF file", cxxopts::value()) - ("c,config", "Config file", cxxopts::value()) - ("create-config", "Create config file", cxxopts::value()) - ("p,page", "Pages to process (default: -1 for all)", cxxopts::value()->default_value("-1")) - ("password", "Password for accessing encrypted, password-protected files", cxxopts::value()) - ("o,output", "Output file", cxxopts::value()) - ("export-images", "Export images to directory", cxxopts::value()) - ("print-cells", "Print cells to stdout [char, word, line, all] (default: none)", cxxopts::value()) - ("keep-text", "Keep text cells in output (default: true)", cxxopts::value()->default_value("true")) - ("keep-shapes", "Keep shapes in output (default: true)", cxxopts::value()->default_value("true")) - ("keep-bitmaps", "Keep bitmaps in output (default: true)", cxxopts::value()->default_value("true")) - ("do-sanitation", "Do text sanitation (default: true)", cxxopts::value()->default_value("true")) - ("l,loglevel", "loglevel [error;warning;success;info]", cxxopts::value()) - ("h,help", "Print usage"); + ("i,input", "Input PDF file", cxxopts::value()) + ("c,config", "Config file", cxxopts::value()) + ("create-config", "Create config file", cxxopts::value()) + ("p,page", "Pages to process (default: -1 for all)", cxxopts::value()->default_value("-1")) + ("password", "Password for accessing encrypted, password-protected files", cxxopts::value()) + ("o,output", "Output file", cxxopts::value()) + ("export-images", "Export images to directory", cxxopts::value()) + ("print-cells", "Print cells to stdout [char, word, line, all] (default: none)", cxxopts::value()) + ("l,loglevel", "Log level [error, warning, info]", cxxopts::value()) + ("h,help", "Print usage") + + // ---- decode_config ---- + ("page-boundary", "Page boundary [crop_box, media_box, ...] (default: crop_box)", cxxopts::value()) + ("do-sanitization", "Run post-parse sanitization (default: true)", cxxopts::value()->implicit_value("true")) + ("keep-char-cells", "Keep individual character cells (default: true)", cxxopts::value()->implicit_value("true")) + ("keep-shapes", "Keep shape items (default: true)", cxxopts::value()->implicit_value("true")) + ("keep-bitmaps", "Keep bitmap items (default: true)", cxxopts::value()->implicit_value("true")) + ("max-num-lines", "Cap on number of lines per page (-1 = no cap)", cxxopts::value()) + ("max-num-bitmaps", "Cap on number of bitmaps per page (-1 = no cap)", cxxopts::value()) + ("create-word-cells", "Build word-level cells (default: true)", cxxopts::value()->implicit_value("true")) + ("create-line-cells", "Build line-level cells (default: true)", cxxopts::value()->implicit_value("true")) + ("enforce-same-font", "Require same font within a word/line cell (default: true)", cxxopts::value()->implicit_value("true")) + ("horizontal-cell-tolerance", "Horizontal merge tolerance (default: 1.0)", cxxopts::value()) + ("word-space-factor", "Space-width factor for word merging (default: 0.33)", cxxopts::value()) + ("line-space-factor", "Space-width factor for line merging (default: 1.0)", cxxopts::value()) + ("line-space-factor-with-space", "Space-width factor for line merging with space (default: 0.33)", cxxopts::value()) + ("keep-glyphs", "Keep unmapped GLYPH<...> tokens (default: false)", cxxopts::value()->implicit_value("true")) + ("keep-qpdf-warnings", "Emit QPDF warnings (default: false)", cxxopts::value()->implicit_value("true")) + ("populate-json", "Populate JSON objects during decode (default: false)", cxxopts::value()->implicit_value("true")); // Parse command line arguments auto result = options.parse(argc, argv); // Check if either input or config file is provided (mandatory) if (orig_argc == 1) { - LOG_S(INFO) << argc; LOG_F(ERROR, "Either input (-i) or config (-c) must be specified."); LOG_F(INFO, "%s", options.help().c_str()); return 1; } std::string level = "warning"; - if (result.count("loglevel")){ + if (result.count("loglevel")) { level = result["loglevel"].as(); // Convert the string to lowercase std::transform(level.begin(), level.end(), level.begin(), [](unsigned char c) { return std::tolower(c); }); - + set_loglevel(level); } - do_sanitization = result["do-sanitation"].as(); - bool keep_text = result["keep-text"].as(); - keep_shapes = result["keep-shapes"].as(); - keep_bitmaps = result["keep-bitmaps"].as(); + // Help option or no arguments provided + if (result.count("help")) { + LOG_F(INFO, "%s", options.help().c_str()); + return 0; + } + + // --- decode_config --- + pdflib::decode_config page_config; + if (result.count("page-boundary")) { page_config.page_boundary = result["page-boundary"].as(); } + if (result.count("do-sanitization")) { page_config.do_sanitization = result["do-sanitization"].as(); } + if (result.count("keep-char-cells")) { page_config.keep_char_cells = result["keep-char-cells"].as(); } + if (result.count("keep-shapes")) { page_config.keep_shapes = result["keep-shapes"].as(); } + if (result.count("keep-bitmaps")) { page_config.keep_bitmaps = result["keep-bitmaps"].as(); } + if (result.count("max-num-lines")) { page_config.max_num_lines = result["max-num-lines"].as(); } + if (result.count("max-num-bitmaps")) { page_config.max_num_bitmaps = result["max-num-bitmaps"].as(); } + if (result.count("create-word-cells")) { page_config.create_word_cells = result["create-word-cells"].as(); } + if (result.count("create-line-cells")) { page_config.create_line_cells = result["create-line-cells"].as(); } + if (result.count("enforce-same-font")) { page_config.enforce_same_font = result["enforce-same-font"].as(); } + if (result.count("horizontal-cell-tolerance")){ page_config.horizontal_cell_tolerance = result["horizontal-cell-tolerance"].as(); } + if (result.count("word-space-factor")) { page_config.word_space_width_factor_for_merge = result["word-space-factor"].as(); } + if (result.count("line-space-factor")) { page_config.line_space_width_factor_for_merge = result["line-space-factor"].as(); } + if (result.count("line-space-factor-with-space")) { page_config.line_space_width_factor_for_merge_with_space = result["line-space-factor-with-space"].as(); } + if (result.count("keep-glyphs")) { page_config.keep_glyphs = result["keep-glyphs"].as(); } + if (result.count("keep-qpdf-warnings")) { page_config.keep_qpdf_warnings = result["keep-qpdf-warnings"].as(); } + if (result.count("populate-json")) { page_config.populate_json_objects = result["populate-json"].as(); } if (result.count("config")) { std::string config_file = result["config"].as(); LOG_F(INFO, "Config file: %s", config_file.c_str()); - pdflib::decode_config page_config; - - page_config.do_sanitization = do_sanitization; - page_config.keep_char_cells = keep_text; - page_config.keep_shapes = keep_shapes; - page_config.keep_bitmaps = keep_bitmaps; - std::cout << "decode_config:\n" << page_config.to_string() << std::endl; utils::timer timer; @@ -196,12 +216,6 @@ int main(int argc, char* argv[]) { config["password"] = result["password"].as(); } - pdflib::decode_config page_config; - page_config.do_sanitization = do_sanitization; - page_config.keep_char_cells = keep_text; - page_config.keep_shapes = keep_shapes; - page_config.keep_bitmaps = keep_bitmaps; - std::cout << "decode_config:\n" << page_config.to_string() << std::endl; utils::timer timer; @@ -233,13 +247,6 @@ int main(int argc, char* argv[]) { return 0; } - // Help option or no arguments provided - if (result.count("help")) { - LOG_F(INFO, "%s", options.help().c_str()); - return 0; - } - - //} catch (const cxxopts::OptionException& e) { } catch (const cxxopts::exceptions::exception& e) { LOG_F(ERROR, "Error parsing options: %s", e.what()); return 1; diff --git a/app/render.cpp b/app/render.cpp index 151dec5..baa7409 100644 --- a/app/render.cpp +++ b/app/render.cpp @@ -144,7 +144,7 @@ int main(int argc, char* argv[]) ("p,page", "Pages to process (default: -1 for all)", cxxopts::value()->default_value("-1")) ("password", "Password for encrypted files", cxxopts::value()) ("o,output", "Output file or output directory (for -d mode)", cxxopts::value()) - ("r,renderer", "Renderer type [NAIVE, BLEND2D] (default: NAIVE)", cxxopts::value()->default_value("NAIVE")) + ("r,renderer", "Renderer type [NAIVE, BLEND2D] (default: NAIVE)", cxxopts::value()->default_value("BLEND2D")) ("l,loglevel", "Log level [error, warning, info]", cxxopts::value()) ("h,help", "Print usage") diff --git a/src/parse/page_item.h b/src/parse/page_item.h index a01ef94..bc3c92b 100644 --- a/src/parse/page_item.h +++ b/src/parse/page_item.h @@ -23,6 +23,15 @@ namespace pdflib PAGE_HYPERLINK, PAGE_HYPERLINKS }; + + // "/FT": "/Tx" | "/Btn" | "/Ch" | "/Sig" + enum widget_name { + TEXT_FIELD, // type: {`/FT`: `/Tx`} + BUTTON, // type: { `/FT`: `/Btn`} + CHOICE, // type: { `/FT`: `/Ch`} + SIGNATURE, // type: { `/FT`: `/Sig`} + UNDEFINED, + }; template class page_item diff --git a/src/parse/page_items/page_widget.h b/src/parse/page_items/page_widget.h index 1034025..863d992 100644 --- a/src/parse/page_items/page_widget.h +++ b/src/parse/page_items/page_widget.h @@ -20,6 +20,8 @@ namespace pdflib public: + widget_name name; + // Bounding box (in page coordinates) double x0; double y0; @@ -34,6 +36,7 @@ namespace pdflib }; page_item::page_item(): + name(UNDEFINED), x0(0), y0(0), x1(0), y1(0), text(), description(), diff --git a/src/parse/page_items/render_instructions.h b/src/parse/page_items/render_instructions.h index daf6d5c..6b320d2 100644 --- a/src/parse/page_items/render_instructions.h +++ b/src/parse/page_items/render_instructions.h @@ -23,6 +23,7 @@ namespace pdflib enum RENDER_INSTRUCTION_NAME { SIZE_INSTRUCTION, // set the size of the canvas on which we render TEXT_RENDER_INSTRUCTION, // render text on the canvas + TEXT_WIDGET_RENDER_INSTRUCTION, // render a fillable-field widget (bbox + value text) BITMAP_RENDER_INSTRUCTION, // paste bitmap image on the canvas SHAPE_RENDER_INSTRUCTION, // draw shapes (lines, shapes, filling, etc) }; @@ -135,6 +136,50 @@ namespace pdflib const double base_y0; }; + class text_widget_instruction + { + public: + const static RENDER_INSTRUCTION_NAME instr = TEXT_WIDGET_RENDER_INSTRUCTION; + + text_widget_instruction(std::string text, + double x0, double y0, + double x1, double y1, + double r_x0, double r_y0, + double r_x1, double r_y1, + double r_x2, double r_y2, + double r_x3, double r_y3): + text_(std::move(text)), + x0_(x0), y0_(y0), + x1_(x1), y1_(y1), + r_x0_(r_x0), r_y0_(r_y0), + r_x1_(r_x1), r_y1_(r_y1), + r_x2_(r_x2), r_y2_(r_y2), + r_x3_(r_x3), r_y3_(r_y3) + {} + + const std::string& get_text() const { return text_; } + + double get_x0() const { return x0_; } + double get_y0() const { return y0_; } + double get_x1() const { return x1_; } + double get_y1() const { return y1_; } + + double get_r_x0() const { return r_x0_; } + double get_r_y0() const { return r_y0_; } + double get_r_x1() const { return r_x1_; } + double get_r_y1() const { return r_y1_; } + double get_r_x2() const { return r_x2_; } + double get_r_y2() const { return r_y2_; } + double get_r_x3() const { return r_x3_; } + double get_r_y3() const { return r_y3_; } + + private: + const std::string text_; + const double x0_, y0_, x1_, y1_; + const double r_x0_, r_y0_, r_x1_, r_y1_; + const double r_x2_, r_y2_, r_x3_, r_y3_; + }; + class bitmap_instruction { public: @@ -239,6 +284,7 @@ namespace pdflib typedef instruction instruction_type; typedef text_instruction text_instruction_type; + typedef text_widget_instruction text_widget_instruction_type; typedef bitmap_instruction bitmap_instruction_type; typedef shape_instruction shape_instruction_type; @@ -251,6 +297,7 @@ namespace pdflib void add_size_instruction(size_instruction& instr); void add_text_instruction(text_instruction_type instr); + void add_widget_instruction(text_widget_instruction_type instr); void add_bitmap_instruction(bitmap_instruction_type instr); void add_shape_instruction(shape_instruction_type instr); @@ -264,9 +311,10 @@ namespace pdflib std::vector instructions; - std::vector text_instructions; - std::vector bitmap_instructions; - std::vector shape_instructions; + std::vector text_instructions; + std::vector widget_instructions; + std::vector bitmap_instructions; + std::vector shape_instructions; }; @@ -291,6 +339,12 @@ namespace pdflib text_instructions.push_back(std::move(instr)); } + inline void pdf_render_instructions::add_widget_instruction(text_widget_instruction instr) + { + instructions.emplace_back(TEXT_WIDGET_RENDER_INSTRUCTION, widget_instructions.size()); + widget_instructions.push_back(std::move(instr)); + } + inline void pdf_render_instructions::add_bitmap_instruction(bitmap_instruction instr) { instructions.emplace_back(BITMAP_RENDER_INSTRUCTION, bitmap_instructions.size()); @@ -319,6 +373,13 @@ namespace pdflib } break; + case TEXT_WIDGET_RENDER_INSTRUCTION: + { + auto& widget_instr = widget_instructions.at(instr.index); + renderer.render_widget(widget_instr); + } + break; + case BITMAP_RENDER_INSTRUCTION: { auto& bmap_instr = bitmap_instructions.at(instr.index); diff --git a/src/parse/pdf_decoders/page.h b/src/parse/pdf_decoders/page.h index 328737a..182398d 100644 --- a/src/parse/pdf_decoders/page.h +++ b/src/parse/pdf_decoders/page.h @@ -21,8 +21,8 @@ namespace pdflib // Thread-safe constructor: creates its own QPDF document from the shared buffer pdf_decoder(std::shared_ptr buffer, - std::optional password, - int page_num); + std::optional password, + int page_num); ~pdf_decoder(); @@ -66,7 +66,7 @@ namespace pdflib private: void update_qpdf_logger(); - + void decode_dimensions(); // Resources @@ -85,10 +85,21 @@ namespace pdflib void decode_annots_from_qpdf(); void extract_page_items_from_annots(QPDFObjectHandle annots); - void add_page_cell_from_annot(QPDFObjectHandle annot); void add_page_hyperlink_from_annot(QPDFObjectHandle annot); void add_page_widget_from_annot(QPDFObjectHandle annot); + void add_textfield(QPDFObjectHandle annot, const std::array& bbox); + void add_button (QPDFObjectHandle annot, const std::array& bbox); + void add_choice (QPDFObjectHandle annot, const std::array& bbox); + void add_signature(QPDFObjectHandle annot, const std::array& bbox); + + // Load /AcroForm/DR/Font into acroform_fonts (called once before widget processing). + void load_acroform_dr_fonts(); + + // Parse the /AP/N appearance stream, extract cells in AP-local coords, + // shift by bbox origin to page coords, and append to page_cells. + void decode_ap_stream(QPDFObjectHandle ap_stream, const std::array& bbox); + void rotate_contents(); void sanitise_contents(std::string page_boundary); @@ -117,19 +128,19 @@ namespace pdflib page_item page_dimension; page_item page_cells; - page_item page_shapes; + page_item page_shapes; page_item page_images; page_item page_widgets; page_item page_hyperlinks; page_item cells; - page_item shapes; + page_item shapes; page_item images; // Computed cell aggregations - page_item word_cells; - page_item line_cells; + page_item word_cells; + page_item line_cells; bool word_cells_created = false; bool line_cells_created = false; @@ -137,8 +148,14 @@ namespace pdflib std::shared_ptr > page_fonts; std::shared_ptr > page_xobjects; + decode_config page_config; // saved at the start of decode_page for use in widget handlers + + // AcroForm /DR/Font — loaded once before widget processing, used as + // fallback in decode_ap_stream when the AP stream has no /Resources/Font. + std::shared_ptr> acroform_fonts; + pdf_render_instructions instructions; - + pdf_timings timings; }; @@ -154,8 +171,8 @@ namespace pdflib {} pdf_decoder::pdf_decoder(std::shared_ptr buffer, - std::optional password, - int page_num): + std::optional password, + int page_num): thread_safe(true), owned_buffer(buffer), owned_qpdf_document(std::make_unique()), @@ -171,24 +188,24 @@ namespace pdflib if(password.has_value()) { - owned_qpdf_document->processMemoryFile(description.c_str(), - owned_buffer->c_str(), - owned_buffer->size(), - password.value().c_str()); + owned_qpdf_document->processMemoryFile(description.c_str(), + owned_buffer->c_str(), + owned_buffer->size(), + password.value().c_str()); } else { - owned_qpdf_document->processMemoryFile(description.c_str(), - owned_buffer->c_str(), - owned_buffer->size()); + owned_qpdf_document->processMemoryFile(description.c_str(), + owned_buffer->c_str(), + owned_buffer->size()); } - + std::vector pages = owned_qpdf_document->getAllPages(); if(page_num < 0 || page_num >= static_cast(pages.size())) { - LOG_S(ERROR) << "page " << page_num << " is out of bounds (0-" << pages.size()-1 << ")"; - throw std::out_of_range("page number out of bounds: " + std::to_string(page_num)); + LOG_S(ERROR) << "page " << page_num << " is out of bounds (0-" << pages.size()-1 << ")"; + throw std::out_of_range("page number out of bounds: " + std::to_string(page_num)); } qpdf_page = pages.at(page_num); @@ -204,13 +221,13 @@ namespace pdflib if(loguru::g_stderr_verbosity==loguru::Verbosity_INFO or loguru::g_stderr_verbosity==loguru::Verbosity_WARNING) { - // ignore ... + // ignore ... } else if(loguru::g_stderr_verbosity==loguru::Verbosity_ERROR or - loguru::g_stderr_verbosity==loguru::Verbosity_FATAL) + loguru::g_stderr_verbosity==loguru::Verbosity_FATAL) { - owned_qpdf_document->setSuppressWarnings(true); - //qpdf_document.setMaxWarnings(0); only for later versions ... + owned_qpdf_document->setSuppressWarnings(true); + //qpdf_document.setMaxWarnings(0); only for later versions ... } else { @@ -218,7 +235,7 @@ namespace pdflib } } - + int pdf_decoder::get_page_number() { return page_number; @@ -321,11 +338,13 @@ namespace pdflib void pdf_decoder::decode_page(const decode_config& config) { + page_config = config; + if(owned_qpdf_document != nullptr) { - owned_qpdf_document->setSuppressWarnings(!config.keep_qpdf_warnings); + owned_qpdf_document->setSuppressWarnings(!config.keep_qpdf_warnings); } - + utils::timer global, local; if(config.populate_json_objects) @@ -423,7 +442,7 @@ namespace pdflib page_dimension.execute(qpdf_page); instructions.set_size_instruction(page_dimension.get_media_bbox(), - page_dimension.get_crop_bbox()); + page_dimension.get_crop_bbox()); } void pdf_decoder::decode_resources(const decode_config& config) @@ -559,8 +578,8 @@ namespace pdflib page_fonts, page_grphs, page_xobjects, - instructions, - timings); + instructions, + timings); int cnt = 0; @@ -581,10 +600,56 @@ namespace pdflib } } + void pdf_decoder::load_acroform_dr_fonts() + { + LOG_S(INFO) << __FUNCTION__; + + // page_fonts is already fully populated (decode_fonts ran before us). + // Make it the base of the chain so AP streams can fall back to page-level + // fonts (e.g. /F2) without any re-parsing. + acroform_fonts = std::make_shared>(page_fonts); + + try + { + // Reach the document root regardless of thread-safe vs shared mode. + QPDF* qpdf_ptr = nullptr; + if(thread_safe and owned_qpdf_document) + { + qpdf_ptr = owned_qpdf_document.get(); + } + else + { + qpdf_ptr = qpdf_page.getOwningQPDF(); + } + + if(not qpdf_ptr) { return; } + + auto root = qpdf_ptr->getRoot(); + if(not root.hasKey("/AcroForm")) { return; } + + auto acroform = root.getKey("/AcroForm"); + if(not acroform.isDictionary() or not acroform.hasKey("/DR")) { return; } + + auto dr = acroform.getKey("/DR"); + if(not dr.isDictionary() or not dr.hasKey("/Font")) { return; } + + auto dr_font_dict = dr.getKey("/Font"); + acroform_fonts->set(dr_font_dict, timings); + + LOG_S(INFO) << "loaded " << acroform_fonts->size() << " AcroForm /DR font(s)"; + } + catch(const std::exception& e) + { + LOG_S(WARNING) << "load_acroform_dr_fonts failed: " << e.what(); + } + } + void pdf_decoder::decode_annots_from_qpdf() { LOG_S(INFO) << __FUNCTION__; + load_acroform_dr_fonts(); + if(not qpdf_page.isDictionary()) { return; @@ -600,9 +665,9 @@ namespace pdflib } else { - auto annot_json = to_json(annot); - LOG_S(INFO) << "annot: " << annot_json.dump(2); - + auto annot_json = to_json(annot); + LOG_S(INFO) << "annot: " << annot_json.dump(2); + extract_page_items_from_annots(annot); } } @@ -637,19 +702,19 @@ namespace pdflib { QPDFObjectHandle annot = annots.getArrayItem(l); - if(annot.isString()) - { - auto annots_json = to_json(annots); - LOG_S(WARNING) << "skipping annot, it is a string: " << annots_json.dump(2); - continue; - } + if(annot.isString()) + { + auto annots_json = to_json(annots); + LOG_S(WARNING) << "skipping annot, it is a string: " << annots_json.dump(2); + continue; + } + + if(not annot.isDictionary()) + { + LOG_S(WARNING) << "skipping annot, not of type `dict`!"; + continue; + } - if(not annot.isDictionary()) - { - LOG_S(WARNING) << "skipping annot, not of type `dict`!"; - continue; - } - // auto annot_json = to_json(annot); // LOG_S(INFO) << "annot " << l << ": " << annot_json.dump(2); @@ -665,22 +730,24 @@ namespace pdflib continue; } - LOG_S(INFO) << "type: " << type << ", subtype: " << subtype; + // LOG_S(INFO) << "type: " << type << ", subtype: " << subtype; - if(subtype=="/Widget" and + /* + if(subtype=="/Widget" and + annot.hasKey("/Rect") and + annot.getKey("/Rect").isArray() and + annot.hasKey("/V") and + annot.hasKey("/T") + ) + { + add_page_cell_from_annot(annot); + } + else*/ + if(subtype=="/Link" and annot.hasKey("/Rect") and annot.getKey("/Rect").isArray() and - annot.hasKey("/V") and - annot.hasKey("/T") + annot.hasKey("/A") ) - { - add_page_cell_from_annot(annot); - } - else if(subtype=="/Link" and - annot.hasKey("/Rect") and - annot.getKey("/Rect").isArray() and - annot.hasKey("/A") - ) { add_page_hyperlink_from_annot(annot); } @@ -698,75 +765,10 @@ namespace pdflib } } - void pdf_decoder::add_page_cell_from_annot(QPDFObjectHandle annot) - { - auto rect = annot.getKey("/Rect"); - - std::array bbox = {0., 0., 0., 0.}; - for(int l=0; l cell; - { - cell.widget = true; - - cell.x0 = bbox[0]; - cell.y0 = bbox[1]; - cell.x1 = bbox[2]; - cell.y1 = bbox[3]; - - cell.r_x0 = bbox[0]; - cell.r_y0 = bbox[1]; - cell.r_x1 = bbox[2]; - cell.r_y1 = bbox[1]; - cell.r_x2 = bbox[2]; - cell.r_y2 = bbox[3]; - cell.r_x3 = bbox[0]; - cell.r_y3 = bbox[3]; - - cell.text = text; - cell.rendering_mode = 0; - - cell.space_width = 0; - //cell.chars = {};//chars; - //cell.widths = {};//widths; - - cell.enc_name = "Form-font"; //font.get_encoding_name(); - - cell.font_enc = "Form-font"; //to_string(font.get_encoding()); - cell.font_key = "Form-font"; //font.get_key(); - - cell.font_name = "Form-font"; //font.get_name(); - cell.font_size = 0; //font_size/1000.0; - - cell.italic = false; - cell.bold = false; - - cell.ocr = false; - cell.confidence = -1.0; - - cell.stack_size = -1; - cell.block_count = -1; - cell.instr_count = -1; - } - page_cells.push_back(cell); - - } - void pdf_decoder::add_page_hyperlink_from_annot(QPDFObjectHandle annot) { + LOG_S(INFO) << __FUNCTION__; + auto rect = annot.getKey("/Rect"); std::array bbox = {0., 0., 0., 0.}; @@ -808,6 +810,8 @@ namespace pdflib void pdf_decoder::add_page_widget_from_annot(QPDFObjectHandle annot) { + LOG_S(INFO) << __FUNCTION__; + auto rect = annot.getKey("/Rect"); std::array bbox = {0., 0., 0., 0.}; @@ -820,6 +824,40 @@ namespace pdflib } } + auto [has_value, ft_str] = to_string(annot, "/FT"); + if(not has_value) + { + ft_str = ""; + } + + if(ft_str=="/Tx") + { + add_textfield(annot, bbox); + } + else if(ft_str=="/Btn") + { + add_button(annot, bbox); + } + else if(ft_str=="/Ch") + { + add_choice(annot, bbox); + } + else if(ft_str=="/Sig") + { + add_signature(annot, bbox); + } + else + { + LOG_S(WARNING) << "undefined ft: " << ft_str; + } + + } + + void pdf_decoder::add_textfield(QPDFObjectHandle annot, + const std::array& bbox) + { + LOG_S(INFO) << __FUNCTION__; + auto [has_value, text] = to_string(annot, "/V"); if(not has_value) { @@ -840,6 +878,8 @@ namespace pdflib page_item widget; { + widget.name = TEXT_FIELD; + widget.x0 = bbox[0]; widget.y0 = bbox[1]; widget.x1 = bbox[2]; @@ -850,6 +890,233 @@ namespace pdflib widget.field_type = field_type; } page_widgets.push_back(widget); + + // Emit a render instruction so the renderer draws a light-blue rectangle + // over the widget area. + { + text_widget_instruction winstr(text, + bbox[0], bbox[1], + bbox[2], bbox[3], + bbox[0], bbox[1], + bbox[2], bbox[1], + bbox[2], bbox[3], + bbox[0], bbox[3]); + instructions.add_widget_instruction(std::move(winstr)); + } + + // Parse /AP/N (Normal appearance stream) to extract the actual rendered + // text cells positioned within the widget bounding box. + if(not annot.hasKey("/AP")) { return; } + + auto ap = annot.getKey("/AP"); + if(not ap.isDictionary() or not ap.hasKey("/N")) { return; } + + decode_ap_stream(ap.getKey("/N"), bbox); + } + + void pdf_decoder::add_button(QPDFObjectHandle annot, + const std::array& bbox) + { + LOG_S(INFO) << __FUNCTION__; + + auto [has_value, text] = to_string(annot, "/V"); + if(not has_value) + { + text = ""; + } + + auto [has_field_name, field_name] = to_string(annot, "/T"); + if(not has_field_name) + { + field_name = ""; + } + + auto [has_field_type, field_type] = to_string(annot, "/FT"); + if(not has_field_type) + { + field_type = ""; + } + + page_item widget; + { + widget.name = BUTTON; + + widget.x0 = bbox[0]; + widget.y0 = bbox[1]; + widget.x1 = bbox[2]; + widget.y1 = bbox[3]; + + widget.text = text; + widget.field_name = field_name; + widget.field_type = field_type; + } + page_widgets.push_back(widget); + } + + void pdf_decoder::add_choice(QPDFObjectHandle annot, + const std::array& bbox) + { + LOG_S(INFO) << __FUNCTION__; + + auto [has_value, text] = to_string(annot, "/V"); + if(not has_value) + { + text = ""; + } + + auto [has_field_name, field_name] = to_string(annot, "/T"); + if(not has_field_name) + { + field_name = ""; + } + + auto [has_field_type, field_type] = to_string(annot, "/FT"); + if(not has_field_type) + { + field_type = ""; + } + + page_item widget; + { + widget.name = CHOICE; + + widget.x0 = bbox[0]; + widget.y0 = bbox[1]; + widget.x1 = bbox[2]; + widget.y1 = bbox[3]; + + widget.text = text; + widget.field_name = field_name; + widget.field_type = field_type; + } + page_widgets.push_back(widget); + } + + void pdf_decoder::add_signature(QPDFObjectHandle annot, + const std::array& bbox) + { + LOG_S(INFO) << __FUNCTION__; + + auto [has_value, text] = to_string(annot, "/V"); + if(not has_value) + { + text = ""; + } + + auto [has_field_name, field_name] = to_string(annot, "/T"); + if(not has_field_name) + { + field_name = ""; + } + + auto [has_field_type, field_type] = to_string(annot, "/FT"); + if(not has_field_type) + { + field_type = ""; + } + + page_item widget; + { + widget.name = SIGNATURE; + + widget.x0 = bbox[0]; + widget.y0 = bbox[1]; + widget.x1 = bbox[2]; + widget.y1 = bbox[3]; + + widget.text = text; + widget.field_name = field_name; + widget.field_type = field_type; + } + page_widgets.push_back(widget); + } + + void pdf_decoder::decode_ap_stream(QPDFObjectHandle ap_stream, + const std::array& bbox) + { + LOG_S(INFO) << __FUNCTION__; + + if(not ap_stream.isStream()) + { + LOG_S(WARNING) << "AP/N is not a stream, skipping"; + return; + } + + // Font fallback chain (built once in load_acroform_dr_fonts, reused here): + // ap_fonts (AP stream's own /Resources/Font — most specific) + // → acroform_fonts (AcroForm /DR/Font, e.g. /Helv) + // → page_fonts (page-level fonts, e.g. /F2) + // + // No re-parsing: page_fonts and acroform_fonts are already populated. + auto ap_fonts = std::make_shared>(acroform_fonts); + if(ap_stream.hasKey("/Resources")) + { + auto ap_resources = ap_stream.getKey("/Resources"); + if(ap_resources.isDictionary() and ap_resources.hasKey("/Font")) + { + auto ap_font_dict = ap_resources.getKey("/Font"); + ap_fonts->set(ap_font_dict, timings); + } + } + + // Temporary containers — only page_cells is of interest. + page_item ap_dimension; + page_item ap_cells; + page_item ap_shapes; + page_item ap_images; + pdf_render_instructions ap_instructions; // discarded after this call + + pdf_decoder stream_decoder(page_config, + ap_dimension, + ap_cells, + ap_shapes, + ap_images, + ap_fonts, + page_grphs, + page_xobjects, + ap_instructions, + timings); + + std::vector parameters; + stream_decoder.decode(ap_stream); + stream_decoder.interprete(parameters); + + // The AP stream uses a local coordinate system whose origin is the + // bottom-left corner of the widget /Rect. Shift every cell by + // (bbox[0], bbox[1]) to bring it into page coordinate space. + const double ox = bbox[0]; + const double oy = bbox[1]; + + for(auto& cell : ap_cells) + { + cell.x0 += ox; cell.y0 += oy; + cell.x1 += ox; cell.y1 += oy; + cell.r_x0 += ox; cell.r_y0 += oy; + cell.r_x1 += ox; cell.r_y1 += oy; + cell.r_x2 += ox; cell.r_y2 += oy; + cell.r_x3 += ox; cell.r_y3 += oy; + cell.widget = true; + page_cells.push_back(cell); + + // Re-emit a text_instruction in page coordinates so the renderer + // draws the glyph outlines on top of the light-blue widget rect. + text_instruction tinstr(cell.text, + cell.font_enc, + cell.font_key, + cell.font_name, + cell.enc_name, + cell.font_name, // base_font — best available proxy + cell.font_size, + cell.r_x0, cell.r_y0, + cell.r_x1, cell.r_y1, + cell.r_x2, cell.r_y2, + cell.r_x3, cell.r_y3, + 0.0, 0.0, // font_ascent_norm / font_descent_norm + cell.r_x0, cell.r_y0); // base point + instructions.add_text_instruction(std::move(tinstr)); + } + + LOG_S(INFO) << "AP stream yielded " << ap_cells.size() << " cell(s) for widget"; } void pdf_decoder::rotate_contents() diff --git a/src/render/blend2d_renderer.h b/src/render/blend2d_renderer.h index 2e3d87f..20302d7 100644 --- a/src/render/blend2d_renderer.h +++ b/src/render/blend2d_renderer.h @@ -35,6 +35,7 @@ namespace pdflib void render_text(text_instruction& instr); void render_text_legacy_v2(text_instruction& instr); void render_text_legacy(text_instruction& instr); + void render_widget(text_widget_instruction& instr); void render_bitmap(bitmap_instruction& instr); void render_shape(shape_instruction& instr); @@ -837,6 +838,35 @@ namespace pdflib ctx.end(); } + // --------------------------------------------------------------------------- + // render_widget + // + // Draws the widget's rotated bounding quad as a semi-transparent light-blue + // filled polygon. The text value is not rendered. + // --------------------------------------------------------------------------- + + inline void renderer::render_widget(text_widget_instruction& instr) + { + LOG_S(INFO) << __FUNCTION__ << " text='" << instr.get_text() << "'"; + + if (shape_[0] == 0 or shape_[1] == 0) { return; } + + BLPath path; + path.move_to(canvas_x(instr.get_r_x0()), canvas_y(instr.get_r_y0())); + path.line_to(canvas_x(instr.get_r_x1()), canvas_y(instr.get_r_y1())); + path.line_to(canvas_x(instr.get_r_x2()), canvas_y(instr.get_r_y2())); + path.line_to(canvas_x(instr.get_r_x3()), canvas_y(instr.get_r_y3())); + path.close(); + + BLContext ctx(image_); + ctx.set_fill_style(BLRgba32(0x660099FFu)); // A=40%, light blue + ctx.fill_path(path); + ctx.set_stroke_style(BLRgba32(0xFF0099FFu)); // A=100%, blue border + ctx.set_stroke_width(1); + ctx.stroke_path(path); + ctx.end(); + } + // --------------------------------------------------------------------------- // render_shape // --------------------------------------------------------------------------- diff --git a/src/render/naive_renderer.h b/src/render/naive_renderer.h index 21c7d22..519f015 100644 --- a/src/render/naive_renderer.h +++ b/src/render/naive_renderer.h @@ -20,6 +20,8 @@ namespace pdflib void render_text(text_instruction& instr); + void render_widget(text_widget_instruction& instr); + void render_bitmap(bitmap_instruction& instr); void render_shape(shape_instruction& instr); @@ -66,6 +68,14 @@ namespace pdflib << instr.get_r_x3() << ", " << instr.get_r_y3() << ")]"; } + inline void renderer::render_widget(text_widget_instruction& instr) + { + LOG_S(INFO) << __FUNCTION__ + << " text='" << instr.get_text() << "'" + << " bbox=[(" << instr.get_x0() << ", " << instr.get_y0() << "), (" + << instr.get_x1() << ", " << instr.get_y1() << ")]"; + } + inline void renderer::render_bitmap(bitmap_instruction& instr) { LOG_S(INFO) << __FUNCTION__ diff --git a/src/render/template_renderer.h b/src/render/template_renderer.h index 086c2f0..5347ac9 100644 --- a/src/render/template_renderer.h +++ b/src/render/template_renderer.h @@ -35,6 +35,8 @@ namespace pdflib void render_text(text_instruction& instr) { throw std::logic_error(__FUNCTION__); } + void render_widget(text_widget_instruction& instr) { throw std::logic_error(__FUNCTION__); } + void render_bitmap(bitmap_instruction& instr) { throw std::logic_error(__FUNCTION__); } void render_shape(shape_instruction& instr) { throw std::logic_error(__FUNCTION__); } diff --git a/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json new file mode 100644 index 0000000..c63e1c5 --- /dev/null +++ b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json @@ -0,0 +1,85017 @@ +{ + "dimension": { + "angle": 0.0, + "rect": { + "r_x0": 0.0, + "r_y0": 0.0, + "r_x1": 612.0, + "r_y1": 0.0, + "r_x2": 612.0, + "r_y2": 792.0, + "r_x3": 0.0, + "r_y3": 792.0, + "coord_origin": "BOTTOMLEFT" + }, + "boundary_type": "crop_box", + "art_bbox": { + "l": 0.0, + "t": 792.0, + "r": 612.0, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "bleed_bbox": { + "l": 0.0, + "t": 792.0, + "r": 612.0, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "crop_bbox": { + "l": 0.0, + "t": 792.0, + "r": 612.0, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "media_bbox": { + "l": 0.0, + "t": 792.0, + "r": 612.0, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + }, + "trim_bbox": { + "l": 0.0, + "t": 792.0, + "r": 612.0, + "b": 0.0, + "coord_origin": "BOTTOMLEFT" + } + }, + "bitmap_resources": [ + { + "index": 0, + "rect": { + "r_x0": 193.0, + "r_y0": 112.0, + "r_x1": 246.304, + "r_y1": 112.0, + "r_x2": 246.304, + "r_y2": 127.885, + "r_x3": 193.0, + "r_y3": 127.885, + "coord_origin": "BOTTOMLEFT" + }, + "mode": "embedded", + "image": { + "mimetype": "image/png", + "dpi": 281, + "size": { + "width": 208.0, + "height": 62.0 + }, + "uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANAAAAA+CAYAAABa6pWGAAAdOUlEQVR4nO2dV48cRReGZ9ZrLzlHCZFzxhgwBhHFJUggJC74d1yCgD+AyDnnnINA5GCSsT2fnvrmad4t9+7OeHuHnd090mh6erqrq06dfE5V93u93qC3TJiZmSnfe/fuLd/9fr83GPzb7NzcXO/vv/+e99/s7Gxv9+7dy330mgDwB+4Sb55LqPEKiEf/83vTpk3l23Ztz2v4vWfPnqadLVu29Hbt2lWOuZf/so08ZzvCpZdeWs7TLt9//PFH74ADDijX8dm8eXO57q+//uodeuihhRZOOeWU3v3339+0m2Pxuw0Hqw36y2WgREDTaL9fPv7/zz//lG8+TtIGLM4YEjW4S2LnWgiM30lcKZAgWO7zvIScwkyhB/hf3gcDQPD1HEvUO3bs6O3cubP0kT5xH2Pgt9fznAMPPLD3559/luc6FpmQ499++6337rvvNtdJN234WJMMlFJiIUKoAQQCtSRbj5Dam2MIvhYyKfXbCCwJX+LlOs7DVNwLgXKNTJYahe+0ErK9vBa45JJLGg22ZcuWhsm8X20DM5x44om9X3/9tdwrc3EesA2ew70vvPBCowXt9zTQxrIZSFCFO0EyE0jiw3GbppoGJK00qLEVREh/CEnc+H3wwQf3Tj755N4hhxwyz6zSTJIhINK33367/K6Z0ntS8KX2SuEmk9DeTTfd1Pv555/LtYDXDwaD3uuvvz5vbtU2bebXxRdf3Jhx3CuzcP1rr73WKgzWPAPVUlGmUfIAl112WZGCqGwIAPUPol988cXeeoYUIumHCFdccUVDSEpliRtGgxDBI/dBeBAgH9pFO3DvSy+9NK9NnyOzSKS2Uws15u6ggw4qc+Z1aIzBUEDKKJpn9tP21TQJV111VcP8CgCue+6556aCcTploBqJQEqfa6+9tjiWIBbp8/vvvzeqnolY75CBAODcc8/tHXPMMcX8kRBTo8MA4BfNAGEjlNBO+iKc57faB83xySeflPNpHmkZKPUN7tinW2+9tffFF1+UZzF/zN0zzzzT9GVubq5hbCAJn35xTwaNaMdv7uG5aCT9ZP6DHqQn/aLVDP96kh2B9jrAJCJpkFwg7J133uk9/fTTjYTT5l7vIAEi6cEXhPTTTz8VAoMQxSsEC27Bm4R60kknFQZCG+n7HH744Q1hq5XOP//8hsFkEv0qtA7nuI97+BAle//99xu/iWfDPFyX87d7GC0DZEZ+14Qv06YpSduvvPJKOZcMNS3MA/wfkx0yjRPLhJ5zzjnNhIEoEMhEGqlxItczQNQwDdIafGB2QaxqJXBGlMoIlb6Skh3/A3x+/vnn8yyBu+66q/fee++V37THtTryEKxtcY9M88svv5TnMkcwrgyC4JPwZZ7UiHuH/clon+2npsvjDGC8+uqrvWuuuaZoXAUG450GU24kCs7IDpCIcwIEEQwhiET8HGx5rjVqw71IvLUAtS+RsFB4GbyYP9EfUQpz/Oyzz+4TZJEIPfbZ3J9hac7de++95RqYE8Y44ogjelu3bu29/PLL80zGzLfwmyibQQfOI/gSHKPP3ztkmNpvyt9pzudx4svckaHuhfA5tT5QJtWamyNpl3kCzl9++eUNE6GOdU45VspiEkw7tEnJOsdSJwQhUJgno2DgCWdfJuK/UQhosWSjfdMHxZT+9NNPy1zgz2D6GX7m+9RTTy3zY1h7EgGe2aFPhN/HM+kz5uuXX35ZcDH1GiilplJFOzgz004kH9Qxk2PuAeDbvAHhShltLYWxNU9qIZNh5m3btjUhXoXP888/31zfFolbDHTM1XIyI8+S+NBA+KNHHnlk78MPPyznmB/A3I3fhx12WOkfwm0SJtTuYb8JuxtxZAzT4h8vyUA6oTnhOVlpAuAEI9mQdtyjaSKzYOs6IeYipp2BHE+dBxMcH3i86KKLSgQSIgU3mLCPPPJIg0t9oP1hJCHzcIIRMaN3zqf9p2+YevT1xx9/7L355pvlv0mV0fSH1RX0g4+m/ZrxgTKxZRmJE4xEVQrCEN98802RdN5TmwFJGKu9zmlUUJNmuU0KB3BzxhlnFD8EQmb8+CJWFiiUNP34HpV50gdNa8GcjPkhrAFzLOmH8Ru/BweeeZN59peB9xd39IljzDj6OS2wJANl5jrNAiI1DJZBGyHiv6OPPrqJ8mhOZDTGSalrtKYZsoqgZibAqBZ4wjSBSDMypbaoBcsoEjivTUZK/8GkqgyWDO7caro5X5OqWRxEoj0DFHWx69QyUGobJongAMBvE2IwEna8phy2rJOjKWdbbbVW0w5pLmmKADANoXzwA/NwHlu/TjwnLrKIcxQC8tlJcJrbBiu45uyzzy6+J6DfyufKK69sBJ5JbdvM+riVhP6wbo+xo6GzD1PPQEojoyQZ+iTD/cEHH7TewzWGQOsIXltkapqhJl4AXJ155pmNZuA8midTAhmW9reRyzq6udSzvU5hB/Pcdtttvc8++6wwaC4doD8cE9bOerm63Uk58oMhbRAlJHdVL9FYzTCbnazX6KjOQXSqfMKtuf4kTRglak5ITQTToJpHBbP7Eq6Ej8ABB0jVr776qnyAZJ7EfZ3v8dqlwPbM4+R5QsF8w7gprGQ6NRH3ZUpBAdcVfmYqc0yNY67J6gN8MK6bpgT7PAZK5oEgKOcgqsZgkYxE0cpNQ9/G+inNBb5xlo1IrQeQYdJ/2b59eyNsvv766953333XEEs68V3Z+cmEHhPcwRyiikEmy2oB5hWzkm/C3PYtCzy7gEFYHlldAT4IbJx33nkFHwiap556ap/E/GqHWQbXtngKCYpjySSQFXfhVNr4Wa8kwRx11FGNA7uWzLTFIJ11Q8QuWqPERoLINT1tyzuWA+I62/z444/3qTQwwIBw5Jh8EGaeTJOCr4swcr9FQHMObYOwhZ7oBzSWFtC00E7RlXVeh4gIDONqQa8x3KgGyhWEIhrCUSKvFy0EAYAbcHTBBRc0GtllBFnqk2X+K2HKan4RMNAXqoMLVoQAzmMbdKkd+2HKcY51TQhn+kStnULcVbjT4ifPJAPxTVRGqUWhoqaH0skAQdZA5XoWc0LTkATrCnKlpzjgw7EEnGaUv2Wk5YBCqi4VknnqtTmGiCVS0wn5f5cmeH+Ya0qNy/OpjAA/aEnD7ECWfK125mk0kGqdhBrfmG7Yo4ISVcaSCFJCWKoCWAG8HiDXPxG+B0cQwRtvvLGoNF4JCa+PY8qhZiqFINLfVaN1iiHH1WX/so+A/o6VEfUqVK2b1R6FK7NP50n2KYlYsyMgJYC041P7SECZuNMRXQ8mXI4zI3JWVecKXaH+3QXUuJaZfI5LqDmHn+r/mE5u+GL0K8PiXcIgAk6AfcugisEMwEWXqxlmMmmG2qxXiGZGWmbyeickw7JZ07XapUdXoDZGiIAjfB+IIrW0xNy1CZcasK5KUAv5HAlXX1ZfNU3Mtra7DLIMYgGffbRv9FW8WcG/2mGGARHyZCAGAERcPcE5oEyyZRhbdbwSJlxKpDbtVkeQJgU811KUlK6ZH0snXuhCyrf5CWkJyLB5LRUSSn3XB+V9dS1fVzCI9rRofGYdul5tq1H1C6UxaXHWMhNOsIR33HIbpYoIyNxQFzZsLuJrW7iXSyvy2kkGMMCV4Vgil6spgCKeZGiAwtE0lbJCRMJYS6VWy4GFUg6N2UnYFXUJAbgJBDAqAaSaJymXdncXEkxmNJIDcIyppNlUS9hJaiFLnXTI33rrrdIflyb/16BFYY4IBgF3BhHQnGlxuKQAmKaKgJWC9PMB93wAit9o/L0ODIwah88o0LHHHtuouq4lcF2mkutwsi9tJstKgvsM6GuYI7Mo8r+GhSSnviuMlHlAr9/YevlfSD8/q9kLj7gyMaWNanwUAswaOMLfk4h22dd0yA1o6LhPEkwaqxEl0tUSyrdvgkXBnGP+ZXr8WgNB01ROs5Ig3pzLtISKsjGMiRmnk7Q/VbiaWRkN6oKQk5nTnveZDqxeRp3fKw08x11sbr755pIkBFbDsmQ3Wcx6NKWoex9kwCB9zQ0TrtdYOKm5/S6+LwgzR6A5YrRtlEBCZsLrpFkXPlA+31Wv5qwscmWdf1s0Z1KZbM1e+kNhJsu2V0sSUGYRwA9+2llnndXgz34iRKEF8bahhXoFf6wkPuGEE4pgBFcE3Vh2UXYQ4oSvohDhQBaNLgZ1GX7ugdAVAamFzPIb9UrJn8GEWlOtNNCPJ554otm2i70PVlMSOTUJAhL/TMnKNsv018JgS5CA1TSG/wqYU3YrYp8GqzMMlg3//7/dnisbx0Ve2vqacJ7LdpyYtlqrDLPW96UjTM6K/rpBSS4fr9fWZJlRRk7qPdS8JmHU8adNjMDBD1wogVkvXMsASFt1Qt0H8TduJUPut2BwSLyZs4N56sqALgRgv6Krtsio11jgmtclDtL3TZ/E76XyhAvRWBYI5PxIUwYM1Obz5i1tuoxkjaO+LQS0ANAHuwTCjjtpOv3ZeU0yf2d0L/cbyF1lLJfJNSRJXJbU5JsCMrJoX9zQL53tUYknV4LC1O49QF0hZhLn6Zta3iXweW/6jpbVCO6VBuSao3HM0yz4tRCYIk7nzW9x4neXlRL94VIKgzwSe/pfJk+zjk8Lyb57Dqsjo4buLlQ/l2/pMPGQAjddFl/wlc9zESnz6xZgtj+bJRRtzvhShJSbY+g0szT3o48+mrcPskSeq1jr3WfyuM5fiLjUlrnlVtvKx7oU5IYbbiib9mV9H/diBrppeo5/nGSyz3JjRBOrmEeW9oiv+j08lvXkwjwjYV5bO/riaJQl37V/CmDGYdNb/Ww6I+e8i1TEnj17mrdxKFzFe9br5StYUrBwjCByo0cFZL1BTS4VyaS6xbWJD1YcGHFUuNsmdFAn5VEMbPvFf9KvVtaMOSBOumGIezOPIoWT4JTmIMzdR5U6uYN/hpyVdG1h9Dbi9X6eI0PVRYrcn2YlO3OyuQZ7nplVtuxG6SSyrOVb6PkL9cfnsgQkqxGYFFaoopFcGl9HdtSE1ohJZO4hrkSulxrsL4ErQHz9Cb9PO+20FSt23Tl8LYq413KozaN6/sWfpp27uWbFOZBaQ0hN4zfV8rSR868ZqyBLepRZ6L+WhXjT9y6lPFnLBvAH0mkUMy63SvJhqtyUnr7GgsG7M2ldD1XbmqpUwcl2QZbvszEZ6CTk6zuQHGgdBmzYFoeQ/et8Bn322W2MvhhIEE4CY3fnHfw1k2/0E/8IPHAP41BqWr2goKENAyZA2u3j+iVpuipoHCML2eiPfcv2k7iXA/0hQUqoBqccf5pqqZHtr2YtRCtdpQAx+FHTUpqs7iblO6msQudjHoxnGz1NmvN9S1xL9Jd2XWQKzLIdFUhU6iElkaI0NgrUG/mlBLcD6QuwU4/Mk+q2Ll4U4R6LTF/lARPwu978PH2YCy+8sLGVUf9LRRaTUNvMnsVwAIMyybl5Prhl4mgHrSxDKOE1H9n6SlPaXURhwgwApK0vrkYx4dIky+BKbp+rNSAxdhl+H1Q1jG6zleaX1eN8MP3VWOLKbYdpC23OblDgCTr44YcfyjuMsvIjfSjahw58+wW0XW+ck+M1GCH9aeLyra+cAr9sKoK2AXFyOASPdBo1FG1dlT6JCOABdJ52YUg6n2XsdASGBZRGmn3ff/99eSlUXUDKTjOs53dVpX3M6mf7rI2vxrN/Piu3gJKRx/UBbYMJknnTd8q3w1199dXlOl9Mpd+oD6BdzzE1ippx5JYgErWZBDKKCVc7z0kotI9Ze9xxx5V2wav7KIxayrUUaEVcf/31hdgZn9Xg5FbYdIWwMMC4fS+R48v8JLjjmM07wRvClBwNY0HgtOUkvR8BxlId6SlfAAYopGq80ieFo6mS9FebtzNgH3JCE4mGKHVfChLJrshEkklQShDf2VkvAfBYqarElUjcQiuJGymmxOYetm3SPBBBECk7vqgV6+1is9+5gWBK9XFyWfU+4Xl/OrnCHXfcUTYcod9MrhEoJ9JJo61McDJWJ3qckps2AWP/kOoIOAQOm3t0DVu3bm2EI3TBal3xDL2xuQhj1GF3Qae4zNeu5LIbj2HAJ598cp9Aks9AcKlZYc6M9uVcp7CphQeWhFqaedHyaRiIzmFKgES1iM4eElwnKtfYK6UMHiA1ZULNNHZfefjhh+dJa6sJRBrhQa7F2VcCU3JPm0hfpGIuTrvzzjvLazoyjyGDZA7GieM+X4dI+4wRhGfVRb54CphUFUHNpPpNdWje8YMbTMOulkzQpsRJeyk0R2HQfoWv1OrusQFzMte5T3pqaY4JYmCW83nooYfm9Y85xJelvdToPFsLhmPbrzdm5G0hvvDAV7l4j3RTjyMjdG53oCDTl0aj9efm5gacdDcUmIgbUY2oSJlGwuQYiWnZilESj0FALtZqq+5FU3EeyXPffffNQyoDOP3004tZoaQAaenUIzEB/vfFxaj1xx9/fB/igFGNymmmZv+0eTOE24XpMg7kPuG1NsQ/ze3DzH9BLF1VexjkMTpH2+OMf8uwGr1mNt9SCE3QfwiuZnwkO+NHYBNMARgXbYoHcIJbAd2pIaUnXARoFZOfkq62jfY55jpNOeiFZ5i3TOHbJpQ4j7XkHPluJcY3k9tQgUj8jiROHupy7zosbb6DY6Q6iILTaRNkZQTI7LEdAR588MF96rT4oHFAqLmgtE/tm9FDnoVmcZGYAQyjLZg8+HOGbDWldNL5bVgyS4AmWUgpI2iSJE4wFTBpDLlCAF7TFfNo1mXFOzBqInXXcJ907xF37C3Ib5nHcL3tYnFwjIbSB1TyZyGuIet8j5Lmsvtpu5tUpiC4R/8cPGLpaMr53DbmMRZg2FrzDYELnUOb/C79rktm+EhchmIZgNGsXHRl53R2DQm6nZOD1PkFTJghbeq3CTgw1a+h6ZSGN954Y3F8H3vssealtPpMqHMls5EbzhlJqc0fidBJUPpPuoiyTmK77W2arQgCzAj6KbN3sUl/lhwZaRrHv9oUQkmQkM3fYJ1kXyVUy4d01B2/TCZTI3Qzb2S/ZXjaveeee5rgTIa5fRZWi1oSJsitjGtT3khqljTZN+gHbcjat8JA2WG+aZw/nDhuSGmXySfA/yBUNRA5Gm3VdKjVJJqDuW9ZZr8t9eDYly05SHI65iy0iTUJ7Z/HqG2fTXs6fvps9VsQ6soF2q03Weka6pW2Cqd0aBk7xIb5gi+gOdfVsmsZFCLTbB+17b3VRibikmia+DRCxrxqSkvkMm2dNjHMLoNZNW5yMxOdMGr9Vm/pmW+CCApG7oN50kzP9VtqPvpE36ABaBorxjSIG+AXCynzCaq1jKPXRXiZsKxzCxLkAw880EgKHTaZJxlIrZCS1986osb3eSZqGmKi8ll/iWvc0wEpJkPyXKWJ6j9tYs7nZhoSstEY39i20qBpmtn4fK6RyTQpNTG6MDNzTwnfmWqicxzYHdYEc3388cfPq4MzAshcpSWjYNTqETRTMfOypClxYv0bcylT2m81kTQnHRgkUXulAMsFhUZA9Zu1iEwA68409Rp1YV6WnKii60pWJxLIyEYW8tkp2sAcdAGfGXlzDplMUwOBWDchv/322xtpnAlRrnczFJlN6cXvOvqTwsEwapYVAdSvAZN4yW5Wh4u7ZAwdXZkoE51dmJq2q39lJHLULaU2hZ/kHNJf38Tn//aZZzjPvkPXHF0UaDbfMgZSP+ktn51ve89aSQDzD2aQDrR87JO0LmRBKfRKwMD8kXk6C4eLpSZxZwmL0qLO2+SHhxu5ArheP8l7ZQyRxwA0UXQaddTSTFQ68EF1gkQSiZzHjME0MxIH5GRb1kPhqAk7mNUghsJArZqviOc3zDPJJc01jmUW+5jLDIzSJbMvF5SsWTHg80YJIuyOvd2yoNMSmIzsAjjgqd2sUKn7QxumRbRMpDfHrv9rAEkcCW7XJg1aFZJ5Ivvgs02280IyfuvOwIgqEf1TmLKYcAs5hIlAHak6q53XZF2cHbOzMkpKfBKiRktSa+k0atoAqF78HZBmnZ7P1kFEuklcjz76aPkvlyxnGXoi2mPaMf9Csq8rIl0Ksh5MLZQ2uuOEoOpCx1GgrTA0k9cpQGTQtpBuLkFI2FNtEplRXY6Zr2R6fYsU2kZNDY4YwfPNDTWOvC9xlWMyn5bBmFwXZb+B2p+HLjOKC+MpcKV938LYn52dHdRRlHElMAMxWmfiNWvkaqnAs1CNBAR4lgGHu+++u0TnnDzUpPcrJSAiGIE8EfF/SkGUGoQks+8wona2yOVZWcZjWN3qCZ4N80wyElevP0lw/Nddd12R3owjX3A2StspiMQtvoXmoONH2oIX528xOtDhnhkSFvk2TGkjngBRQzUA86P/4/559o22TCXwPI6hD/rJWK2cti9ZDuYz0q/lt8EQ5pI59l7Hyfks94EhtJhUAtbNWfnCMeVHvO/Jfs/asASlFhmViaxg0IZFUzhZVhVrJmqHErH79ttvi8ag82gVOoMj6aBgnnzTgWaaDh3MByJ8bTxSShvc8SihjNDwm/Iec1rWQplh5h7f5mbkbhLby2I2Mg4IUMdWO9wqAQM0+ZKzUSJldXW5UtcxSnDg07yfJi8fk+F1YlKnfjAYlD5qevksI7r6wLQPU3C9OT78Gp6VfrLJeELfvjE8qzIck0EpNSjX8zwdf/pI+wYb1DwGp2B4rlf46n5ogiJE0k+DuWmDChiS9uaQ+ps3bx6k/bs/oDrjQ6jYyUkJmVv+8j9Id2Aiw8gGO/dnzVYWgKJOtZv5cA/MY/u1iWY1glJK4oQg3STCtylkBe+kNJDmak0Q9kshRN/wB9XymSNaDLzf8SC0eHcrwBwZ2mc+DNDwDAWfwSWkseF0nz87O1tMLYiL43wpAUD/EJYQJ0IOIjeHlekBcMB5GIs58d27yext68SsoDDd4bIVzhN1NUrrWOiLRam5qtnyHtqpA0cW9opro5RYSvOKSUVKEmJbFW8bZB4GCSkR5CS32dQOLostM6yahCxDpiTM+rW6n8lIdeJUsyP7Y0CjXi260uAeD9r29s+SeoB+GH5tK1YdBwzRQ6z6jDwfwrMiwCS05TQKLMwitKTa7NLhAjctDwVB5rFy3jNhaVFm3f9MoC5U2LvQcc6Zq2B9Vr3X9kJvINcCSGGWDFwvG2/ezpAOldGgcSZHJzILTG1HBrH0wofbsexgvXwhw6C56A+omcexeF3NPG0bRqqZjCIahTS4sdKAxOM5TLh1VlZ1WOwIcWqS1n1fCjLKKYHDKBT5WhgJKIXpDwvGTKhnlJXczo4dO4rWgXk2DyNtblBvXgbQ7zRVAGTE0+iigQafk1n//K8OUmQOx/ZzzvQXAc1f/S/Ha1u6BZkLTDqzH6n5pO3+zMzMwEpTGidJ6cWjSOGMmGEOZMWCplytTbJjtQmSEZbFzKh0jkVa2tF8pxRK5OckZXuAbU5KAy2mRRQEufjNeyyK3B+AUWACNbpg0CbLrtBWhIkVbrnYDMC0S2GXAhRIEyqtkQxsAKm9smIhIcPlQs5T0pwKoE1j1wwB1KZ/m/Xj+XmpkG3bthUfiA+SxAe64GgpcB8FOoRdW3c6O5gmYapziTpLNdJ+rRGfYXad1xpRRnaENrXvPZP0eRaC7F8boQi1OTpu23XINx3smqB9TloS4jod+9klXg68mKD0/mSCuq3sM7AQY7ThqmakNlykK5HftRmaJmWDn+3btw9gFFUuTKB9mB1usyWRTgyc8/lKyMUQtwEbsJZgxpWjqQozpKdGMM6eiS8llGvUNYOM/W8wzwasdZghfAvxwwQ4jpbI1PZfFmnCTCyGU73idMKI3pNrdzZgA9YylFIe49toHvwSqp7TsZOJ+OYakpEwHWafeyhkxhkYN7y6ARswjdDftGlTKeVpanuGTiOMZNZbuOWWW0qyyuvQOGRsF3Lg2qJdG7ABawlKItWIGyFpfR1fwmRs37IHozYcY7pZ/mN0YtTk6wZsQG8NwP8A9G7iLw+1gwsAAAAASUVORK5CYII=" + } + } + ], + "char_cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.41, + "r_y0": 711.075, + "r_x1": 65.082, + "r_y1": 711.075, + "r_x2": 65.082, + "r_y2": 717.89, + "r_x3": 63.41, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.222, + "r_y0": 711.075, + "r_x1": 68.918, + "r_y1": 711.075, + "r_x2": 68.918, + "r_y2": 717.89, + "r_x3": 65.222, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.932, + "r_y0": 711.075, + "r_x1": 72.173, + "r_y1": 711.075, + "r_x2": 72.173, + "r_y2": 717.89, + "r_x3": 68.932, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.222, + "r_y0": 711.075, + "r_x1": 76.156, + "r_y1": 711.075, + "r_x2": 76.156, + "r_y2": 717.89, + "r_x3": 72.222, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.233, + "r_y0": 711.075, + "r_x1": 78.067, + "r_y1": 711.075, + "r_x2": 78.067, + "r_y2": 717.89, + "r_x3": 76.233, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.159, + "r_y0": 711.075, + "r_x1": 81.49, + "r_y1": 711.075, + "r_x2": 81.49, + "r_y2": 717.89, + "r_x3": 78.159, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.651, + "r_y0": 711.075, + "r_x1": 85.284, + "r_y1": 711.075, + "r_x2": 85.284, + "r_y2": 717.89, + "r_x3": 81.651, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.319, + "r_y0": 711.075, + "r_x1": 87.475, + "r_y1": 711.075, + "r_x2": 87.475, + "r_y2": 717.89, + "r_x3": 85.319, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.51, + "r_y0": 711.075, + "r_x1": 92.256, + "r_y1": 711.075, + "r_x2": 92.256, + "r_y2": 717.89, + "r_x3": 87.51, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.417, + "r_y0": 711.075, + "r_x1": 96.456, + "r_y1": 711.075, + "r_x2": 96.456, + "r_y2": 717.89, + "r_x3": 92.417, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.603, + "r_y0": 711.075, + "r_x1": 98.284, + "r_y1": 711.075, + "r_x2": 98.284, + "r_y2": 717.89, + "r_x3": 96.603, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.459, + "r_y0": 711.075, + "r_x1": 102.091, + "r_y1": 711.075, + "r_x2": 102.091, + "r_y2": 717.89, + "r_x3": 98.459, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.541, + "r_y0": 711.075, + "r_x1": 155.214, + "r_y1": 711.075, + "r_x2": 155.214, + "r_y2": 717.89, + "r_x3": 153.541, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.355, + "r_y0": 711.075, + "r_x1": 159.05, + "r_y1": 711.075, + "r_x2": 159.05, + "r_y2": 717.89, + "r_x3": 155.355, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.065, + "r_y0": 711.075, + "r_x1": 162.306, + "r_y1": 711.075, + "r_x2": 162.306, + "r_y2": 717.89, + "r_x3": 159.065, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.355, + "r_y0": 711.075, + "r_x1": 166.289, + "r_y1": 711.075, + "r_x2": 166.289, + "r_y2": 717.89, + "r_x3": 162.355, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.366, + "r_y0": 711.075, + "r_x1": 168.2, + "r_y1": 711.075, + "r_x2": 168.2, + "r_y2": 717.89, + "r_x3": 166.366, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.291, + "r_y0": 711.075, + "r_x1": 171.623, + "r_y1": 711.075, + "r_x2": 171.623, + "r_y2": 717.89, + "r_x3": 168.291, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.784, + "r_y0": 711.075, + "r_x1": 175.417, + "r_y1": 711.075, + "r_x2": 175.417, + "r_y2": 717.89, + "r_x3": 171.784, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.452, + "r_y0": 711.075, + "r_x1": 177.608, + "r_y1": 711.075, + "r_x2": 177.608, + "r_y2": 717.89, + "r_x3": 175.452, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.643, + "r_y0": 711.075, + "r_x1": 181.955, + "r_y1": 711.075, + "r_x2": 181.955, + "r_y2": 717.89, + "r_x3": 177.643, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "#", + "orig": "#", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.011, + "r_y0": 711.075, + "r_x1": 266.045, + "r_y1": 711.075, + "r_x2": 266.045, + "r_y2": 717.89, + "r_x3": 260.011, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.227, + "r_y0": 711.075, + "r_x1": 268.572, + "r_y1": 711.075, + "r_x2": 268.572, + "r_y2": 717.89, + "r_x3": 266.227, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 268.601, + "r_y0": 711.075, + "r_x1": 272.639, + "r_y1": 711.075, + "r_x2": 272.639, + "r_y2": 717.89, + "r_x3": 268.601, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.808, + "r_y0": 711.075, + "r_x1": 276.44, + "r_y1": 711.075, + "r_x2": 276.44, + "r_y2": 717.89, + "r_x3": 272.808, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 276.594, + "r_y0": 711.075, + "r_x1": 278.94, + "r_y1": 711.075, + "r_x2": 278.94, + "r_y2": 717.89, + "r_x3": 276.594, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.975, + "r_y0": 711.075, + "r_x1": 281.131, + "r_y1": 711.075, + "r_x2": 281.131, + "r_y2": 717.89, + "r_x3": 278.975, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 281.166, + "r_y0": 711.075, + "r_x1": 285.478, + "r_y1": 711.075, + "r_x2": 285.478, + "r_y2": 717.89, + "r_x3": 281.166, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "#", + "orig": "#", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 416.601, + "r_y0": 711.075, + "r_x1": 422.635, + "r_y1": 711.075, + "r_x2": 422.635, + "r_y2": 717.89, + "r_x3": 416.601, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 422.831, + "r_y0": 711.075, + "r_x1": 424.511, + "r_y1": 711.075, + "r_x2": 424.511, + "r_y2": 717.89, + "r_x3": 422.831, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 424.686, + "r_y0": 711.075, + "r_x1": 428.382, + "r_y1": 711.075, + "r_x2": 428.382, + "r_y2": 717.89, + "r_x3": 424.686, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 428.515, + "r_y0": 711.075, + "r_x1": 432.148, + "r_y1": 711.075, + "r_x2": 432.148, + "r_y2": 717.89, + "r_x3": 428.515, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.302, + "r_y0": 711.075, + "r_x1": 434.647, + "r_y1": 711.075, + "r_x2": 434.647, + "r_y2": 717.89, + "r_x3": 432.302, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 434.682, + "r_y0": 711.075, + "r_x1": 436.838, + "r_y1": 711.075, + "r_x2": 436.838, + "r_y2": 717.89, + "r_x3": 434.682, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.873, + "r_y0": 711.075, + "r_x1": 440.667, + "r_y1": 711.075, + "r_x2": 440.667, + "r_y2": 717.89, + "r_x3": 436.873, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 440.66, + "r_y0": 711.075, + "r_x1": 444.293, + "r_y1": 711.075, + "r_x2": 444.293, + "r_y2": 717.89, + "r_x3": 440.66, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 444.433, + "r_y0": 711.075, + "r_x1": 446.351, + "r_y1": 711.075, + "r_x2": 446.351, + "r_y2": 717.89, + "r_x3": 444.433, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 446.54, + "r_y0": 711.075, + "r_x1": 450.173, + "r_y1": 711.075, + "r_x2": 450.173, + "r_y2": 717.89, + "r_x3": 446.54, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 450.327, + "r_y0": 711.075, + "r_x1": 452.672, + "r_y1": 711.075, + "r_x2": 452.672, + "r_y2": 717.89, + "r_x3": 450.327, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 452.714, + "r_y0": 711.075, + "r_x1": 456.347, + "r_y1": 711.075, + "r_x2": 456.347, + "r_y2": 717.89, + "r_x3": 452.714, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 456.487, + "r_y0": 711.075, + "r_x1": 460.183, + "r_y1": 711.075, + "r_x2": 460.183, + "r_y2": 717.89, + "r_x3": 456.487, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 460.323, + "r_y0": 711.075, + "r_x1": 463.655, + "r_y1": 711.075, + "r_x2": 463.655, + "r_y2": 717.89, + "r_x3": 460.323, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 463.816, + "r_y0": 711.075, + "r_x1": 467.449, + "r_y1": 711.075, + "r_x2": 467.449, + "r_y2": 717.89, + "r_x3": 463.816, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 467.603, + "r_y0": 711.075, + "r_x1": 470.396, + "r_y1": 711.075, + "r_x2": 470.396, + "r_y2": 717.89, + "r_x3": 467.603, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 658.219, + "r_x1": 58.928, + "r_y1": 658.219, + "r_x2": 58.928, + "r_y2": 665.782, + "r_x3": 54.0, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.216, + "r_y0": 658.219, + "r_x1": 63.616, + "r_y1": 658.219, + "r_x2": 63.616, + "r_y2": 665.782, + "r_x3": 59.216, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.936, + "r_y0": 658.219, + "r_x1": 67.896, + "r_y1": 658.219, + "r_x2": 67.896, + "r_y2": 665.782, + "r_x3": 63.936, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.16, + "r_y0": 658.219, + "r_x1": 72.12, + "r_y1": 658.219, + "r_x2": 72.12, + "r_y2": 665.782, + "r_x3": 68.16, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.384, + "r_y0": 658.219, + "r_x1": 76.784, + "r_y1": 658.219, + "r_x2": 76.784, + "r_y2": 665.782, + "r_x3": 72.384, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.104, + "r_y0": 658.219, + "r_x1": 82.544, + "r_y1": 658.219, + "r_x2": 82.544, + "r_y2": 665.782, + "r_x3": 77.104, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.864, + "r_y0": 658.219, + "r_x1": 87.496, + "r_y1": 658.219, + "r_x2": 87.496, + "r_y2": 665.782, + "r_x3": 82.864, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.32, + "r_y0": 658.219, + "r_x1": 92.248, + "r_y1": 658.219, + "r_x2": 92.248, + "r_y2": 665.782, + "r_x3": 87.32, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.536, + "r_y0": 658.219, + "r_x1": 98.96, + "r_y1": 658.219, + "r_x2": 98.96, + "r_y2": 665.782, + "r_x3": 92.536, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.288, + "r_y0": 658.219, + "r_x1": 101.88, + "r_y1": 658.219, + "r_x2": 101.88, + "r_y2": 665.782, + "r_x3": 99.288, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.192, + "r_y0": 658.219, + "r_x1": 107.48, + "r_y1": 658.219, + "r_x2": 107.48, + "r_y2": 665.782, + "r_x3": 102.192, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.704, + "r_y0": 658.219, + "r_x1": 112.992, + "r_y1": 658.219, + "r_x2": 112.992, + "r_y2": 665.782, + "r_x3": 107.704, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.216, + "r_y0": 658.219, + "r_x1": 117.616, + "r_y1": 658.219, + "r_x2": 117.616, + "r_y2": 665.782, + "r_x3": 113.216, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.936, + "r_y0": 658.219, + "r_x1": 123.376, + "r_y1": 658.219, + "r_x2": 123.376, + "r_y2": 665.782, + "r_x3": 117.936, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 658.213, + "r_x1": 144.838, + "r_y1": 658.213, + "r_x2": 144.838, + "r_y2": 665.028, + "r_x3": 139.0, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.02, + "r_y0": 658.213, + "r_x1": 149.059, + "r_y1": 658.213, + "r_x2": 149.059, + "r_y2": 665.028, + "r_x3": 145.02, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.164, + "r_y0": 658.213, + "r_x1": 154.54, + "r_y1": 658.213, + "r_x2": 154.54, + "r_y2": 665.028, + "r_x3": 149.164, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 61, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.68, + "r_y0": 658.213, + "r_x1": 158.313, + "r_y1": 658.213, + "r_x2": 158.313, + "r_y2": 665.028, + "r_x3": 154.68, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 62, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.208, + "r_y0": 658.213, + "r_x1": 160.364, + "r_y1": 658.213, + "r_x2": 160.364, + "r_y2": 665.028, + "r_x3": 158.208, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 63, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 638.214, + "r_x1": 143.893, + "r_y1": 638.214, + "r_x2": 143.893, + "r_y2": 645.029, + "r_x3": 139.0, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 64, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.005, + "r_y0": 638.214, + "r_x1": 148.044, + "r_y1": 638.214, + "r_x2": 148.044, + "r_y2": 645.029, + "r_x3": 144.005, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 65, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.198, + "r_y0": 638.214, + "r_x1": 152.237, + "r_y1": 638.214, + "r_x2": 152.237, + "r_y2": 645.029, + "r_x3": 148.198, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 66, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.356, + "r_y0": 638.214, + "r_x1": 154.701, + "r_y1": 638.214, + "r_x2": 154.701, + "r_y2": 645.029, + "r_x3": 152.356, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 67, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.743, + "r_y0": 638.214, + "r_x1": 158.376, + "r_y1": 638.214, + "r_x2": 158.376, + "r_y2": 645.029, + "r_x3": 154.743, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 68, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.53, + "r_y0": 638.214, + "r_x1": 161.323, + "r_y1": 638.214, + "r_x2": 161.323, + "r_y2": 645.029, + "r_x3": 158.53, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 69, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.477, + "r_y0": 638.214, + "r_x1": 164.27, + "r_y1": 638.214, + "r_x2": 164.27, + "r_y2": 645.029, + "r_x3": 161.477, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 70, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.193, + "r_y0": 638.214, + "r_x1": 166.349, + "r_y1": 638.214, + "r_x2": 166.349, + "r_y2": 645.029, + "r_x3": 164.193, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 71, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 618.219, + "r_x1": 60.224, + "r_y1": 618.219, + "r_x2": 60.224, + "r_y2": 625.782, + "r_x3": 54.0, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 72, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.552, + "r_y0": 618.219, + "r_x1": 64.512, + "r_y1": 618.219, + "r_x2": 64.512, + "r_y2": 625.782, + "r_x3": 60.552, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 73, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.384, + "r_y0": 618.219, + "r_x1": 68.648, + "r_y1": 618.219, + "r_x2": 68.648, + "r_y2": 625.782, + "r_x3": 64.384, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 74, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.888, + "r_y0": 618.219, + "r_x1": 71.48, + "r_y1": 618.219, + "r_x2": 71.48, + "r_y2": 625.782, + "r_x3": 68.888, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 75, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.776, + "r_y0": 618.219, + "r_x1": 79.64, + "r_y1": 618.219, + "r_x2": 79.64, + "r_y2": 625.782, + "r_x3": 71.776, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 76, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.104, + "r_y0": 618.219, + "r_x1": 86.352, + "r_y1": 618.219, + "r_x2": 86.352, + "r_y2": 625.782, + "r_x3": 80.104, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 77, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.248, + "r_y0": 618.219, + "r_x1": 90.512, + "r_y1": 618.219, + "r_x2": 90.512, + "r_y2": 625.782, + "r_x3": 86.248, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 78, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.752, + "r_y0": 618.219, + "r_x1": 95.152, + "r_y1": 618.219, + "r_x2": 95.152, + "r_y2": 625.782, + "r_x3": 90.752, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 79, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 618.213, + "r_x1": 144.838, + "r_y1": 618.213, + "r_x2": 144.838, + "r_y2": 625.028, + "r_x3": 139.0, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 80, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.02, + "r_y0": 618.213, + "r_x1": 149.059, + "r_y1": 618.213, + "r_x2": 149.059, + "r_y2": 625.028, + "r_x3": 145.02, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 81, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.164, + "r_y0": 618.213, + "r_x1": 154.54, + "r_y1": 618.213, + "r_x2": 154.54, + "r_y2": 625.028, + "r_x3": 149.164, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 82, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.68, + "r_y0": 618.213, + "r_x1": 158.313, + "r_y1": 618.213, + "r_x2": 158.313, + "r_y2": 625.028, + "r_x3": 154.68, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 83, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.208, + "r_y0": 618.213, + "r_x1": 160.364, + "r_y1": 618.213, + "r_x2": 160.364, + "r_y2": 625.028, + "r_x3": 158.208, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 84, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 607.619, + "r_x1": 59.28, + "r_y1": 607.619, + "r_x2": 59.28, + "r_y2": 615.182, + "r_x3": 54.0, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 85, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.52, + "r_y0": 607.619, + "r_x1": 66.616, + "r_y1": 607.619, + "r_x2": 66.616, + "r_y2": 615.182, + "r_x3": 59.52, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 86, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.936, + "r_y0": 607.619, + "r_x1": 73.984, + "r_y1": 607.619, + "r_x2": 73.984, + "r_y2": 615.182, + "r_x3": 66.936, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 87, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.264, + "r_y0": 607.619, + "r_x1": 79.192, + "r_y1": 607.619, + "r_x2": 79.192, + "r_y2": 615.182, + "r_x3": 74.264, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 88, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.496, + "r_y0": 607.619, + "r_x1": 82.088, + "r_y1": 607.619, + "r_x2": 82.088, + "r_y2": 615.182, + "r_x3": 79.496, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 89, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.416, + "r_y0": 607.619, + "r_x1": 89.152, + "r_y1": 607.619, + "r_x2": 89.152, + "r_y2": 615.182, + "r_x3": 82.416, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 90, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.456, + "r_y0": 607.619, + "r_x1": 96.504, + "r_y1": 607.619, + "r_x2": 96.504, + "r_y2": 615.182, + "r_x3": 89.456, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 91, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.832, + "r_y0": 607.619, + "r_x1": 101.232, + "r_y1": 607.619, + "r_x2": 101.232, + "r_y2": 615.182, + "r_x3": 96.832, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 92, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.552, + "r_y0": 607.619, + "r_x1": 105.952, + "r_y1": 607.619, + "r_x2": 105.952, + "r_y2": 615.182, + "r_x3": 101.552, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 93, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 598.213, + "r_x1": 143.893, + "r_y1": 598.213, + "r_x2": 143.893, + "r_y2": 605.028, + "r_x3": 139.0, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 94, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.005, + "r_y0": 598.213, + "r_x1": 148.044, + "r_y1": 598.213, + "r_x2": 148.044, + "r_y2": 605.028, + "r_x3": 144.005, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 95, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.198, + "r_y0": 598.213, + "r_x1": 152.237, + "r_y1": 598.213, + "r_x2": 152.237, + "r_y2": 605.028, + "r_x3": 148.198, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 96, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.356, + "r_y0": 598.213, + "r_x1": 154.701, + "r_y1": 598.213, + "r_x2": 154.701, + "r_y2": 605.028, + "r_x3": 152.356, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 97, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.743, + "r_y0": 598.213, + "r_x1": 158.376, + "r_y1": 598.213, + "r_x2": 158.376, + "r_y2": 605.028, + "r_x3": 154.743, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 98, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.53, + "r_y0": 598.213, + "r_x1": 161.323, + "r_y1": 598.213, + "r_x2": 161.323, + "r_y2": 605.028, + "r_x3": 158.53, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 99, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.477, + "r_y0": 598.213, + "r_x1": 164.27, + "r_y1": 598.213, + "r_x2": 164.27, + "r_y2": 605.028, + "r_x3": 161.477, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 100, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.193, + "r_y0": 598.213, + "r_x1": 166.349, + "r_y1": 598.213, + "r_x2": 166.349, + "r_y2": 605.028, + "r_x3": 164.193, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 101, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 578.214, + "r_x1": 142.29, + "r_y1": 578.214, + "r_x2": 142.29, + "r_y2": 585.029, + "r_x3": 139.0, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 102, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.08, + "r_y0": 578.214, + "r_x1": 145.566, + "r_y1": 578.214, + "r_x2": 145.566, + "r_y2": 585.029, + "r_x3": 142.08, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 103, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.741, + "r_y0": 578.214, + "r_x1": 149.78, + "r_y1": 578.214, + "r_x2": 149.78, + "r_y2": 585.029, + "r_x3": 145.741, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 104, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.983, + "r_y0": 578.214, + "r_x1": 153.616, + "r_y1": 578.214, + "r_x2": 153.616, + "r_y2": 585.029, + "r_x3": 149.983, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 105, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.511, + "r_y0": 578.214, + "r_x1": 155.667, + "r_y1": 578.214, + "r_x2": 155.667, + "r_y2": 585.029, + "r_x3": 153.511, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 106, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 558.215, + "r_x1": 144.838, + "r_y1": 558.215, + "r_x2": 144.838, + "r_y2": 565.03, + "r_x3": 139.0, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 107, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.02, + "r_y0": 558.215, + "r_x1": 149.059, + "r_y1": 558.215, + "r_x2": 149.059, + "r_y2": 565.03, + "r_x3": 145.02, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 108, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.164, + "r_y0": 558.215, + "r_x1": 154.54, + "r_y1": 558.215, + "r_x2": 154.54, + "r_y2": 565.03, + "r_x3": 149.164, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 109, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.68, + "r_y0": 558.215, + "r_x1": 158.313, + "r_y1": 558.215, + "r_x2": 158.313, + "r_y2": 565.03, + "r_x3": 154.68, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 110, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.208, + "r_y0": 558.215, + "r_x1": 160.364, + "r_y1": 558.215, + "r_x2": 160.364, + "r_y2": 565.03, + "r_x3": 158.208, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 111, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 558.219, + "r_x1": 59.416, + "r_y1": 558.219, + "r_x2": 59.416, + "r_y2": 565.782, + "r_x3": 54.0, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B", + "orig": "B", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 112, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.416, + "r_y0": 558.219, + "r_x1": 65.64, + "r_y1": 558.219, + "r_x2": 65.64, + "r_y2": 565.782, + "r_x3": 59.416, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 113, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.64, + "r_y0": 558.219, + "r_x1": 71.352, + "r_y1": 558.219, + "r_x2": 71.352, + "r_y2": 565.782, + "r_x3": 65.64, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 114, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.352, + "r_y0": 558.219, + "r_x1": 75.752, + "r_y1": 558.219, + "r_x2": 75.752, + "r_y2": 565.782, + "r_x3": 71.352, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 115, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.752, + "r_y0": 558.219, + "r_x1": 81.192, + "r_y1": 558.219, + "r_x2": 81.192, + "r_y2": 565.782, + "r_x3": 75.752, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 116, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.192, + "r_y0": 558.219, + "r_x1": 83.936, + "r_y1": 558.219, + "r_x2": 83.936, + "r_y2": 565.782, + "r_x3": 81.192, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 117, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 548.705, + "r_x1": 55.623, + "r_y1": 548.705, + "r_x2": 55.623, + "r_y2": 555.558, + "r_x3": 53.999, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 118, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.658, + "r_y0": 548.705, + "r_x1": 57.583, + "r_y1": 548.705, + "r_x2": 57.583, + "r_y2": 555.558, + "r_x3": 55.658, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 119, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.618, + "r_y0": 548.705, + "r_x1": 59.641, + "r_y1": 548.705, + "r_x2": 59.641, + "r_y2": 555.558, + "r_x3": 57.618, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 120, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.676, + "r_y0": 548.705, + "r_x1": 63.456, + "r_y1": 548.705, + "r_x2": 63.456, + "r_y2": 555.558, + "r_x3": 59.676, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 121, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.491, + "r_y0": 548.705, + "r_x1": 65.171, + "r_y1": 548.705, + "r_x2": 65.171, + "r_y2": 555.558, + "r_x3": 63.491, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 122, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.206, + "r_y0": 548.705, + "r_x1": 68.867, + "r_y1": 548.705, + "r_x2": 68.867, + "r_y2": 555.558, + "r_x3": 65.206, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 123, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.902, + "r_y0": 548.705, + "r_x1": 72.318, + "r_y1": 548.705, + "r_x2": 72.318, + "r_y2": 555.558, + "r_x3": 68.902, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 124, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.353, + "r_y0": 548.705, + "r_x1": 74.81, + "r_y1": 548.705, + "r_x2": 74.81, + "r_y2": 555.558, + "r_x3": 72.353, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 125, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.845, + "r_y0": 548.705, + "r_x1": 76.868, + "r_y1": 548.705, + "r_x2": 76.868, + "r_y2": 555.558, + "r_x3": 74.845, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 126, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.903, + "r_y0": 548.705, + "r_x1": 78.583, + "r_y1": 548.705, + "r_x2": 78.583, + "r_y2": 555.558, + "r_x3": 76.903, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 127, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.618, + "r_y0": 548.705, + "r_x1": 82.279, + "r_y1": 548.705, + "r_x2": 82.279, + "r_y2": 555.558, + "r_x3": 78.618, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 128, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.314, + "r_y0": 548.705, + "r_x1": 86.206, + "r_y1": 548.705, + "r_x2": 86.206, + "r_y2": 555.558, + "r_x3": 82.314, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 129, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.241, + "r_y0": 548.705, + "r_x1": 89.902, + "r_y1": 548.705, + "r_x2": 89.902, + "r_y2": 555.558, + "r_x3": 86.241, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 130, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.937, + "r_y0": 548.705, + "r_x1": 91.96, + "r_y1": 548.705, + "r_x2": 91.96, + "r_y2": 555.558, + "r_x3": 89.937, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 131, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.995, + "r_y0": 548.643, + "r_x1": 95.726, + "r_y1": 548.643, + "r_x2": 95.726, + "r_y2": 554.837, + "r_x3": 91.995, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 132, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.761, + "r_y0": 548.643, + "r_x1": 97.504, + "r_y1": 548.643, + "r_x2": 97.504, + "r_y2": 554.837, + "r_x3": 95.761, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 133, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.539, + "r_y0": 548.643, + "r_x1": 99.688, + "r_y1": 548.643, + "r_x2": 99.688, + "r_y2": 554.837, + "r_x3": 97.539, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 134, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.723, + "r_y0": 548.643, + "r_x1": 101.634, + "r_y1": 548.643, + "r_x2": 101.634, + "r_y2": 554.837, + "r_x3": 99.723, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 135, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.669, + "r_y0": 548.643, + "r_x1": 107.178, + "r_y1": 548.643, + "r_x2": 107.178, + "r_y2": 554.837, + "r_x3": 101.669, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 136, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.213, + "r_y0": 548.643, + "r_x1": 110.643, + "r_y1": 548.643, + "r_x2": 110.643, + "r_y2": 554.837, + "r_x3": 107.213, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 137, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.678, + "r_y0": 548.643, + "r_x1": 112.827, + "r_y1": 548.643, + "r_x2": 112.827, + "r_y2": 554.837, + "r_x3": 110.678, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 138, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.862, + "r_y0": 548.643, + "r_x1": 115.662, + "r_y1": 548.643, + "r_x2": 115.662, + "r_y2": 554.837, + "r_x3": 112.862, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 139, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 115.697, + "r_y0": 548.643, + "r_x1": 117.3, + "r_y1": 548.643, + "r_x2": 117.3, + "r_y2": 554.837, + "r_x3": 115.697, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 140, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 538.842, + "r_x1": 57.086, + "r_y1": 538.842, + "r_x2": 57.086, + "r_y2": 545.695, + "r_x3": 53.999, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 141, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.121, + "r_y0": 538.842, + "r_x1": 60.901, + "r_y1": 538.842, + "r_x2": 60.901, + "r_y2": 545.695, + "r_x3": 57.121, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 142, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.936, + "r_y0": 538.842, + "r_x1": 64.597, + "r_y1": 538.842, + "r_x2": 64.597, + "r_y2": 545.695, + "r_x3": 60.936, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 143, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.632, + "r_y0": 538.842, + "r_x1": 67.32, + "r_y1": 538.842, + "r_x2": 67.32, + "r_y2": 545.695, + "r_x3": 64.632, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 144, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.355, + "r_y0": 538.842, + "r_x1": 69.133, + "r_y1": 538.842, + "r_x2": 69.133, + "r_y2": 545.695, + "r_x3": 67.355, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 145, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.168, + "r_y0": 538.842, + "r_x1": 73.053, + "r_y1": 538.842, + "r_x2": 73.053, + "r_y2": 545.695, + "r_x3": 69.168, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 146, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.088, + "r_y0": 538.842, + "r_x1": 76.749, + "r_y1": 538.842, + "r_x2": 76.749, + "r_y2": 545.695, + "r_x3": 73.088, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 147, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.784, + "r_y0": 538.842, + "r_x1": 80.2, + "r_y1": 538.842, + "r_x2": 80.2, + "r_y2": 545.695, + "r_x3": 76.784, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 148, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.235, + "r_y0": 538.842, + "r_x1": 83.651, + "r_y1": 538.842, + "r_x2": 83.651, + "r_y2": 545.695, + "r_x3": 80.235, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 149, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 538.214, + "r_x1": 143.893, + "r_y1": 538.214, + "r_x2": 143.893, + "r_y2": 545.029, + "r_x3": 139.0, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 150, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.005, + "r_y0": 538.214, + "r_x1": 148.044, + "r_y1": 538.214, + "r_x2": 148.044, + "r_y2": 545.029, + "r_x3": 144.005, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 151, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.198, + "r_y0": 538.214, + "r_x1": 152.237, + "r_y1": 538.214, + "r_x2": 152.237, + "r_y2": 545.029, + "r_x3": 148.198, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 152, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.356, + "r_y0": 538.214, + "r_x1": 154.701, + "r_y1": 538.214, + "r_x2": 154.701, + "r_y2": 545.029, + "r_x3": 152.356, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 153, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.743, + "r_y0": 538.214, + "r_x1": 158.376, + "r_y1": 538.214, + "r_x2": 158.376, + "r_y2": 545.029, + "r_x3": 154.743, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 154, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.53, + "r_y0": 538.214, + "r_x1": 161.323, + "r_y1": 538.214, + "r_x2": 161.323, + "r_y2": 545.029, + "r_x3": 158.53, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 155, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.477, + "r_y0": 538.214, + "r_x1": 164.27, + "r_y1": 538.214, + "r_x2": 164.27, + "r_y2": 545.029, + "r_x3": 161.477, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 156, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.193, + "r_y0": 538.214, + "r_x1": 166.349, + "r_y1": 538.214, + "r_x2": 166.349, + "r_y2": 545.029, + "r_x3": 164.193, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": ":", + "orig": ":", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 157, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 520.713, + "r_x1": 57.521, + "r_y1": 520.713, + "r_x2": 57.521, + "r_y2": 527.528, + "r_x3": 54.0, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 158, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.409, + "r_y0": 520.713, + "r_x1": 61.343, + "r_y1": 520.713, + "r_x2": 61.343, + "r_y2": 527.528, + "r_x3": 57.409, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 159, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.49, + "r_y0": 520.713, + "r_x1": 63.835, + "r_y1": 520.713, + "r_x2": 63.835, + "r_y2": 527.528, + "r_x3": 61.49, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 160, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.115, + "r_y0": 520.713, + "r_x1": 65.795, + "r_y1": 520.713, + "r_x2": 65.795, + "r_y2": 527.528, + "r_x3": 64.115, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 161, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.83, + "r_y0": 520.713, + "r_x1": 67.986, + "r_y1": 520.713, + "r_x2": 67.986, + "r_y2": 527.528, + "r_x3": 65.83, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 162, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.021, + "r_y0": 520.713, + "r_x1": 71.955, + "r_y1": 520.713, + "r_x2": 71.955, + "r_y2": 527.528, + "r_x3": 68.021, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 163, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.067, + "r_y0": 520.713, + "r_x1": 73.985, + "r_y1": 520.713, + "r_x2": 73.985, + "r_y2": 527.528, + "r_x3": 72.067, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 164, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.02, + "r_y0": 520.713, + "r_x1": 76.176, + "r_y1": 520.713, + "r_x2": 76.176, + "r_y2": 527.528, + "r_x3": 74.02, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 165, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.211, + "r_y0": 520.713, + "r_x1": 78.836, + "r_y1": 520.713, + "r_x2": 78.836, + "r_y2": 527.528, + "r_x3": 76.211, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 166, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.976, + "r_y0": 520.713, + "r_x1": 83.015, + "r_y1": 520.713, + "r_x2": 83.015, + "r_y2": 527.528, + "r_x3": 78.976, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 167, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.169, + "r_y0": 520.713, + "r_x1": 87.208, + "r_y1": 520.713, + "r_x2": 87.208, + "r_y2": 527.528, + "r_x3": 83.169, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 168, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.264, + "r_y0": 520.713, + "r_x1": 89.098, + "r_y1": 520.713, + "r_x2": 89.098, + "r_y2": 527.528, + "r_x3": 87.264, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 169, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.14, + "r_y0": 520.713, + "r_x1": 92.836, + "r_y1": 520.713, + "r_x2": 92.836, + "r_y2": 527.528, + "r_x3": 89.14, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 170, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.983, + "r_y0": 520.713, + "r_x1": 97.043, + "r_y1": 520.713, + "r_x2": 97.043, + "r_y2": 527.528, + "r_x3": 92.983, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 171, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 520.713, + "r_x1": 313.287, + "r_y1": 520.713, + "r_x2": 313.287, + "r_y2": 527.528, + "r_x3": 309.997, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 172, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 313.07, + "r_y0": 520.713, + "r_x1": 317.004, + "r_y1": 520.713, + "r_x2": 317.004, + "r_y2": 527.528, + "r_x3": 313.07, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 173, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 317.123, + "r_y0": 520.713, + "r_x1": 318.803, + "r_y1": 520.713, + "r_x2": 318.803, + "r_y2": 527.528, + "r_x3": 317.123, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 174, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.971, + "r_y0": 520.713, + "r_x1": 323.01, + "r_y1": 520.713, + "r_x2": 323.01, + "r_y2": 527.528, + "r_x3": 318.971, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 175, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 323.122, + "r_y0": 520.713, + "r_x1": 324.711, + "r_y1": 520.713, + "r_x2": 324.711, + "r_y2": 527.528, + "r_x3": 323.122, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 176, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 324.746, + "r_y0": 520.713, + "r_x1": 326.902, + "r_y1": 520.713, + "r_x2": 326.902, + "r_y2": 527.528, + "r_x3": 324.746, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 177, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.937, + "r_y0": 520.713, + "r_x1": 332.775, + "r_y1": 520.713, + "r_x2": 332.775, + "r_y2": 527.528, + "r_x3": 326.937, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 178, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 332.957, + "r_y0": 520.713, + "r_x1": 336.891, + "r_y1": 520.713, + "r_x2": 336.891, + "r_y2": 527.528, + "r_x3": 332.957, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 179, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 336.828, + "r_y0": 520.713, + "r_x1": 338.984, + "r_y1": 520.713, + "r_x2": 338.984, + "r_y2": 527.528, + "r_x3": 336.828, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 180, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 339.019, + "r_y0": 520.713, + "r_x1": 341.175, + "r_y1": 520.713, + "r_x2": 341.175, + "r_y2": 527.528, + "r_x3": 339.019, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 181, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 341.21, + "r_y0": 520.713, + "r_x1": 344.731, + "r_y1": 520.713, + "r_x2": 344.731, + "r_y2": 527.528, + "r_x3": 341.21, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 182, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 344.633, + "r_y0": 520.713, + "r_x1": 348.672, + "r_y1": 520.713, + "r_x2": 348.672, + "r_y2": 527.528, + "r_x3": 344.633, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 183, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 348.84, + "r_y0": 520.713, + "r_x1": 352.172, + "r_y1": 520.713, + "r_x2": 352.172, + "r_y2": 527.528, + "r_x3": 348.84, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 184, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 352.333, + "r_y0": 520.713, + "r_x1": 355.623, + "r_y1": 520.713, + "r_x2": 355.623, + "r_y2": 527.528, + "r_x3": 352.333, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 185, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 355.595, + "r_y0": 520.713, + "r_x1": 359.634, + "r_y1": 520.713, + "r_x2": 359.634, + "r_y2": 527.528, + "r_x3": 355.595, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 186, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 359.802, + "r_y0": 520.713, + "r_x1": 363.862, + "r_y1": 520.713, + "r_x2": 363.862, + "r_y2": 527.528, + "r_x3": 359.802, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 187, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 364.002, + "r_y0": 520.713, + "r_x1": 367.635, + "r_y1": 520.713, + "r_x2": 367.635, + "r_y2": 527.528, + "r_x3": 364.002, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 188, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 367.789, + "r_y0": 520.713, + "r_x1": 370.582, + "r_y1": 520.713, + "r_x2": 370.582, + "r_y2": 527.528, + "r_x3": 367.789, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 189, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 504.711, + "r_x1": 313.287, + "r_y1": 504.711, + "r_x2": 313.287, + "r_y2": 511.526, + "r_x3": 309.997, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 190, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 313.07, + "r_y0": 504.711, + "r_x1": 317.004, + "r_y1": 504.711, + "r_x2": 317.004, + "r_y2": 511.526, + "r_x3": 313.07, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 191, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 317.123, + "r_y0": 504.711, + "r_x1": 318.803, + "r_y1": 504.711, + "r_x2": 318.803, + "r_y2": 511.526, + "r_x3": 317.123, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 192, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.971, + "r_y0": 504.711, + "r_x1": 323.01, + "r_y1": 504.711, + "r_x2": 323.01, + "r_y2": 511.526, + "r_x3": 318.971, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 193, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 323.122, + "r_y0": 504.711, + "r_x1": 324.711, + "r_y1": 504.711, + "r_x2": 324.711, + "r_y2": 511.526, + "r_x3": 323.122, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 194, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 324.746, + "r_y0": 504.711, + "r_x1": 326.902, + "r_y1": 504.711, + "r_x2": 326.902, + "r_y2": 511.526, + "r_x3": 324.746, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 195, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.937, + "r_y0": 504.711, + "r_x1": 332.677, + "r_y1": 504.711, + "r_x2": 332.677, + "r_y2": 511.526, + "r_x3": 326.937, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "G", + "orig": "G", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 196, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 332.838, + "r_y0": 504.711, + "r_x1": 335.183, + "r_y1": 504.711, + "r_x2": 335.183, + "r_y2": 511.526, + "r_x3": 332.838, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 197, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 335.204, + "r_y0": 504.711, + "r_x1": 339.138, + "r_y1": 504.711, + "r_x2": 339.138, + "r_y2": 511.526, + "r_x3": 335.204, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 198, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 339.243, + "r_y0": 504.711, + "r_x1": 342.036, + "r_y1": 504.711, + "r_x2": 342.036, + "r_y2": 511.526, + "r_x3": 339.243, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 199, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 342.19, + "r_y0": 504.711, + "r_x1": 344.983, + "r_y1": 504.711, + "r_x2": 344.983, + "r_y2": 511.526, + "r_x3": 342.19, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 200, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.018, + "r_y0": 504.711, + "r_x1": 347.174, + "r_y1": 504.711, + "r_x2": 347.174, + "r_y2": 511.526, + "r_x3": 345.018, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 201, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 347.209, + "r_y0": 504.711, + "r_x1": 354.846, + "r_y1": 504.711, + "r_x2": 354.846, + "r_y2": 511.526, + "r_x3": 347.209, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "W", + "orig": "W", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 202, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 354.636, + "r_y0": 504.711, + "r_x1": 358.269, + "r_y1": 504.711, + "r_x2": 358.269, + "r_y2": 511.526, + "r_x3": 354.636, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 203, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 358.36, + "r_y0": 504.711, + "r_x1": 360.194, + "r_y1": 504.711, + "r_x2": 360.194, + "r_y2": 511.526, + "r_x3": 358.36, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 204, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 360.278, + "r_y0": 504.711, + "r_x1": 364.338, + "r_y1": 504.711, + "r_x2": 364.338, + "r_y2": 511.526, + "r_x3": 360.278, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 205, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 364.422, + "r_y0": 504.711, + "r_x1": 368.118, + "r_y1": 504.711, + "r_x2": 368.118, + "r_y2": 511.526, + "r_x3": 364.422, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 206, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.216, + "r_y0": 504.711, + "r_x1": 369.896, + "r_y1": 504.711, + "r_x2": 369.896, + "r_y2": 511.526, + "r_x3": 368.216, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 207, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 369.931, + "r_y0": 504.711, + "r_x1": 372.087, + "r_y1": 504.711, + "r_x2": 372.087, + "r_y2": 511.526, + "r_x3": 369.931, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 208, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 372.122, + "r_y0": 504.711, + "r_x1": 374.131, + "r_y1": 504.711, + "r_x2": 374.131, + "r_y2": 511.526, + "r_x3": 372.122, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 209, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 374.579, + "r_y0": 504.711, + "r_x1": 378.856, + "r_y1": 504.711, + "r_x2": 378.856, + "r_y2": 511.526, + "r_x3": 374.579, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "K", + "orig": "K", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 210, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 378.975, + "r_y0": 504.711, + "r_x1": 384.715, + "r_y1": 504.711, + "r_x2": 384.715, + "r_y2": 511.526, + "r_x3": 378.975, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "G", + "orig": "G", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 211, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 385.1, + "r_y0": 504.711, + "r_x1": 387.109, + "r_y1": 504.711, + "r_x2": 387.109, + "r_y2": 511.526, + "r_x3": 385.1, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 212, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 488.709, + "r_x1": 57.738, + "r_y1": 488.709, + "r_x2": 57.738, + "r_y2": 495.524, + "r_x3": 54.0, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 213, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.927, + "r_y0": 488.709, + "r_x1": 61.413, + "r_y1": 488.709, + "r_x2": 61.413, + "r_y2": 495.524, + "r_x3": 57.927, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "x", + "orig": "x", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 214, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.574, + "r_y0": 488.709, + "r_x1": 65.613, + "r_y1": 488.709, + "r_x2": 65.613, + "r_y2": 495.524, + "r_x3": 61.574, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 215, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.802, + "r_y0": 488.709, + "r_x1": 69.736, + "r_y1": 488.709, + "r_x2": 69.736, + "r_y2": 495.524, + "r_x3": 65.802, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 216, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.883, + "r_y0": 488.709, + "r_x1": 72.228, + "r_y1": 488.709, + "r_x2": 72.228, + "r_y2": 495.524, + "r_x3": 69.883, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 217, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.508, + "r_y0": 488.709, + "r_x1": 74.188, + "r_y1": 488.709, + "r_x2": 74.188, + "r_y2": 495.524, + "r_x3": 72.508, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 218, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.3, + "r_y0": 488.709, + "r_x1": 76.134, + "r_y1": 488.709, + "r_x2": 76.134, + "r_y2": 495.524, + "r_x3": 74.3, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 219, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.176, + "r_y0": 488.709, + "r_x1": 79.872, + "r_y1": 488.709, + "r_x2": 79.872, + "r_y2": 495.524, + "r_x3": 76.176, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 220, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.019, + "r_y0": 488.709, + "r_x1": 84.079, + "r_y1": 488.709, + "r_x2": 84.079, + "r_y2": 495.524, + "r_x3": 80.019, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 221, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.114, + "r_y0": 488.709, + "r_x1": 86.27, + "r_y1": 488.709, + "r_x2": 86.27, + "r_y2": 495.524, + "r_x3": 84.114, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 222, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.305, + "r_y0": 488.709, + "r_x1": 91.324, + "r_y1": 488.709, + "r_x2": 91.324, + "r_y2": 495.524, + "r_x3": 86.305, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 223, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.394, + "r_y0": 488.709, + "r_x1": 95.433, + "r_y1": 488.709, + "r_x2": 95.433, + "r_y2": 495.524, + "r_x3": 91.394, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 224, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.552, + "r_y0": 488.709, + "r_x1": 97.897, + "r_y1": 488.709, + "r_x2": 97.897, + "r_y2": 495.524, + "r_x3": 95.552, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 225, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.044, + "r_y0": 488.709, + "r_x1": 100.389, + "r_y1": 488.709, + "r_x2": 100.389, + "r_y2": 495.524, + "r_x3": 98.044, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 226, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 100.473, + "r_y0": 488.709, + "r_x1": 102.307, + "r_y1": 488.709, + "r_x2": 102.307, + "r_y2": 495.524, + "r_x3": 100.473, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 227, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.391, + "r_y0": 488.709, + "r_x1": 106.024, + "r_y1": 488.709, + "r_x2": 106.024, + "r_y2": 495.524, + "r_x3": 102.391, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 228, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.178, + "r_y0": 488.709, + "r_x1": 108.523, + "r_y1": 488.709, + "r_x2": 108.523, + "r_y2": 495.524, + "r_x3": 106.178, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 229, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 488.709, + "r_x1": 315.016, + "r_y1": 488.709, + "r_x2": 315.016, + "r_y2": 495.524, + "r_x3": 309.997, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 230, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 314.988, + "r_y0": 488.709, + "r_x1": 318.572, + "r_y1": 488.709, + "r_x2": 318.572, + "r_y2": 495.524, + "r_x3": 314.988, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 231, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.691, + "r_y0": 488.709, + "r_x1": 322.73, + "r_y1": 488.709, + "r_x2": 322.73, + "r_y2": 495.524, + "r_x3": 318.691, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 232, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 322.814, + "r_y0": 488.709, + "r_x1": 324.648, + "r_y1": 488.709, + "r_x2": 324.648, + "r_y2": 495.524, + "r_x3": 322.814, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 233, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 324.739, + "r_y0": 488.709, + "r_x1": 328.071, + "r_y1": 488.709, + "r_x2": 328.071, + "r_y2": 495.524, + "r_x3": 324.739, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 234, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 328.106, + "r_y0": 488.709, + "r_x1": 330.262, + "r_y1": 488.709, + "r_x2": 330.262, + "r_y2": 495.524, + "r_x3": 328.106, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 235, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 330.297, + "r_y0": 488.709, + "r_x1": 336.569, + "r_y1": 488.709, + "r_x2": 336.569, + "r_y2": 495.524, + "r_x3": 330.297, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 236, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 336.807, + "r_y0": 488.709, + "r_x1": 340.44, + "r_y1": 488.709, + "r_x2": 340.44, + "r_y2": 495.524, + "r_x3": 336.807, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 237, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 340.587, + "r_y0": 488.709, + "r_x1": 342.267, + "r_y1": 488.709, + "r_x2": 342.267, + "r_y2": 495.524, + "r_x3": 340.587, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 238, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 342.442, + "r_y0": 488.709, + "r_x1": 346.075, + "r_y1": 488.709, + "r_x2": 346.075, + "r_y2": 495.524, + "r_x3": 342.442, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 239, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 346.229, + "r_y0": 488.709, + "r_x1": 348.574, + "r_y1": 488.709, + "r_x2": 348.574, + "r_y2": 495.524, + "r_x3": 346.229, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 240, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 348.63, + "r_y0": 488.709, + "r_x1": 351.423, + "r_y1": 488.709, + "r_x2": 351.423, + "r_y2": 495.524, + "r_x3": 348.63, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 241, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 472.707, + "r_x1": 55.673, + "r_y1": 472.707, + "r_x2": 55.673, + "r_y2": 479.522, + "r_x3": 54.0, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 242, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.813, + "r_y0": 472.707, + "r_x1": 59.509, + "r_y1": 472.707, + "r_x2": 59.509, + "r_y2": 479.522, + "r_x3": 55.813, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 243, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.649, + "r_y0": 472.707, + "r_x1": 62.981, + "r_y1": 472.707, + "r_x2": 62.981, + "r_y2": 479.522, + "r_x3": 59.649, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 244, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.114, + "r_y0": 472.707, + "r_x1": 67.048, + "r_y1": 472.707, + "r_x2": 67.048, + "r_y2": 479.522, + "r_x3": 63.114, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 245, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.167, + "r_y0": 472.707, + "r_x1": 68.847, + "r_y1": 472.707, + "r_x2": 68.847, + "r_y2": 479.522, + "r_x3": 67.167, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 246, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.022, + "r_y0": 472.707, + "r_x1": 72.655, + "r_y1": 472.707, + "r_x2": 72.655, + "r_y2": 479.522, + "r_x3": 69.022, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 247, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.809, + "r_y0": 472.707, + "r_x1": 75.154, + "r_y1": 472.707, + "r_x2": 75.154, + "r_y2": 479.522, + "r_x3": 72.809, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 248, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.287, + "r_y0": 472.707, + "r_x1": 80.663, + "r_y1": 472.707, + "r_x2": 80.663, + "r_y2": 479.522, + "r_x3": 75.287, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 249, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.733, + "r_y0": 472.707, + "r_x1": 83.526, + "r_y1": 472.707, + "r_x2": 83.526, + "r_y2": 479.522, + "r_x3": 80.733, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 250, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.694, + "r_y0": 472.707, + "r_x1": 89.294, + "r_y1": 472.707, + "r_x2": 89.294, + "r_y2": 479.522, + "r_x3": 83.694, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u00ae", + "orig": "\u00ae", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 251, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 474.933, + "r_x1": 316.269, + "r_y1": 474.933, + "r_x2": 316.269, + "r_y2": 481.748, + "r_x3": 309.997, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 252, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 316.5, + "r_y0": 474.933, + "r_x1": 320.539, + "r_y1": 474.933, + "r_x2": 320.539, + "r_y2": 481.748, + "r_x3": 316.5, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 253, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 320.658, + "r_y0": 474.933, + "r_x1": 323.003, + "r_y1": 474.933, + "r_x2": 323.003, + "r_y2": 481.748, + "r_x3": 320.658, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 254, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 323.15, + "r_y0": 474.933, + "r_x1": 326.44, + "r_y1": 474.933, + "r_x2": 326.44, + "r_y2": 481.748, + "r_x3": 323.15, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 255, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.531, + "r_y0": 474.933, + "r_x1": 329.324, + "r_y1": 474.933, + "r_x2": 329.324, + "r_y2": 481.748, + "r_x3": 326.531, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 256, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 329.359, + "r_y0": 474.933, + "r_x1": 331.515, + "r_y1": 474.933, + "r_x2": 331.515, + "r_y2": 481.748, + "r_x3": 329.359, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 257, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 331.55, + "r_y0": 474.933, + "r_x1": 336.415, + "r_y1": 474.933, + "r_x2": 336.415, + "r_y2": 481.748, + "r_x3": 331.55, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 258, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 336.45, + "r_y0": 474.933, + "r_x1": 338.606, + "r_y1": 474.933, + "r_x2": 338.606, + "r_y2": 481.748, + "r_x3": 336.45, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 259, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.641, + "r_y0": 474.933, + "r_x1": 344.479, + "r_y1": 474.933, + "r_x2": 344.479, + "r_y2": 481.748, + "r_x3": 338.641, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 260, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 344.626, + "r_y0": 474.933, + "r_x1": 348.21, + "r_y1": 474.933, + "r_x2": 348.21, + "r_y2": 481.748, + "r_x3": 344.626, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 261, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 348.315, + "r_y0": 474.933, + "r_x1": 353.691, + "r_y1": 474.933, + "r_x2": 353.691, + "r_y2": 481.748, + "r_x3": 348.315, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 262, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 353.796, + "r_y0": 474.933, + "r_x1": 357.835, + "r_y1": 474.933, + "r_x2": 357.835, + "r_y2": 481.748, + "r_x3": 353.796, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 263, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 358.038, + "r_y0": 474.933, + "r_x1": 361.671, + "r_y1": 474.933, + "r_x2": 361.671, + "r_y2": 481.748, + "r_x3": 358.038, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 264, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 361.825, + "r_y0": 474.933, + "r_x1": 364.17, + "r_y1": 474.933, + "r_x2": 364.17, + "r_y2": 481.748, + "r_x3": 361.825, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 265, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 364.226, + "r_y0": 474.933, + "r_x1": 367.019, + "r_y1": 474.933, + "r_x2": 367.019, + "r_y2": 481.748, + "r_x3": 364.226, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 266, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 456.705, + "r_x1": 59.838, + "r_y1": 456.705, + "r_x2": 59.838, + "r_y2": 463.52, + "r_x3": 54.0, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 267, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.02, + "r_y0": 456.705, + "r_x1": 64.059, + "r_y1": 456.705, + "r_x2": 64.059, + "r_y2": 463.52, + "r_x3": 60.02, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 268, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.164, + "r_y0": 456.705, + "r_x1": 69.54, + "r_y1": 456.705, + "r_x2": 69.54, + "r_y2": 463.52, + "r_x3": 64.164, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 269, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.68, + "r_y0": 456.705, + "r_x1": 73.313, + "r_y1": 456.705, + "r_x2": 73.313, + "r_y2": 463.52, + "r_x3": 69.68, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 270, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.495, + "r_y0": 456.705, + "r_x1": 77.534, + "r_y1": 456.705, + "r_x2": 77.534, + "r_y2": 463.52, + "r_x3": 73.495, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 271, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.569, + "r_y0": 456.705, + "r_x1": 79.725, + "r_y1": 456.705, + "r_x2": 79.725, + "r_y2": 463.52, + "r_x3": 77.569, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 272, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.76, + "r_y0": 456.705, + "r_x1": 83.281, + "r_y1": 456.705, + "r_x2": 83.281, + "r_y2": 463.52, + "r_x3": 79.76, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 273, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.169, + "r_y0": 456.705, + "r_x1": 87.103, + "r_y1": 456.705, + "r_x2": 87.103, + "r_y2": 463.52, + "r_x3": 83.169, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 274, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.18, + "r_y0": 456.705, + "r_x1": 89.014, + "r_y1": 456.705, + "r_x2": 89.014, + "r_y2": 463.52, + "r_x3": 87.18, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 275, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.056, + "r_y0": 456.705, + "r_x1": 92.752, + "r_y1": 456.705, + "r_x2": 92.752, + "r_y2": 463.52, + "r_x3": 89.056, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 276, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.85, + "r_y0": 456.705, + "r_x1": 94.53, + "r_y1": 456.705, + "r_x2": 94.53, + "r_y2": 463.52, + "r_x3": 92.85, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 277, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 440.703, + "r_x1": 57.29, + "r_y1": 440.703, + "r_x2": 57.29, + "r_y2": 447.518, + "r_x3": 54.0, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 278, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.108, + "r_y0": 440.703, + "r_x1": 60.741, + "r_y1": 440.703, + "r_x2": 60.741, + "r_y2": 447.518, + "r_x3": 57.108, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 279, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.895, + "r_y0": 440.703, + "r_x1": 63.24, + "r_y1": 440.703, + "r_x2": 63.24, + "r_y2": 447.518, + "r_x3": 60.895, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 280, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.373, + "r_y0": 440.703, + "r_x1": 68.749, + "r_y1": 440.703, + "r_x2": 68.749, + "r_y2": 447.518, + "r_x3": 63.373, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 281, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.812, + "r_y0": 440.703, + "r_x1": 71.605, + "r_y1": 440.703, + "r_x2": 71.605, + "r_y2": 447.518, + "r_x3": 68.812, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 282, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.64, + "r_y0": 440.703, + "r_x1": 73.796, + "r_y1": 440.703, + "r_x2": 73.796, + "r_y2": 447.518, + "r_x3": 71.64, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 283, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.831, + "r_y0": 440.703, + "r_x1": 77.765, + "r_y1": 440.703, + "r_x2": 77.765, + "r_y2": 447.518, + "r_x3": 73.831, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 284, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.877, + "r_y0": 440.703, + "r_x1": 79.795, + "r_y1": 440.703, + "r_x2": 79.795, + "r_y2": 447.518, + "r_x3": 77.877, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 285, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.83, + "r_y0": 440.703, + "r_x1": 81.986, + "r_y1": 440.703, + "r_x2": 81.986, + "r_y2": 447.518, + "r_x3": 79.83, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 286, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.021, + "r_y0": 440.703, + "r_x1": 85.934, + "r_y1": 440.703, + "r_x2": 85.934, + "r_y2": 447.518, + "r_x3": 82.021, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 287, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.116, + "r_y0": 440.703, + "r_x1": 90.155, + "r_y1": 440.703, + "r_x2": 90.155, + "r_y2": 447.518, + "r_x3": 86.116, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 288, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.267, + "r_y0": 440.703, + "r_x1": 91.856, + "r_y1": 440.703, + "r_x2": 91.856, + "r_y2": 447.518, + "r_x3": 90.267, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 289, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.024, + "r_y0": 440.703, + "r_x1": 95.657, + "r_y1": 440.703, + "r_x2": 95.657, + "r_y2": 447.518, + "r_x3": 92.024, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 290, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 424.701, + "r_x1": 59.019, + "r_y1": 424.701, + "r_x2": 59.019, + "r_y2": 431.516, + "r_x3": 54.0, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 291, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.991, + "r_y0": 424.701, + "r_x1": 62.575, + "r_y1": 424.701, + "r_x2": 62.575, + "r_y2": 431.516, + "r_x3": 58.991, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 292, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.694, + "r_y0": 424.701, + "r_x1": 65.039, + "r_y1": 424.701, + "r_x2": 65.039, + "r_y2": 431.516, + "r_x3": 62.694, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 293, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.186, + "r_y0": 424.701, + "r_x1": 67.531, + "r_y1": 424.701, + "r_x2": 67.531, + "r_y2": 431.516, + "r_x3": 65.186, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 294, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.573, + "r_y0": 424.701, + "r_x1": 71.206, + "r_y1": 424.701, + "r_x2": 71.206, + "r_y2": 431.516, + "r_x3": 67.573, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 295, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.346, + "r_y0": 424.701, + "r_x1": 75.042, + "r_y1": 424.701, + "r_x2": 75.042, + "r_y2": 431.516, + "r_x3": 71.346, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 296, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.182, + "r_y0": 424.701, + "r_x1": 78.514, + "r_y1": 424.701, + "r_x2": 78.514, + "r_y2": 431.516, + "r_x3": 75.182, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 297, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.731, + "r_y0": 424.701, + "r_x1": 82.217, + "r_y1": 424.701, + "r_x2": 82.217, + "r_y2": 431.516, + "r_x3": 78.731, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 298, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.252, + "r_y0": 424.701, + "r_x1": 84.408, + "r_y1": 424.701, + "r_x2": 84.408, + "r_y2": 431.516, + "r_x3": 82.252, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 299, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.443, + "r_y0": 424.701, + "r_x1": 88.377, + "r_y1": 424.701, + "r_x2": 88.377, + "r_y2": 431.516, + "r_x3": 84.443, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 300, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.489, + "r_y0": 424.701, + "r_x1": 90.407, + "r_y1": 424.701, + "r_x2": 90.407, + "r_y2": 431.516, + "r_x3": 88.489, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 301, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.442, + "r_y0": 424.701, + "r_x1": 92.598, + "r_y1": 424.701, + "r_x2": 92.598, + "r_y2": 431.516, + "r_x3": 90.442, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 302, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.633, + "r_y0": 424.701, + "r_x1": 96.546, + "r_y1": 424.701, + "r_x2": 96.546, + "r_y2": 431.516, + "r_x3": 92.633, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 303, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.728, + "r_y0": 424.701, + "r_x1": 100.767, + "r_y1": 424.701, + "r_x2": 100.767, + "r_y2": 431.516, + "r_x3": 96.728, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 304, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 100.879, + "r_y0": 424.701, + "r_x1": 102.468, + "r_y1": 424.701, + "r_x2": 102.468, + "r_y2": 431.516, + "r_x3": 100.879, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 305, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.636, + "r_y0": 424.701, + "r_x1": 106.269, + "r_y1": 424.701, + "r_x2": 106.269, + "r_y2": 431.516, + "r_x3": 102.636, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 306, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.311, + "r_y0": 406.582, + "r_x1": 74.365, + "r_y1": 406.582, + "r_x2": 74.365, + "r_y2": 413.16, + "r_x3": 69.311, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 307, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.4, + "r_y0": 406.582, + "r_x1": 78.292, + "r_y1": 406.582, + "r_x2": 78.292, + "r_y2": 413.16, + "r_x3": 74.4, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 308, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.327, + "r_y0": 406.582, + "r_x1": 84.158, + "r_y1": 406.582, + "r_x2": 84.158, + "r_y2": 413.16, + "r_x3": 78.327, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 309, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.193, + "r_y0": 406.582, + "r_x1": 88.085, + "r_y1": 406.582, + "r_x2": 88.085, + "r_y2": 413.16, + "r_x3": 84.193, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 310, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.12, + "r_y0": 406.582, + "r_x1": 89.674, + "r_y1": 406.582, + "r_x2": 89.674, + "r_y2": 413.16, + "r_x3": 88.12, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 311, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.709, + "r_y0": 406.582, + "r_x1": 93.601, + "r_y1": 406.582, + "r_x2": 93.601, + "r_y2": 413.16, + "r_x3": 89.709, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 312, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.636, + "r_y0": 406.582, + "r_x1": 95.582, + "r_y1": 406.582, + "r_x2": 95.582, + "r_y2": 413.16, + "r_x3": 93.636, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 313, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.617, + "r_y0": 406.582, + "r_x1": 99.509, + "r_y1": 406.582, + "r_x2": 99.509, + "r_y2": 413.16, + "r_x3": 95.617, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 314, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.544, + "r_y0": 406.582, + "r_x1": 101.49, + "r_y1": 406.582, + "r_x2": 101.49, + "r_y2": 413.16, + "r_x3": 99.544, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 315, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.525, + "r_y0": 406.582, + "r_x1": 106.194, + "r_y1": 406.582, + "r_x2": 106.194, + "r_y2": 413.16, + "r_x3": 101.525, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 316, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.229, + "r_y0": 406.582, + "r_x1": 108.175, + "r_y1": 406.582, + "r_x2": 108.175, + "r_y2": 413.16, + "r_x3": 106.229, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 317, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.21, + "r_y0": 406.582, + "r_x1": 112.879, + "r_y1": 406.582, + "r_x2": 112.879, + "r_y2": 413.16, + "r_x3": 108.21, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 318, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.914, + "r_y0": 406.582, + "r_x1": 116.414, + "r_y1": 406.582, + "r_x2": 116.414, + "r_y2": 413.16, + "r_x3": 112.914, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 319, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 116.449, + "r_y0": 406.582, + "r_x1": 119.949, + "r_y1": 406.582, + "r_x2": 119.949, + "r_y2": 413.16, + "r_x3": 116.449, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 320, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 119.984, + "r_y0": 406.582, + "r_x1": 123.876, + "r_y1": 406.582, + "r_x2": 123.876, + "r_y2": 413.16, + "r_x3": 119.984, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 321, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 123.911, + "r_y0": 406.582, + "r_x1": 126.242, + "r_y1": 406.582, + "r_x2": 126.242, + "r_y2": 413.16, + "r_x3": 123.911, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 322, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.277, + "r_y0": 406.582, + "r_x1": 130.169, + "r_y1": 406.582, + "r_x2": 130.169, + "r_y2": 413.16, + "r_x3": 126.277, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 323, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.204, + "r_y0": 406.582, + "r_x1": 132.15, + "r_y1": 406.582, + "r_x2": 132.15, + "r_y2": 413.16, + "r_x3": 130.204, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 324, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.185, + "r_y0": 406.582, + "r_x1": 136.077, + "r_y1": 406.582, + "r_x2": 136.077, + "r_y2": 413.16, + "r_x3": 132.185, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 325, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 136.112, + "r_y0": 406.582, + "r_x1": 138.058, + "r_y1": 406.582, + "r_x2": 138.058, + "r_y2": 413.16, + "r_x3": 136.112, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 326, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.093, + "r_y0": 406.582, + "r_x1": 143.147, + "r_y1": 406.582, + "r_x2": 143.147, + "r_y2": 413.16, + "r_x3": 138.093, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 327, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 143.182, + "r_y0": 406.582, + "r_x1": 147.074, + "r_y1": 406.582, + "r_x2": 147.074, + "r_y2": 413.16, + "r_x3": 143.182, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 328, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.109, + "r_y0": 406.582, + "r_x1": 152.94, + "r_y1": 406.582, + "r_x2": 152.94, + "r_y2": 413.16, + "r_x3": 147.109, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 329, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.975, + "r_y0": 406.582, + "r_x1": 158.806, + "r_y1": 406.582, + "r_x2": 158.806, + "r_y2": 413.16, + "r_x3": 152.975, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 330, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.841, + "r_y0": 406.582, + "r_x1": 162.733, + "r_y1": 406.582, + "r_x2": 162.733, + "r_y2": 413.16, + "r_x3": 158.841, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 331, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.768, + "r_y0": 406.582, + "r_x1": 166.66, + "r_y1": 406.582, + "r_x2": 166.66, + "r_y2": 413.16, + "r_x3": 162.768, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 332, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.695, + "r_y0": 406.582, + "r_x1": 168.249, + "r_y1": 406.582, + "r_x2": 168.249, + "r_y2": 413.16, + "r_x3": 166.695, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 333, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.284, + "r_y0": 406.582, + "r_x1": 170.23, + "r_y1": 406.582, + "r_x2": 170.23, + "r_y2": 413.16, + "r_x3": 168.284, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 334, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.265, + "r_y0": 406.582, + "r_x1": 173.765, + "r_y1": 406.582, + "r_x2": 173.765, + "r_y2": 413.16, + "r_x3": 170.265, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 335, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.808, + "r_y0": 406.582, + "r_x1": 175.754, + "r_y1": 406.582, + "r_x2": 175.754, + "r_y2": 413.16, + "r_x3": 173.808, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 336, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.797, + "r_y0": 406.582, + "r_x1": 180.851, + "r_y1": 406.582, + "r_x2": 180.851, + "r_y2": 413.16, + "r_x3": 175.797, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 337, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.886, + "r_y0": 406.582, + "r_x1": 184.778, + "r_y1": 406.582, + "r_x2": 184.778, + "r_y2": 413.16, + "r_x3": 180.886, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 338, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.813, + "r_y0": 406.582, + "r_x1": 188.313, + "r_y1": 406.582, + "r_x2": 188.313, + "r_y2": 413.16, + "r_x3": 184.813, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 339, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.348, + "r_y0": 406.582, + "r_x1": 191.848, + "r_y1": 406.582, + "r_x2": 191.848, + "r_y2": 413.16, + "r_x3": 188.348, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 340, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.883, + "r_y0": 406.582, + "r_x1": 194.214, + "r_y1": 406.582, + "r_x2": 194.214, + "r_y2": 413.16, + "r_x3": 191.883, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 341, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.249, + "r_y0": 406.582, + "r_x1": 195.803, + "r_y1": 406.582, + "r_x2": 195.803, + "r_y2": 413.16, + "r_x3": 194.249, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 342, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.838, + "r_y0": 406.582, + "r_x1": 199.73, + "r_y1": 406.582, + "r_x2": 199.73, + "r_y2": 413.16, + "r_x3": 195.838, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 343, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.765, + "r_y0": 406.582, + "r_x1": 201.711, + "r_y1": 406.582, + "r_x2": 201.711, + "r_y2": 413.16, + "r_x3": 199.765, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 344, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.746, + "r_y0": 406.582, + "r_x1": 203.3, + "r_y1": 406.582, + "r_x2": 203.3, + "r_y2": 413.16, + "r_x3": 201.746, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 345, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.335, + "r_y0": 406.582, + "r_x1": 207.227, + "r_y1": 406.582, + "r_x2": 207.227, + "r_y2": 413.16, + "r_x3": 203.335, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 346, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 207.262, + "r_y0": 406.582, + "r_x1": 211.154, + "r_y1": 406.582, + "r_x2": 211.154, + "r_y2": 413.16, + "r_x3": 207.262, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 347, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 211.189, + "r_y0": 406.582, + "r_x1": 213.135, + "r_y1": 406.582, + "r_x2": 213.135, + "r_y2": 413.16, + "r_x3": 211.189, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 348, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.17, + "r_y0": 406.582, + "r_x1": 215.116, + "r_y1": 406.582, + "r_x2": 215.116, + "r_y2": 413.16, + "r_x3": 213.17, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 349, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.151, + "r_y0": 406.582, + "r_x1": 220.205, + "r_y1": 406.582, + "r_x2": 220.205, + "r_y2": 413.16, + "r_x3": 215.151, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 350, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.24, + "r_y0": 406.582, + "r_x1": 224.909, + "r_y1": 406.582, + "r_x2": 224.909, + "r_y2": 413.16, + "r_x3": 220.24, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 351, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.944, + "r_y0": 406.582, + "r_x1": 230.775, + "r_y1": 406.582, + "r_x2": 230.775, + "r_y2": 413.16, + "r_x3": 224.944, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 352, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 230.81, + "r_y0": 406.582, + "r_x1": 234.702, + "r_y1": 406.582, + "r_x2": 234.702, + "r_y2": 413.16, + "r_x3": 230.81, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 353, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.737, + "r_y0": 406.582, + "r_x1": 236.683, + "r_y1": 406.582, + "r_x2": 236.683, + "r_y2": 413.16, + "r_x3": 234.737, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 354, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.718, + "r_y0": 406.582, + "r_x1": 241.772, + "r_y1": 406.582, + "r_x2": 241.772, + "r_y2": 413.16, + "r_x3": 236.718, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 355, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 241.807, + "r_y0": 406.582, + "r_x1": 245.699, + "r_y1": 406.582, + "r_x2": 245.699, + "r_y2": 413.16, + "r_x3": 241.807, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 356, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 245.734, + "r_y0": 406.582, + "r_x1": 247.68, + "r_y1": 406.582, + "r_x2": 247.68, + "r_y2": 413.16, + "r_x3": 245.734, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 357, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.715, + "r_y0": 406.582, + "r_x1": 251.607, + "r_y1": 406.582, + "r_x2": 251.607, + "r_y2": 413.16, + "r_x3": 247.715, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 358, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.642, + "r_y0": 406.582, + "r_x1": 255.534, + "r_y1": 406.582, + "r_x2": 255.534, + "r_y2": 413.16, + "r_x3": 251.642, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 359, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 255.569, + "r_y0": 406.582, + "r_x1": 259.461, + "r_y1": 406.582, + "r_x2": 259.461, + "r_y2": 413.16, + "r_x3": 255.569, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 360, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.496, + "r_y0": 406.582, + "r_x1": 261.827, + "r_y1": 406.582, + "r_x2": 261.827, + "r_y2": 413.16, + "r_x3": 259.496, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 361, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.872, + "r_y0": 406.582, + "r_x1": 265.372, + "r_y1": 406.582, + "r_x2": 265.372, + "r_y2": 413.16, + "r_x3": 261.872, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 362, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.407, + "r_y0": 406.582, + "r_x1": 267.353, + "r_y1": 406.582, + "r_x2": 267.353, + "r_y2": 413.16, + "r_x3": 265.407, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 363, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.388, + "r_y0": 406.582, + "r_x1": 271.28, + "r_y1": 406.582, + "r_x2": 271.28, + "r_y2": 413.16, + "r_x3": 267.388, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 364, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.315, + "r_y0": 406.582, + "r_x1": 273.646, + "r_y1": 406.582, + "r_x2": 273.646, + "r_y2": 413.16, + "r_x3": 271.315, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 365, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.681, + "r_y0": 406.582, + "r_x1": 275.627, + "r_y1": 406.582, + "r_x2": 275.627, + "r_y2": 413.16, + "r_x3": 273.681, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 366, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.662, + "r_y0": 406.582, + "r_x1": 280.331, + "r_y1": 406.582, + "r_x2": 280.331, + "r_y2": 413.16, + "r_x3": 275.662, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 367, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 280.366, + "r_y0": 406.582, + "r_x1": 285.42, + "r_y1": 406.582, + "r_x2": 285.42, + "r_y2": 413.16, + "r_x3": 280.366, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 368, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 285.455, + "r_y0": 406.582, + "r_x1": 290.509, + "r_y1": 406.582, + "r_x2": 290.509, + "r_y2": 413.16, + "r_x3": 285.455, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 369, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 290.544, + "r_y0": 406.582, + "r_x1": 295.598, + "r_y1": 406.582, + "r_x2": 295.598, + "r_y2": 413.16, + "r_x3": 290.544, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 370, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 295.633, + "r_y0": 406.582, + "r_x1": 297.579, + "r_y1": 406.582, + "r_x2": 297.579, + "r_y2": 413.16, + "r_x3": 295.633, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 371, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 297.614, + "r_y0": 406.582, + "r_x1": 299.56, + "r_y1": 406.582, + "r_x2": 299.56, + "r_y2": 413.16, + "r_x3": 297.614, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 372, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.635, + "r_y0": 397.58, + "r_x1": 81.527, + "r_y1": 397.58, + "r_x2": 81.527, + "r_y2": 404.158, + "r_x3": 77.635, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 373, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.562, + "r_y0": 397.58, + "r_x1": 85.454, + "r_y1": 397.58, + "r_x2": 85.454, + "r_y2": 404.158, + "r_x3": 81.562, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 374, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.489, + "r_y0": 397.58, + "r_x1": 89.381, + "r_y1": 397.58, + "r_x2": 89.381, + "r_y2": 404.158, + "r_x3": 85.489, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 375, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.416, + "r_y0": 397.58, + "r_x1": 90.97, + "r_y1": 397.58, + "r_x2": 90.97, + "r_y2": 404.158, + "r_x3": 89.416, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 376, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.005, + "r_y0": 397.58, + "r_x1": 92.559, + "r_y1": 397.58, + "r_x2": 92.559, + "r_y2": 404.158, + "r_x3": 91.005, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 377, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.594, + "r_y0": 397.58, + "r_x1": 96.094, + "r_y1": 397.58, + "r_x2": 96.094, + "r_y2": 404.158, + "r_x3": 92.594, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 378, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.129, + "r_y0": 397.58, + "r_x1": 100.021, + "r_y1": 397.58, + "r_x2": 100.021, + "r_y2": 404.158, + "r_x3": 96.129, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 379, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 100.056, + "r_y0": 397.58, + "r_x1": 103.948, + "r_y1": 397.58, + "r_x2": 103.948, + "r_y2": 404.158, + "r_x3": 100.056, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 380, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.983, + "r_y0": 397.58, + "r_x1": 105.537, + "r_y1": 397.58, + "r_x2": 105.537, + "r_y2": 404.158, + "r_x3": 103.983, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 381, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.572, + "r_y0": 397.58, + "r_x1": 109.464, + "r_y1": 397.58, + "r_x2": 109.464, + "r_y2": 404.158, + "r_x3": 105.572, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 382, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 109.499, + "r_y0": 397.58, + "r_x1": 111.445, + "r_y1": 397.58, + "r_x2": 111.445, + "r_y2": 404.158, + "r_x3": 109.499, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 383, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 111.441, + "r_y0": 397.58, + "r_x1": 113.772, + "r_y1": 397.58, + "r_x2": 113.772, + "r_y2": 404.158, + "r_x3": 111.441, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 384, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.919, + "r_y0": 397.58, + "r_x1": 115.473, + "r_y1": 397.58, + "r_x2": 115.473, + "r_y2": 404.158, + "r_x3": 113.919, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 385, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 115.62, + "r_y0": 397.58, + "r_x1": 119.512, + "r_y1": 397.58, + "r_x2": 119.512, + "r_y2": 404.158, + "r_x3": 115.62, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 386, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 119.659, + "r_y0": 397.58, + "r_x1": 123.159, + "r_y1": 397.58, + "r_x2": 123.159, + "r_y2": 404.158, + "r_x3": 119.659, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 387, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 123.306, + "r_y0": 397.58, + "r_x1": 124.86, + "r_y1": 397.58, + "r_x2": 124.86, + "r_y2": 404.158, + "r_x3": 123.306, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 388, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.007, + "r_y0": 397.58, + "r_x1": 128.899, + "r_y1": 397.58, + "r_x2": 128.899, + "r_y2": 404.158, + "r_x3": 125.007, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 389, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 129.046, + "r_y0": 397.58, + "r_x1": 132.938, + "r_y1": 397.58, + "r_x2": 132.938, + "r_y2": 404.158, + "r_x3": 129.046, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 390, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 133.085, + "r_y0": 397.58, + "r_x1": 134.639, + "r_y1": 397.58, + "r_x2": 134.639, + "r_y2": 404.158, + "r_x3": 133.085, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 391, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.786, + "r_y0": 397.58, + "r_x1": 138.678, + "r_y1": 397.58, + "r_x2": 138.678, + "r_y2": 404.158, + "r_x3": 134.786, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 392, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.825, + "r_y0": 397.58, + "r_x1": 142.717, + "r_y1": 397.58, + "r_x2": 142.717, + "r_y2": 404.158, + "r_x3": 138.825, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 393, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.864, + "r_y0": 397.58, + "r_x1": 144.81, + "r_y1": 397.58, + "r_x2": 144.81, + "r_y2": 404.158, + "r_x3": 142.864, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 394, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.739, + "r_y0": 397.58, + "r_x1": 150.57, + "r_y1": 397.58, + "r_x2": 150.57, + "r_y2": 404.158, + "r_x3": 144.739, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 395, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.717, + "r_y0": 397.58, + "r_x1": 154.609, + "r_y1": 397.58, + "r_x2": 154.609, + "r_y2": 404.158, + "r_x3": 150.717, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 396, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.756, + "r_y0": 397.58, + "r_x1": 158.648, + "r_y1": 397.58, + "r_x2": 158.648, + "r_y2": 404.158, + "r_x3": 154.756, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 397, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.795, + "r_y0": 397.58, + "r_x1": 162.687, + "r_y1": 397.58, + "r_x2": 162.687, + "r_y2": 404.158, + "r_x3": 158.795, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 398, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.834, + "r_y0": 397.58, + "r_x1": 164.388, + "r_y1": 397.58, + "r_x2": 164.388, + "r_y2": 404.158, + "r_x3": 162.834, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 399, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.535, + "r_y0": 397.58, + "r_x1": 166.481, + "r_y1": 397.58, + "r_x2": 166.481, + "r_y2": 404.158, + "r_x3": 164.535, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 400, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.628, + "r_y0": 397.58, + "r_x1": 170.128, + "r_y1": 397.58, + "r_x2": 170.128, + "r_y2": 404.158, + "r_x3": 166.628, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 401, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.275, + "r_y0": 397.58, + "r_x1": 174.167, + "r_y1": 397.58, + "r_x2": 174.167, + "r_y2": 404.158, + "r_x3": 170.275, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 402, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.314, + "r_y0": 397.58, + "r_x1": 176.645, + "r_y1": 397.58, + "r_x2": 176.645, + "r_y2": 404.158, + "r_x3": 174.314, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 403, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.792, + "r_y0": 397.58, + "r_x1": 178.346, + "r_y1": 397.58, + "r_x2": 178.346, + "r_y2": 404.158, + "r_x3": 176.792, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 404, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.493, + "r_y0": 397.58, + "r_x1": 182.385, + "r_y1": 397.58, + "r_x2": 182.385, + "r_y2": 404.158, + "r_x3": 178.493, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 405, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.532, + "r_y0": 397.58, + "r_x1": 184.086, + "r_y1": 397.58, + "r_x2": 184.086, + "r_y2": 404.158, + "r_x3": 182.532, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 406, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.233, + "r_y0": 397.58, + "r_x1": 186.179, + "r_y1": 397.58, + "r_x2": 186.179, + "r_y2": 404.158, + "r_x3": 184.233, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 407, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.108, + "r_y0": 397.58, + "r_x1": 190.0, + "r_y1": 397.58, + "r_x2": 190.0, + "r_y2": 404.158, + "r_x3": 186.108, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 408, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.147, + "r_y0": 397.58, + "r_x1": 194.039, + "r_y1": 397.58, + "r_x2": 194.039, + "r_y2": 404.158, + "r_x3": 190.147, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 409, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.186, + "r_y0": 397.58, + "r_x1": 200.017, + "r_y1": 397.58, + "r_x2": 200.017, + "r_y2": 404.158, + "r_x3": 194.186, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 410, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.164, + "r_y0": 397.58, + "r_x1": 204.056, + "r_y1": 397.58, + "r_x2": 204.056, + "r_y2": 404.158, + "r_x3": 200.164, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 411, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.203, + "r_y0": 397.58, + "r_x1": 208.095, + "r_y1": 397.58, + "r_x2": 208.095, + "r_y2": 404.158, + "r_x3": 204.203, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 412, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.242, + "r_y0": 397.58, + "r_x1": 210.573, + "r_y1": 397.58, + "r_x2": 210.573, + "r_y2": 404.158, + "r_x3": 208.242, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 413, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.72, + "r_y0": 397.58, + "r_x1": 212.666, + "r_y1": 397.58, + "r_x2": 212.666, + "r_y2": 404.158, + "r_x3": 210.72, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 414, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.813, + "r_y0": 397.58, + "r_x1": 217.482, + "r_y1": 397.58, + "r_x2": 217.482, + "r_y2": 404.158, + "r_x3": 212.813, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 415, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.629, + "r_y0": 397.58, + "r_x1": 222.683, + "r_y1": 397.58, + "r_x2": 222.683, + "r_y2": 404.158, + "r_x3": 217.629, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 416, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.83, + "r_y0": 397.58, + "r_x1": 227.884, + "r_y1": 397.58, + "r_x2": 227.884, + "r_y2": 404.158, + "r_x3": 222.83, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 417, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.031, + "r_y0": 397.58, + "r_x1": 233.085, + "r_y1": 397.58, + "r_x2": 233.085, + "r_y2": 404.158, + "r_x3": 228.031, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 418, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 233.232, + "r_y0": 397.58, + "r_x1": 235.178, + "r_y1": 397.58, + "r_x2": 235.178, + "r_y2": 404.158, + "r_x3": 233.232, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 419, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.325, + "r_y0": 397.58, + "r_x1": 240.379, + "r_y1": 397.58, + "r_x2": 240.379, + "r_y2": 404.158, + "r_x3": 235.325, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 420, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.526, + "r_y0": 397.58, + "r_x1": 245.195, + "r_y1": 397.58, + "r_x2": 245.195, + "r_y2": 404.158, + "r_x3": 240.526, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 421, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 245.342, + "r_y0": 397.58, + "r_x1": 251.173, + "r_y1": 397.58, + "r_x2": 251.173, + "r_y2": 404.158, + "r_x3": 245.342, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 422, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.32, + "r_y0": 397.58, + "r_x1": 255.212, + "r_y1": 397.58, + "r_x2": 255.212, + "r_y2": 404.158, + "r_x3": 251.32, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 423, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 255.359, + "r_y0": 397.58, + "r_x1": 257.305, + "r_y1": 397.58, + "r_x2": 257.305, + "r_y2": 404.158, + "r_x3": 255.359, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 424, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.345, + "r_y0": 397.58, + "r_x1": 262.399, + "r_y1": 397.58, + "r_x2": 262.399, + "r_y2": 404.158, + "r_x3": 257.345, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 425, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 262.546, + "r_y0": 397.58, + "r_x1": 266.438, + "r_y1": 397.58, + "r_x2": 266.438, + "r_y2": 404.158, + "r_x3": 262.546, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 426, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.585, + "r_y0": 397.58, + "r_x1": 268.531, + "r_y1": 397.58, + "r_x2": 268.531, + "r_y2": 404.158, + "r_x3": 266.585, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 427, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 268.678, + "r_y0": 397.58, + "r_x1": 272.57, + "r_y1": 397.58, + "r_x2": 272.57, + "r_y2": 404.158, + "r_x3": 268.678, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 428, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.717, + "r_y0": 397.58, + "r_x1": 276.609, + "r_y1": 397.58, + "r_x2": 276.609, + "r_y2": 404.158, + "r_x3": 272.717, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 429, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 276.756, + "r_y0": 397.58, + "r_x1": 280.648, + "r_y1": 397.58, + "r_x2": 280.648, + "r_y2": 404.158, + "r_x3": 276.756, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 430, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 280.795, + "r_y0": 397.58, + "r_x1": 283.126, + "r_y1": 397.58, + "r_x2": 283.126, + "r_y2": 404.158, + "r_x3": 280.795, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 431, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 283.273, + "r_y0": 397.58, + "r_x1": 286.773, + "r_y1": 397.58, + "r_x2": 286.773, + "r_y2": 404.158, + "r_x3": 283.273, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 432, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 286.92, + "r_y0": 397.58, + "r_x1": 289.251, + "r_y1": 397.58, + "r_x2": 289.251, + "r_y2": 404.158, + "r_x3": 286.92, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_1", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 433, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 311.173, + "r_y0": 401.44, + "r_x1": 316.227, + "r_y1": 401.44, + "r_x2": 316.227, + "r_y2": 408.018, + "r_x3": 311.173, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 434, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 316.262, + "r_y0": 401.44, + "r_x1": 320.154, + "r_y1": 401.44, + "r_x2": 320.154, + "r_y2": 408.018, + "r_x3": 316.262, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 435, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 320.189, + "r_y0": 401.44, + "r_x1": 324.081, + "r_y1": 401.44, + "r_x2": 324.081, + "r_y2": 408.018, + "r_x3": 320.189, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 436, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 324.116, + "r_y0": 401.44, + "r_x1": 328.008, + "r_y1": 401.44, + "r_x2": 328.008, + "r_y2": 408.018, + "r_x3": 324.116, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 437, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 328.043, + "r_y0": 401.44, + "r_x1": 329.989, + "r_y1": 401.44, + "r_x2": 329.989, + "r_y2": 408.018, + "r_x3": 328.043, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 438, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 330.024, + "r_y0": 401.44, + "r_x1": 332.355, + "r_y1": 401.44, + "r_x2": 332.355, + "r_y2": 408.018, + "r_x3": 330.024, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 439, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 332.39, + "r_y0": 401.44, + "r_x1": 335.89, + "r_y1": 401.44, + "r_x2": 335.89, + "r_y2": 408.018, + "r_x3": 332.39, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 440, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 335.925, + "r_y0": 401.44, + "r_x1": 337.871, + "r_y1": 401.44, + "r_x2": 337.871, + "r_y2": 408.018, + "r_x3": 335.925, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 441, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 337.906, + "r_y0": 401.44, + "r_x1": 341.798, + "r_y1": 401.44, + "r_x2": 341.798, + "r_y2": 408.018, + "r_x3": 337.906, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 442, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 341.833, + "r_y0": 401.44, + "r_x1": 343.779, + "r_y1": 401.44, + "r_x2": 343.779, + "r_y2": 408.018, + "r_x3": 341.833, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 443, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 343.814, + "r_y0": 401.44, + "r_x1": 345.76, + "r_y1": 401.44, + "r_x2": 345.76, + "r_y2": 408.018, + "r_x3": 343.814, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 444, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.795, + "r_y0": 401.44, + "r_x1": 351.626, + "r_y1": 401.44, + "r_x2": 351.626, + "r_y2": 408.018, + "r_x3": 345.795, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 445, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 351.661, + "r_y0": 401.44, + "r_x1": 355.553, + "r_y1": 401.44, + "r_x2": 355.553, + "r_y2": 408.018, + "r_x3": 351.661, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 446, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 355.588, + "r_y0": 401.44, + "r_x1": 359.48, + "r_y1": 401.44, + "r_x2": 359.48, + "r_y2": 408.018, + "r_x3": 355.588, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 447, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 359.515, + "r_y0": 401.44, + "r_x1": 363.407, + "r_y1": 401.44, + "r_x2": 363.407, + "r_y2": 408.018, + "r_x3": 359.515, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 448, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 363.442, + "r_y0": 401.44, + "r_x1": 365.388, + "r_y1": 401.44, + "r_x2": 365.388, + "r_y2": 408.018, + "r_x3": 363.442, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 449, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 365.423, + "r_y0": 401.44, + "r_x1": 369.315, + "r_y1": 401.44, + "r_x2": 369.315, + "r_y2": 408.018, + "r_x3": 365.423, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 450, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 369.35, + "r_y0": 401.44, + "r_x1": 372.85, + "r_y1": 401.44, + "r_x2": 372.85, + "r_y2": 408.018, + "r_x3": 369.35, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 451, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 372.885, + "r_y0": 401.44, + "r_x1": 374.831, + "r_y1": 401.44, + "r_x2": 374.831, + "r_y2": 408.018, + "r_x3": 372.885, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 452, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 374.866, + "r_y0": 401.44, + "r_x1": 378.758, + "r_y1": 401.44, + "r_x2": 378.758, + "r_y2": 408.018, + "r_x3": 374.866, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 453, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 378.793, + "r_y0": 401.44, + "r_x1": 381.124, + "r_y1": 401.44, + "r_x2": 381.124, + "r_y2": 408.018, + "r_x3": 378.793, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 454, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 381.159, + "r_y0": 401.44, + "r_x1": 385.051, + "r_y1": 401.44, + "r_x2": 385.051, + "r_y2": 408.018, + "r_x3": 381.159, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 455, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.085, + "r_y0": 405.941, + "r_x1": 403.531, + "r_y1": 405.941, + "r_x2": 403.531, + "r_y2": 412.519, + "r_x3": 398.085, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Q", + "orig": "Q", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 456, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 403.601, + "r_y0": 405.941, + "r_x1": 407.493, + "r_y1": 405.941, + "r_x2": 407.493, + "r_y2": 412.519, + "r_x3": 403.601, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 457, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.563, + "r_y0": 405.941, + "r_x1": 411.455, + "r_y1": 405.941, + "r_x2": 411.455, + "r_y2": 412.519, + "r_x3": 407.563, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 458, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 411.525, + "r_y0": 405.941, + "r_x1": 415.417, + "r_y1": 405.941, + "r_x2": 415.417, + "r_y2": 412.519, + "r_x3": 411.525, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 459, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.487, + "r_y0": 405.941, + "r_x1": 417.433, + "r_y1": 405.941, + "r_x2": 417.433, + "r_y2": 412.519, + "r_x3": 415.487, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 460, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.503, + "r_y0": 405.941, + "r_x1": 419.057, + "r_y1": 405.941, + "r_x2": 419.057, + "r_y2": 412.519, + "r_x3": 417.503, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 461, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.127, + "r_y0": 405.941, + "r_x1": 421.073, + "r_y1": 405.941, + "r_x2": 421.073, + "r_y2": 412.519, + "r_x3": 419.127, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 462, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 421.143, + "r_y0": 405.941, + "r_x1": 424.643, + "r_y1": 405.941, + "r_x2": 424.643, + "r_y2": 412.519, + "r_x3": 421.143, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 463, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 424.713, + "r_y0": 405.941, + "r_x1": 426.659, + "r_y1": 405.941, + "r_x2": 426.659, + "r_y2": 412.519, + "r_x3": 424.713, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 464, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 426.729, + "r_y0": 405.941, + "r_x1": 431.783, + "r_y1": 405.941, + "r_x2": 431.783, + "r_y2": 412.519, + "r_x3": 426.729, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 465, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 431.853, + "r_y0": 405.941, + "r_x1": 435.745, + "r_y1": 405.941, + "r_x2": 435.745, + "r_y2": 412.519, + "r_x3": 431.853, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 466, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 435.815, + "r_y0": 405.941, + "r_x1": 437.369, + "r_y1": 405.941, + "r_x2": 437.369, + "r_y2": 412.519, + "r_x3": 435.815, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 467, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 437.439, + "r_y0": 405.941, + "r_x1": 439.385, + "r_y1": 405.941, + "r_x2": 439.385, + "r_y2": 412.519, + "r_x3": 437.439, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 468, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.387, + "r_y0": 405.97, + "r_x1": 441.543, + "r_y1": 405.97, + "r_x2": 441.543, + "r_y2": 412.785, + "r_x3": 439.387, + "r_y3": 412.785, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 469, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 401.984, + "r_y0": 396.939, + "r_x1": 405.876, + "r_y1": 396.939, + "r_x2": 405.876, + "r_y2": 403.517, + "r_x3": 401.984, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 470, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 405.911, + "r_y0": 396.939, + "r_x1": 407.857, + "r_y1": 396.939, + "r_x2": 407.857, + "r_y2": 403.517, + "r_x3": 405.911, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 471, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.892, + "r_y0": 396.939, + "r_x1": 409.838, + "r_y1": 396.939, + "r_x2": 409.838, + "r_y2": 403.517, + "r_x3": 407.892, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 472, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.873, + "r_y0": 396.939, + "r_x1": 415.704, + "r_y1": 396.939, + "r_x2": 415.704, + "r_y2": 403.517, + "r_x3": 409.873, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 473, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.739, + "r_y0": 396.939, + "r_x1": 419.631, + "r_y1": 396.939, + "r_x2": 419.631, + "r_y2": 403.517, + "r_x3": 415.739, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 474, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.666, + "r_y0": 396.939, + "r_x1": 423.558, + "r_y1": 396.939, + "r_x2": 423.558, + "r_y2": 403.517, + "r_x3": 419.666, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 475, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 423.593, + "r_y0": 396.939, + "r_x1": 427.093, + "r_y1": 396.939, + "r_x2": 427.093, + "r_y2": 403.517, + "r_x3": 423.593, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 476, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.128, + "r_y0": 396.939, + "r_x1": 431.02, + "r_y1": 396.939, + "r_x2": 431.02, + "r_y2": 403.517, + "r_x3": 427.128, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 477, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 431.055, + "r_y0": 396.939, + "r_x1": 433.386, + "r_y1": 396.939, + "r_x2": 433.386, + "r_y2": 403.517, + "r_x3": 431.055, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 478, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 433.421, + "r_y0": 396.939, + "r_x1": 437.313, + "r_y1": 396.939, + "r_x2": 437.313, + "r_y2": 403.517, + "r_x3": 433.421, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 479, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 461.603, + "r_y0": 401.44, + "r_x1": 466.657, + "r_y1": 401.44, + "r_x2": 466.657, + "r_y2": 408.018, + "r_x3": 461.603, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 480, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 466.685, + "r_y0": 401.44, + "r_x1": 470.577, + "r_y1": 401.44, + "r_x2": 470.577, + "r_y2": 408.018, + "r_x3": 466.685, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 481, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 470.605, + "r_y0": 401.44, + "r_x1": 472.159, + "r_y1": 401.44, + "r_x2": 472.159, + "r_y2": 408.018, + "r_x3": 470.605, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 482, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 472.187, + "r_y0": 401.44, + "r_x1": 474.133, + "r_y1": 401.44, + "r_x2": 474.133, + "r_y2": 408.018, + "r_x3": 472.187, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 483, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 474.161, + "r_y0": 401.44, + "r_x1": 476.107, + "r_y1": 401.44, + "r_x2": 476.107, + "r_y2": 408.018, + "r_x3": 474.161, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 484, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 476.162, + "r_y0": 401.44, + "r_x1": 480.831, + "r_y1": 401.44, + "r_x2": 480.831, + "r_y2": 408.018, + "r_x3": 476.162, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 485, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 480.859, + "r_y0": 401.44, + "r_x1": 483.19, + "r_y1": 401.44, + "r_x2": 483.19, + "r_y2": 408.018, + "r_x3": 480.859, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 486, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 483.206, + "r_y0": 401.439, + "r_x1": 484.76, + "r_y1": 401.439, + "r_x2": 484.76, + "r_y2": 408.017, + "r_x3": 483.206, + "r_y3": 408.017, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 487, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 484.788, + "r_y0": 401.439, + "r_x1": 488.288, + "r_y1": 401.439, + "r_x2": 488.288, + "r_y2": 408.017, + "r_x3": 484.788, + "r_y3": 408.017, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 488, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 488.316, + "r_y0": 401.439, + "r_x1": 492.208, + "r_y1": 401.439, + "r_x2": 492.208, + "r_y2": 408.017, + "r_x3": 488.316, + "r_y3": 408.017, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 489, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 521.222, + "r_y0": 401.44, + "r_x1": 525.499, + "r_y1": 401.44, + "r_x2": 525.499, + "r_y2": 408.018, + "r_x3": 521.222, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 490, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 525.646, + "r_y0": 401.44, + "r_x1": 529.538, + "r_y1": 401.44, + "r_x2": 529.538, + "r_y2": 408.018, + "r_x3": 525.646, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 491, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 529.685, + "r_y0": 401.44, + "r_x1": 531.631, + "r_y1": 401.44, + "r_x2": 531.631, + "r_y2": 408.018, + "r_x3": 529.685, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 492, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 531.778, + "r_y0": 401.44, + "r_x1": 535.67, + "r_y1": 401.44, + "r_x2": 535.67, + "r_y2": 408.018, + "r_x3": 531.778, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 493, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.817, + "r_y0": 401.44, + "r_x1": 537.371, + "r_y1": 401.44, + "r_x2": 537.371, + "r_y2": 408.018, + "r_x3": 535.817, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 494, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.815, + "r_y0": 192.953, + "r_x1": 404.336, + "r_y1": 192.953, + "r_x2": 404.336, + "r_y2": 199.768, + "r_x3": 400.815, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 495, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.238, + "r_y0": 192.953, + "r_x1": 408.277, + "r_y1": 192.953, + "r_x2": 408.277, + "r_y2": 199.768, + "r_x3": 404.238, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 496, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 408.445, + "r_y0": 192.953, + "r_x1": 411.777, + "r_y1": 192.953, + "r_x2": 411.777, + "r_y2": 199.768, + "r_x3": 408.445, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 497, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 411.938, + "r_y0": 192.953, + "r_x1": 415.228, + "r_y1": 192.953, + "r_x2": 415.228, + "r_y2": 199.768, + "r_x3": 411.938, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 498, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.326, + "r_y0": 192.953, + "r_x1": 417.16, + "r_y1": 192.953, + "r_x2": 417.16, + "r_y2": 199.768, + "r_x3": 415.326, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 499, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.202, + "r_y0": 192.953, + "r_x1": 420.898, + "r_y1": 192.953, + "r_x2": 420.898, + "r_y2": 199.768, + "r_x3": 417.202, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 500, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 421.045, + "r_y0": 192.953, + "r_x1": 425.105, + "r_y1": 192.953, + "r_x2": 425.105, + "r_y2": 199.768, + "r_x3": 421.045, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 501, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.14, + "r_y0": 192.953, + "r_x1": 427.296, + "r_y1": 192.953, + "r_x2": 427.296, + "r_y2": 199.768, + "r_x3": 425.14, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 502, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.331, + "r_y0": 192.953, + "r_x1": 432.35, + "r_y1": 192.953, + "r_x2": 432.35, + "r_y2": 199.768, + "r_x3": 427.331, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 503, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.42, + "r_y0": 192.953, + "r_x1": 436.354, + "r_y1": 192.953, + "r_x2": 436.354, + "r_y2": 199.768, + "r_x3": 432.42, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 504, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.459, + "r_y0": 192.953, + "r_x1": 439.252, + "r_y1": 192.953, + "r_x2": 439.252, + "r_y2": 199.768, + "r_x3": 436.459, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 505, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.357, + "r_y0": 192.953, + "r_x1": 441.037, + "r_y1": 192.953, + "r_x2": 441.037, + "r_y2": 199.768, + "r_x3": 439.357, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 506, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.212, + "r_y0": 192.953, + "r_x1": 444.005, + "r_y1": 192.953, + "r_x2": 444.005, + "r_y2": 199.768, + "r_x3": 441.212, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 507, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.154, + "r_y0": 176.951, + "r_x1": 407.5, + "r_y1": 176.951, + "r_x2": 407.5, + "r_y2": 183.766, + "r_x3": 404.154, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 508, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.458, + "r_y0": 176.951, + "r_x1": 409.803, + "r_y1": 176.951, + "r_x2": 409.803, + "r_y2": 183.766, + "r_x3": 407.458, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 509, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.845, + "r_y0": 176.951, + "r_x1": 413.478, + "r_y1": 176.951, + "r_x2": 413.478, + "r_y2": 183.766, + "r_x3": 409.845, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 510, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 413.569, + "r_y0": 176.951, + "r_x1": 415.403, + "r_y1": 176.951, + "r_x2": 415.403, + "r_y2": 183.766, + "r_x3": 413.569, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 511, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.487, + "r_y0": 176.951, + "r_x1": 419.547, + "r_y1": 176.951, + "r_x2": 419.547, + "r_y2": 183.766, + "r_x3": 415.487, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 512, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.631, + "r_y0": 176.951, + "r_x1": 423.327, + "r_y1": 176.951, + "r_x2": 423.327, + "r_y2": 183.766, + "r_x3": 419.631, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 513, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 423.425, + "r_y0": 176.951, + "r_x1": 425.105, + "r_y1": 176.951, + "r_x2": 425.105, + "r_y2": 183.766, + "r_x3": 423.425, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 514, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.14, + "r_y0": 176.951, + "r_x1": 427.296, + "r_y1": 176.951, + "r_x2": 427.296, + "r_y2": 183.766, + "r_x3": 425.14, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 515, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.331, + "r_y0": 176.951, + "r_x1": 432.35, + "r_y1": 176.951, + "r_x2": 432.35, + "r_y2": 183.766, + "r_x3": 427.331, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 516, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.42, + "r_y0": 176.951, + "r_x1": 436.354, + "r_y1": 176.951, + "r_x2": 436.354, + "r_y2": 183.766, + "r_x3": 432.42, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 517, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.459, + "r_y0": 176.951, + "r_x1": 439.252, + "r_y1": 176.951, + "r_x2": 439.252, + "r_y2": 183.766, + "r_x3": 436.459, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 518, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.357, + "r_y0": 176.951, + "r_x1": 441.037, + "r_y1": 176.951, + "r_x2": 441.037, + "r_y2": 183.766, + "r_x3": 439.357, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 519, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.212, + "r_y0": 176.951, + "r_x1": 444.005, + "r_y1": 176.951, + "r_x2": 444.005, + "r_y2": 183.766, + "r_x3": 441.212, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 520, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 360.131, + "r_y0": 160.949, + "r_x1": 366.165, + "r_y1": 160.949, + "r_x2": 366.165, + "r_y2": 167.764, + "r_x3": 360.131, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 521, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 366.361, + "r_y0": 160.949, + "r_x1": 368.041, + "r_y1": 160.949, + "r_x2": 368.041, + "r_y2": 167.764, + "r_x3": 366.361, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 522, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.216, + "r_y0": 160.949, + "r_x1": 371.912, + "r_y1": 160.949, + "r_x2": 371.912, + "r_y2": 167.764, + "r_x3": 368.216, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 523, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 372.045, + "r_y0": 160.949, + "r_x1": 375.678, + "r_y1": 160.949, + "r_x2": 375.678, + "r_y2": 167.764, + "r_x3": 372.045, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 524, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 375.832, + "r_y0": 160.949, + "r_x1": 378.177, + "r_y1": 160.949, + "r_x2": 378.177, + "r_y2": 167.764, + "r_x3": 375.832, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 525, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 378.212, + "r_y0": 160.949, + "r_x1": 380.368, + "r_y1": 160.949, + "r_x2": 380.368, + "r_y2": 167.764, + "r_x3": 378.212, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 526, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 380.403, + "r_y0": 160.949, + "r_x1": 383.693, + "r_y1": 160.949, + "r_x2": 383.693, + "r_y2": 167.764, + "r_x3": 380.403, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 527, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 383.469, + "r_y0": 160.949, + "r_x1": 385.814, + "r_y1": 160.949, + "r_x2": 385.814, + "r_y2": 167.764, + "r_x3": 383.469, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 528, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 385.842, + "r_y0": 160.949, + "r_x1": 389.881, + "r_y1": 160.949, + "r_x2": 389.881, + "r_y2": 167.764, + "r_x3": 385.842, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 529, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 389.986, + "r_y0": 160.949, + "r_x1": 393.682, + "r_y1": 160.949, + "r_x2": 393.682, + "r_y2": 167.764, + "r_x3": 389.986, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 530, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 393.745, + "r_y0": 160.949, + "r_x1": 396.538, + "r_y1": 160.949, + "r_x2": 396.538, + "r_y2": 167.764, + "r_x3": 393.745, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 531, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 396.664, + "r_y0": 160.949, + "r_x1": 400.703, + "r_y1": 160.949, + "r_x2": 400.703, + "r_y2": 167.764, + "r_x3": 396.664, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 532, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.892, + "r_y0": 160.949, + "r_x1": 404.826, + "r_y1": 160.949, + "r_x2": 404.826, + "r_y2": 167.764, + "r_x3": 400.892, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 533, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.973, + "r_y0": 160.949, + "r_x1": 407.318, + "r_y1": 160.949, + "r_x2": 407.318, + "r_y2": 167.764, + "r_x3": 404.973, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 534, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.598, + "r_y0": 160.949, + "r_x1": 409.278, + "r_y1": 160.949, + "r_x2": 409.278, + "r_y2": 167.764, + "r_x3": 407.598, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 535, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.446, + "r_y0": 160.949, + "r_x1": 413.485, + "r_y1": 160.949, + "r_x2": 413.485, + "r_y2": 167.764, + "r_x3": 409.446, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 536, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 413.632, + "r_y0": 160.949, + "r_x1": 415.312, + "r_y1": 160.949, + "r_x2": 415.312, + "r_y2": 167.764, + "r_x3": 413.632, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 537, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.424, + "r_y0": 160.949, + "r_x1": 417.258, + "r_y1": 160.949, + "r_x2": 417.258, + "r_y2": 167.764, + "r_x3": 415.424, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 538, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.328, + "r_y0": 160.949, + "r_x1": 421.262, + "r_y1": 160.949, + "r_x2": 421.262, + "r_y2": 167.764, + "r_x3": 417.328, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 539, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 421.395, + "r_y0": 160.949, + "r_x1": 425.091, + "r_y1": 160.949, + "r_x2": 425.091, + "r_y2": 167.764, + "r_x3": 421.395, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 540, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.126, + "r_y0": 160.949, + "r_x1": 427.282, + "r_y1": 160.949, + "r_x2": 427.282, + "r_y2": 167.764, + "r_x3": 425.126, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 541, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.317, + "r_y0": 160.949, + "r_x1": 432.336, + "r_y1": 160.949, + "r_x2": 432.336, + "r_y2": 167.764, + "r_x3": 427.317, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 542, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.406, + "r_y0": 160.949, + "r_x1": 436.34, + "r_y1": 160.949, + "r_x2": 436.34, + "r_y2": 167.764, + "r_x3": 432.406, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 543, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.445, + "r_y0": 160.949, + "r_x1": 439.238, + "r_y1": 160.949, + "r_x2": 439.238, + "r_y2": 167.764, + "r_x3": 436.445, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 544, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.343, + "r_y0": 160.949, + "r_x1": 441.023, + "r_y1": 160.949, + "r_x2": 441.023, + "r_y2": 167.764, + "r_x3": 439.343, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 545, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.198, + "r_y0": 160.949, + "r_x1": 443.991, + "r_y1": 160.949, + "r_x2": 443.991, + "r_y2": 167.764, + "r_x3": 441.198, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 546, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 145.156, + "r_x1": 51.676, + "r_y1": 145.156, + "r_x2": 51.676, + "r_y2": 151.986, + "r_x3": 50.003, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 547, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 51.851, + "r_y0": 145.156, + "r_x1": 53.531, + "r_y1": 145.156, + "r_x2": 53.531, + "r_y2": 151.986, + "r_x3": 51.851, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 548, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.566, + "r_y0": 145.156, + "r_x1": 55.722, + "r_y1": 145.156, + "r_x2": 55.722, + "r_y2": 151.986, + "r_x3": 53.566, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 549, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.757, + "r_y0": 145.156, + "r_x1": 57.591, + "r_y1": 145.156, + "r_x2": 57.591, + "r_y2": 151.986, + "r_x3": 55.757, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 550, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.605, + "r_y0": 145.156, + "r_x1": 60.398, + "r_y1": 145.156, + "r_x2": 60.398, + "r_y2": 151.986, + "r_x3": 57.605, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 551, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.433, + "r_y0": 145.156, + "r_x1": 62.589, + "r_y1": 145.156, + "r_x2": 62.589, + "r_y2": 151.986, + "r_x3": 60.433, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 552, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.624, + "r_y0": 145.156, + "r_x1": 66.32, + "r_y1": 145.156, + "r_x2": 66.32, + "r_y2": 151.986, + "r_x3": 62.624, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 553, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.425, + "r_y0": 145.156, + "r_x1": 70.058, + "r_y1": 145.156, + "r_x2": 70.058, + "r_y2": 151.986, + "r_x3": 66.425, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 554, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.212, + "r_y0": 145.156, + "r_x1": 72.557, + "r_y1": 145.156, + "r_x2": 72.557, + "r_y2": 151.986, + "r_x3": 70.212, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 555, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.452, + "r_y0": 145.156, + "r_x1": 76.085, + "r_y1": 145.156, + "r_x2": 76.085, + "r_y2": 151.986, + "r_x3": 72.452, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 556, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.239, + "r_y0": 145.156, + "r_x1": 80.278, + "r_y1": 145.156, + "r_x2": 80.278, + "r_y2": 151.986, + "r_x3": 76.239, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 557, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.299, + "r_y0": 145.156, + "r_x1": 83.785, + "r_y1": 145.156, + "r_x2": 83.785, + "r_y2": 151.986, + "r_x3": 80.299, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 558, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.82, + "r_y0": 145.156, + "r_x1": 85.976, + "r_y1": 145.156, + "r_x2": 85.976, + "r_y2": 151.986, + "r_x3": 83.82, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 559, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.011, + "r_y0": 145.156, + "r_x1": 89.343, + "r_y1": 145.156, + "r_x2": 89.343, + "r_y2": 151.986, + "r_x3": 86.011, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 560, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.49, + "r_y0": 145.156, + "r_x1": 93.123, + "r_y1": 145.156, + "r_x2": 93.123, + "r_y2": 151.986, + "r_x3": 89.49, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 561, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.277, + "r_y0": 145.156, + "r_x1": 95.622, + "r_y1": 145.156, + "r_x2": 95.622, + "r_y2": 151.986, + "r_x3": 93.277, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 562, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.734, + "r_y0": 145.156, + "r_x1": 97.414, + "r_y1": 145.156, + "r_x2": 97.414, + "r_y2": 151.986, + "r_x3": 95.734, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 563, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.505, + "r_y0": 145.156, + "r_x1": 99.339, + "r_y1": 145.156, + "r_x2": 99.339, + "r_y2": 151.986, + "r_x3": 97.505, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 564, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.402, + "r_y0": 145.156, + "r_x1": 103.035, + "r_y1": 145.156, + "r_x2": 103.035, + "r_y2": 151.986, + "r_x3": 99.402, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "fi", + "orig": "fi", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 565, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.084, + "r_y0": 145.156, + "r_x1": 106.717, + "r_y1": 145.156, + "r_x2": 106.717, + "r_y2": 151.986, + "r_x3": 103.084, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 566, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.899, + "r_y0": 145.156, + "r_x1": 110.938, + "r_y1": 145.156, + "r_x2": 110.938, + "r_y2": 151.986, + "r_x3": 106.899, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 567, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.973, + "r_y0": 145.156, + "r_x1": 113.129, + "r_y1": 145.156, + "r_x2": 113.129, + "r_y2": 151.986, + "r_x3": 110.973, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 568, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.164, + "r_y0": 145.156, + "r_x1": 114.844, + "r_y1": 145.156, + "r_x2": 114.844, + "r_y2": 151.986, + "r_x3": 113.164, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 569, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.984, + "r_y0": 145.156, + "r_x1": 118.68, + "r_y1": 145.156, + "r_x2": 118.68, + "r_y2": 151.986, + "r_x3": 114.984, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 570, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 118.771, + "r_y0": 145.156, + "r_x1": 122.81, + "r_y1": 145.156, + "r_x2": 122.81, + "r_y2": 151.986, + "r_x3": 118.771, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 571, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.936, + "r_y0": 145.156, + "r_x1": 124.616, + "r_y1": 145.156, + "r_x2": 124.616, + "r_y2": 151.986, + "r_x3": 122.936, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 572, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.651, + "r_y0": 145.156, + "r_x1": 126.807, + "r_y1": 145.156, + "r_x2": 126.807, + "r_y2": 151.986, + "r_x3": 124.651, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 573, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.842, + "r_y0": 145.156, + "r_x1": 128.522, + "r_y1": 145.156, + "r_x2": 128.522, + "r_y2": 151.986, + "r_x3": 126.842, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 574, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.662, + "r_y0": 145.156, + "r_x1": 132.358, + "r_y1": 145.156, + "r_x2": 132.358, + "r_y2": 151.986, + "r_x3": 128.662, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 575, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.379, + "r_y0": 145.156, + "r_x1": 134.213, + "r_y1": 145.156, + "r_x2": 134.213, + "r_y2": 151.986, + "r_x3": 132.379, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 576, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.227, + "r_y0": 145.156, + "r_x1": 137.02, + "r_y1": 145.156, + "r_x2": 137.02, + "r_y2": 151.986, + "r_x3": 134.227, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 577, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.055, + "r_y0": 145.156, + "r_x1": 139.211, + "r_y1": 145.156, + "r_x2": 139.211, + "r_y2": 151.986, + "r_x3": 137.055, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 578, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.246, + "r_y0": 145.156, + "r_x1": 141.08, + "r_y1": 145.156, + "r_x2": 141.08, + "r_y2": 151.986, + "r_x3": 139.246, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 579, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.122, + "r_y0": 145.156, + "r_x1": 144.818, + "r_y1": 145.156, + "r_x2": 144.818, + "r_y2": 151.986, + "r_x3": 141.122, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 580, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.797, + "r_y0": 145.156, + "r_x1": 148.038, + "r_y1": 145.156, + "r_x2": 148.038, + "r_y2": 151.986, + "r_x3": 144.797, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 581, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.066, + "r_y0": 145.156, + "r_x1": 152.0, + "r_y1": 145.156, + "r_x2": 152.0, + "r_y2": 151.986, + "r_x3": 148.066, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 582, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.077, + "r_y0": 145.156, + "r_x1": 153.911, + "r_y1": 145.156, + "r_x2": 153.911, + "r_y2": 151.986, + "r_x3": 152.077, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 583, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.981, + "r_y0": 145.156, + "r_x1": 157.313, + "r_y1": 145.156, + "r_x2": 157.313, + "r_y2": 151.986, + "r_x3": 153.981, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 584, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.46, + "r_y0": 145.156, + "r_x1": 161.093, + "r_y1": 145.156, + "r_x2": 161.093, + "r_y2": 151.986, + "r_x3": 157.46, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 585, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.128, + "r_y0": 145.156, + "r_x1": 163.284, + "r_y1": 145.156, + "r_x2": 163.284, + "r_y2": 151.986, + "r_x3": 161.128, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 586, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 163.319, + "r_y0": 145.156, + "r_x1": 166.112, + "r_y1": 145.156, + "r_x2": 166.112, + "r_y2": 151.986, + "r_x3": 163.319, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 587, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.203, + "r_y0": 145.156, + "r_x1": 169.899, + "r_y1": 145.156, + "r_x2": 169.899, + "r_y2": 151.986, + "r_x3": 166.203, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 588, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.983, + "r_y0": 145.156, + "r_x1": 173.917, + "r_y1": 145.156, + "r_x2": 173.917, + "r_y2": 151.986, + "r_x3": 169.983, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 589, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.938, + "r_y0": 145.156, + "r_x1": 179.258, + "r_y1": 145.156, + "r_x2": 179.258, + "r_y2": 151.986, + "r_x3": 173.938, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 590, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.244, + "r_y0": 145.156, + "r_x1": 182.037, + "r_y1": 145.156, + "r_x2": 182.037, + "r_y2": 151.986, + "r_x3": 179.244, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 591, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.072, + "r_y0": 145.156, + "r_x1": 184.228, + "r_y1": 145.156, + "r_x2": 184.228, + "r_y2": 151.986, + "r_x3": 182.072, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 592, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.263, + "r_y0": 145.156, + "r_x1": 185.943, + "r_y1": 145.156, + "r_x2": 185.943, + "r_y2": 151.986, + "r_x3": 184.263, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 593, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.083, + "r_y0": 145.156, + "r_x1": 189.779, + "r_y1": 145.156, + "r_x2": 189.779, + "r_y2": 151.986, + "r_x3": 186.083, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 594, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 189.884, + "r_y0": 145.156, + "r_x1": 193.517, + "r_y1": 145.156, + "r_x2": 193.517, + "r_y2": 151.986, + "r_x3": 189.884, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 595, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.552, + "r_y0": 145.156, + "r_x1": 195.708, + "r_y1": 145.156, + "r_x2": 195.708, + "r_y2": 151.986, + "r_x3": 193.552, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 596, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.743, + "r_y0": 145.156, + "r_x1": 199.782, + "r_y1": 145.156, + "r_x2": 199.782, + "r_y2": 151.986, + "r_x3": 195.743, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 597, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.915, + "r_y0": 145.156, + "r_x1": 203.247, + "r_y1": 145.156, + "r_x2": 203.247, + "r_y2": 151.986, + "r_x3": 199.915, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 598, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.408, + "r_y0": 145.156, + "r_x1": 205.088, + "r_y1": 145.156, + "r_x2": 205.088, + "r_y2": 151.986, + "r_x3": 203.408, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 599, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.228, + "r_y0": 145.156, + "r_x1": 208.812, + "r_y1": 145.156, + "r_x2": 208.812, + "r_y2": 151.986, + "r_x3": 205.228, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 600, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.924, + "r_y0": 145.156, + "r_x1": 212.963, + "r_y1": 145.156, + "r_x2": 212.963, + "r_y2": 151.986, + "r_x3": 208.924, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 601, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.075, + "r_y0": 145.156, + "r_x1": 214.664, + "r_y1": 145.156, + "r_x2": 214.664, + "r_y2": 151.986, + "r_x3": 213.075, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 602, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 214.699, + "r_y0": 145.156, + "r_x1": 216.855, + "r_y1": 145.156, + "r_x2": 216.855, + "r_y2": 151.986, + "r_x3": 214.699, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 603, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.89, + "r_y0": 145.156, + "r_x1": 220.929, + "r_y1": 145.156, + "r_x2": 220.929, + "r_y2": 151.986, + "r_x3": 216.89, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 604, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.055, + "r_y0": 145.156, + "r_x1": 223.4, + "r_y1": 145.156, + "r_x2": 223.4, + "r_y2": 151.986, + "r_x3": 221.055, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 605, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.323, + "r_y0": 145.156, + "r_x1": 225.157, + "r_y1": 145.156, + "r_x2": 225.157, + "r_y2": 151.986, + "r_x3": 223.323, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 606, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.227, + "r_y0": 145.156, + "r_x1": 228.559, + "r_y1": 145.156, + "r_x2": 228.559, + "r_y2": 151.986, + "r_x3": 225.227, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 607, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.706, + "r_y0": 145.156, + "r_x1": 232.339, + "r_y1": 145.156, + "r_x2": 232.339, + "r_y2": 151.986, + "r_x3": 228.706, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 608, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.374, + "r_y0": 145.156, + "r_x1": 234.53, + "r_y1": 145.156, + "r_x2": 234.53, + "r_y2": 151.986, + "r_x3": 232.374, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 609, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.565, + "r_y0": 145.156, + "r_x1": 238.499, + "r_y1": 145.156, + "r_x2": 238.499, + "r_y2": 151.986, + "r_x3": 234.565, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 610, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 238.625, + "r_y0": 145.156, + "r_x1": 240.543, + "r_y1": 145.156, + "r_x2": 240.543, + "r_y2": 151.986, + "r_x3": 238.625, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 611, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.578, + "r_y0": 145.156, + "r_x1": 242.734, + "r_y1": 145.156, + "r_x2": 242.734, + "r_y2": 151.986, + "r_x3": 240.578, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 612, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.769, + "r_y0": 145.156, + "r_x1": 244.449, + "r_y1": 145.156, + "r_x2": 244.449, + "r_y2": 151.986, + "r_x3": 242.769, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 613, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.589, + "r_y0": 145.156, + "r_x1": 248.285, + "r_y1": 145.156, + "r_x2": 248.285, + "r_y2": 151.986, + "r_x3": 244.589, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 614, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 248.39, + "r_y0": 145.156, + "r_x1": 252.023, + "r_y1": 145.156, + "r_x2": 252.023, + "r_y2": 151.986, + "r_x3": 248.39, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 615, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.058, + "r_y0": 145.156, + "r_x1": 254.214, + "r_y1": 145.156, + "r_x2": 254.214, + "r_y2": 151.986, + "r_x3": 252.058, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 616, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.249, + "r_y0": 145.156, + "r_x1": 258.309, + "r_y1": 145.156, + "r_x2": 258.309, + "r_y2": 151.986, + "r_x3": 254.249, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 617, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 258.4, + "r_y0": 145.156, + "r_x1": 262.334, + "r_y1": 145.156, + "r_x2": 262.334, + "r_y2": 151.986, + "r_x3": 258.4, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 618, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 262.488, + "r_y0": 145.156, + "r_x1": 266.422, + "r_y1": 145.156, + "r_x2": 266.422, + "r_y2": 151.986, + "r_x3": 262.488, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 619, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.562, + "r_y0": 145.156, + "r_x1": 270.601, + "r_y1": 145.156, + "r_x2": 270.601, + "r_y2": 151.986, + "r_x3": 266.562, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 620, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.678, + "r_y0": 145.156, + "r_x1": 273.471, + "r_y1": 145.156, + "r_x2": 273.471, + "r_y2": 151.986, + "r_x3": 270.678, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 621, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.471, + "r_y0": 145.156, + "r_x1": 275.627, + "r_y1": 145.156, + "r_x2": 275.627, + "r_y2": 151.986, + "r_x3": 273.471, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 622, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 135.153, + "r_x1": 54.042, + "r_y1": 135.153, + "r_x2": 54.042, + "r_y2": 141.983, + "r_x3": 50.003, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 623, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.189, + "r_y0": 135.153, + "r_x1": 57.822, + "r_y1": 135.153, + "r_x2": 57.822, + "r_y2": 141.983, + "r_x3": 54.189, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 624, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.927, + "r_y0": 135.153, + "r_x1": 60.72, + "r_y1": 135.153, + "r_x2": 60.72, + "r_y2": 141.983, + "r_x3": 57.927, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 625, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.839, + "r_y0": 135.153, + "r_x1": 64.171, + "r_y1": 135.153, + "r_x2": 64.171, + "r_y2": 141.983, + "r_x3": 60.839, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 626, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.318, + "r_y0": 135.153, + "r_x1": 66.663, + "r_y1": 135.153, + "r_x2": 66.663, + "r_y2": 141.983, + "r_x3": 64.318, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 627, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.586, + "r_y0": 135.153, + "r_x1": 68.42, + "r_y1": 135.153, + "r_x2": 68.42, + "r_y2": 141.983, + "r_x3": 66.586, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 628, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.476, + "r_y0": 135.153, + "r_x1": 72.515, + "r_y1": 135.153, + "r_x2": 72.515, + "r_y2": 141.983, + "r_x3": 68.476, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 629, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.676, + "r_y0": 135.153, + "r_x1": 76.309, + "r_y1": 135.153, + "r_x2": 76.309, + "r_y2": 141.983, + "r_x3": 72.676, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 630, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.491, + "r_y0": 135.153, + "r_x1": 80.53, + "r_y1": 135.153, + "r_x2": 80.53, + "r_y2": 141.983, + "r_x3": 76.491, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 631, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.411, + "r_y0": 135.153, + "r_x1": 82.567, + "r_y1": 135.153, + "r_x2": 82.567, + "r_y2": 141.983, + "r_x3": 80.411, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 632, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.602, + "r_y0": 135.153, + "r_x1": 84.758, + "r_y1": 135.153, + "r_x2": 84.758, + "r_y2": 141.983, + "r_x3": 82.602, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 633, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.793, + "r_y0": 135.153, + "r_x1": 86.473, + "r_y1": 135.153, + "r_x2": 86.473, + "r_y2": 141.983, + "r_x3": 84.793, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 634, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.613, + "r_y0": 135.153, + "r_x1": 90.309, + "r_y1": 135.153, + "r_x2": 90.309, + "r_y2": 141.983, + "r_x3": 86.613, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 635, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.4, + "r_y0": 135.153, + "r_x1": 94.439, + "r_y1": 135.153, + "r_x2": 94.439, + "r_y2": 141.983, + "r_x3": 90.4, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 636, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.565, + "r_y0": 135.153, + "r_x1": 96.245, + "r_y1": 135.153, + "r_x2": 96.245, + "r_y2": 141.983, + "r_x3": 94.565, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 637, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.28, + "r_y0": 135.153, + "r_x1": 98.436, + "r_y1": 135.153, + "r_x2": 98.436, + "r_y2": 141.983, + "r_x3": 96.28, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 638, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.471, + "r_y0": 135.153, + "r_x1": 102.167, + "r_y1": 135.153, + "r_x2": 102.167, + "r_y2": 141.983, + "r_x3": 98.471, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 639, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.251, + "r_y0": 135.153, + "r_x1": 106.185, + "r_y1": 135.153, + "r_x2": 106.185, + "r_y2": 141.983, + "r_x3": 102.251, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 640, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.22, + "r_y0": 135.153, + "r_x1": 108.376, + "r_y1": 135.153, + "r_x2": 108.376, + "r_y2": 141.983, + "r_x3": 106.22, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 641, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.411, + "r_y0": 135.153, + "r_x1": 112.345, + "r_y1": 135.153, + "r_x2": 112.345, + "r_y2": 141.983, + "r_x3": 108.411, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 642, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.478, + "r_y0": 135.153, + "r_x1": 114.158, + "r_y1": 135.153, + "r_x2": 114.158, + "r_y2": 141.983, + "r_x3": 112.478, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 643, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.298, + "r_y0": 135.153, + "r_x1": 117.994, + "r_y1": 135.153, + "r_x2": 117.994, + "r_y2": 141.983, + "r_x3": 114.298, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 644, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 118.099, + "r_y0": 135.153, + "r_x1": 121.732, + "r_y1": 135.153, + "r_x2": 121.732, + "r_y2": 141.983, + "r_x3": 118.099, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 645, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.886, + "r_y0": 135.153, + "r_x1": 124.231, + "r_y1": 135.153, + "r_x2": 124.231, + "r_y2": 141.983, + "r_x3": 121.886, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 646, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.266, + "r_y0": 135.153, + "r_x1": 126.422, + "r_y1": 135.153, + "r_x2": 126.422, + "r_y2": 141.983, + "r_x3": 124.266, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 647, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.457, + "r_y0": 135.153, + "r_x1": 128.291, + "r_y1": 135.153, + "r_x2": 128.291, + "r_y2": 141.983, + "r_x3": 126.457, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 648, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.333, + "r_y0": 135.153, + "r_x1": 132.029, + "r_y1": 135.153, + "r_x2": 132.029, + "r_y2": 141.983, + "r_x3": 128.333, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 649, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.008, + "r_y0": 135.153, + "r_x1": 135.249, + "r_y1": 135.153, + "r_x2": 135.249, + "r_y2": 141.983, + "r_x3": 132.008, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 650, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.277, + "r_y0": 135.153, + "r_x1": 139.211, + "r_y1": 135.153, + "r_x2": 139.211, + "r_y2": 141.983, + "r_x3": 135.277, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 651, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.288, + "r_y0": 135.153, + "r_x1": 141.122, + "r_y1": 135.153, + "r_x2": 141.122, + "r_y2": 141.983, + "r_x3": 139.288, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 652, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.192, + "r_y0": 135.153, + "r_x1": 144.524, + "r_y1": 135.153, + "r_x2": 144.524, + "r_y2": 141.983, + "r_x3": 141.192, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 653, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.671, + "r_y0": 135.153, + "r_x1": 148.304, + "r_y1": 135.153, + "r_x2": 148.304, + "r_y2": 141.983, + "r_x3": 144.671, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 654, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.339, + "r_y0": 135.153, + "r_x1": 150.495, + "r_y1": 135.153, + "r_x2": 150.495, + "r_y2": 141.983, + "r_x3": 148.339, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 655, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.53, + "r_y0": 135.153, + "r_x1": 154.226, + "r_y1": 135.153, + "r_x2": 154.226, + "r_y2": 141.983, + "r_x3": 150.53, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 656, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.317, + "r_y0": 135.153, + "r_x1": 158.356, + "r_y1": 135.153, + "r_x2": 158.356, + "r_y2": 141.983, + "r_x3": 154.317, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 657, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.44, + "r_y0": 135.153, + "r_x1": 161.233, + "r_y1": 135.153, + "r_x2": 161.233, + "r_y2": 141.983, + "r_x3": 158.44, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 658, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.268, + "r_y0": 135.153, + "r_x1": 163.424, + "r_y1": 135.153, + "r_x2": 163.424, + "r_y2": 141.983, + "r_x3": 161.268, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 659, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 163.459, + "r_y0": 135.153, + "r_x1": 167.498, + "r_y1": 135.153, + "r_x2": 167.498, + "r_y2": 141.983, + "r_x3": 163.459, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 660, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.659, + "r_y0": 135.153, + "r_x1": 171.292, + "r_y1": 135.153, + "r_x2": 171.292, + "r_y2": 141.983, + "r_x3": 167.659, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 661, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.46, + "r_y0": 135.153, + "r_x1": 175.093, + "r_y1": 135.153, + "r_x2": 175.093, + "r_y2": 141.983, + "r_x3": 171.46, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 662, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.233, + "r_y0": 135.153, + "r_x1": 178.929, + "r_y1": 135.153, + "r_x2": 178.929, + "r_y2": 141.983, + "r_x3": 175.233, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 663, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.964, + "r_y0": 135.153, + "r_x1": 181.12, + "r_y1": 135.153, + "r_x2": 181.12, + "r_y2": 141.983, + "r_x3": 178.964, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 664, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.155, + "r_y0": 135.153, + "r_x1": 185.089, + "r_y1": 135.153, + "r_x2": 185.089, + "r_y2": 141.983, + "r_x3": 181.155, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 665, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.229, + "r_y0": 135.153, + "r_x1": 187.574, + "r_y1": 135.153, + "r_x2": 187.574, + "r_y2": 141.983, + "r_x3": 185.229, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 666, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.609, + "r_y0": 135.153, + "r_x1": 189.765, + "r_y1": 135.153, + "r_x2": 189.765, + "r_y2": 141.983, + "r_x3": 187.609, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 667, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 189.8, + "r_y0": 135.153, + "r_x1": 195.12, + "r_y1": 135.153, + "r_x2": 195.12, + "r_y2": 141.983, + "r_x3": 189.8, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 668, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.099, + "r_y0": 135.153, + "r_x1": 196.933, + "r_y1": 135.153, + "r_x2": 196.933, + "r_y2": 141.983, + "r_x3": 195.099, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 669, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.982, + "r_y0": 135.153, + "r_x1": 198.571, + "r_y1": 135.153, + "r_x2": 198.571, + "r_y2": 141.983, + "r_x3": 196.982, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 670, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.676, + "r_y0": 135.153, + "r_x1": 200.265, + "r_y1": 135.153, + "r_x2": 200.265, + "r_y2": 141.983, + "r_x3": 198.676, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 671, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.3, + "r_y0": 135.153, + "r_x1": 202.456, + "r_y1": 135.153, + "r_x2": 202.456, + "r_y2": 141.983, + "r_x3": 200.3, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 672, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.491, + "r_y0": 135.153, + "r_x1": 206.53, + "r_y1": 135.153, + "r_x2": 206.53, + "r_y2": 141.983, + "r_x3": 202.491, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 673, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.691, + "r_y0": 135.153, + "r_x1": 210.324, + "r_y1": 135.153, + "r_x2": 210.324, + "r_y2": 141.983, + "r_x3": 206.691, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 674, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.359, + "r_y0": 135.153, + "r_x1": 212.515, + "r_y1": 135.153, + "r_x2": 212.515, + "r_y2": 141.983, + "r_x3": 210.359, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 675, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.55, + "r_y0": 135.153, + "r_x1": 214.384, + "r_y1": 135.153, + "r_x2": 214.384, + "r_y2": 141.983, + "r_x3": 212.55, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 676, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 214.398, + "r_y0": 135.153, + "r_x1": 217.191, + "r_y1": 135.153, + "r_x2": 217.191, + "r_y2": 141.983, + "r_x3": 214.398, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 677, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.254, + "r_y0": 135.153, + "r_x1": 220.047, + "r_y1": 135.153, + "r_x2": 220.047, + "r_y2": 141.983, + "r_x3": 217.254, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 678, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.117, + "r_y0": 135.153, + "r_x1": 223.701, + "r_y1": 135.153, + "r_x2": 223.701, + "r_y2": 141.983, + "r_x3": 220.117, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 679, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.827, + "r_y0": 135.153, + "r_x1": 227.46, + "r_y1": 135.153, + "r_x2": 227.46, + "r_y2": 141.983, + "r_x3": 223.827, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 680, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.642, + "r_y0": 135.153, + "r_x1": 231.681, + "r_y1": 135.153, + "r_x2": 231.681, + "r_y2": 141.983, + "r_x3": 227.642, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 681, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.562, + "r_y0": 135.153, + "r_x1": 233.718, + "r_y1": 135.153, + "r_x2": 233.718, + "r_y2": 141.983, + "r_x3": 231.562, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 682, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 233.753, + "r_y0": 135.153, + "r_x1": 235.909, + "r_y1": 135.153, + "r_x2": 235.909, + "r_y2": 141.983, + "r_x3": 233.753, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 683, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.944, + "r_y0": 135.153, + "r_x1": 239.983, + "r_y1": 135.153, + "r_x2": 239.983, + "r_y2": 141.983, + "r_x3": 235.944, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 684, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.088, + "r_y0": 135.153, + "r_x1": 243.784, + "r_y1": 135.153, + "r_x2": 243.784, + "r_y2": 141.983, + "r_x3": 240.088, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 685, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.875, + "r_y0": 135.153, + "r_x1": 247.914, + "r_y1": 135.153, + "r_x2": 247.914, + "r_y2": 141.983, + "r_x3": 243.875, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 686, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.949, + "r_y0": 135.153, + "r_x1": 250.105, + "r_y1": 135.153, + "r_x2": 250.105, + "r_y2": 141.983, + "r_x3": 247.949, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 687, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 250.14, + "r_y0": 135.153, + "r_x1": 251.82, + "r_y1": 135.153, + "r_x2": 251.82, + "r_y2": 141.983, + "r_x3": 250.14, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 688, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.96, + "r_y0": 135.153, + "r_x1": 255.656, + "r_y1": 135.153, + "r_x2": 255.656, + "r_y2": 141.983, + "r_x3": 251.96, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 689, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 255.747, + "r_y0": 135.153, + "r_x1": 259.786, + "r_y1": 135.153, + "r_x2": 259.786, + "r_y2": 141.983, + "r_x3": 255.747, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 690, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.912, + "r_y0": 135.153, + "r_x1": 261.592, + "r_y1": 135.153, + "r_x2": 261.592, + "r_y2": 141.983, + "r_x3": 259.912, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 691, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.627, + "r_y0": 135.153, + "r_x1": 263.783, + "r_y1": 135.153, + "r_x2": 263.783, + "r_y2": 141.983, + "r_x3": 261.627, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 692, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.818, + "r_y0": 135.153, + "r_x1": 267.857, + "r_y1": 135.153, + "r_x2": 267.857, + "r_y2": 141.983, + "r_x3": 263.818, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 693, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.969, + "r_y0": 135.153, + "r_x1": 269.558, + "r_y1": 135.153, + "r_x2": 269.558, + "r_y2": 141.983, + "r_x3": 267.969, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 694, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.663, + "r_y0": 135.153, + "r_x1": 271.252, + "r_y1": 135.153, + "r_x2": 271.252, + "r_y2": 141.983, + "r_x3": 269.663, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 695, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.252, + "r_y0": 135.153, + "r_x1": 273.408, + "r_y1": 135.153, + "r_x2": 273.408, + "r_y2": 141.983, + "r_x3": 271.252, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 696, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 125.15, + "r_x1": 54.042, + "r_y1": 125.15, + "r_x2": 54.042, + "r_y2": 131.98, + "r_x3": 50.003, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 697, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.196, + "r_y0": 125.15, + "r_x1": 58.235, + "r_y1": 125.15, + "r_x2": 58.235, + "r_y2": 131.98, + "r_x3": 54.196, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 698, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.354, + "r_y0": 125.15, + "r_x1": 60.699, + "r_y1": 125.15, + "r_x2": 60.699, + "r_y2": 131.98, + "r_x3": 58.354, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 699, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.811, + "r_y0": 125.15, + "r_x1": 62.491, + "r_y1": 125.15, + "r_x2": 62.491, + "r_y2": 131.98, + "r_x3": 60.811, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 700, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.582, + "r_y0": 125.15, + "r_x1": 64.416, + "r_y1": 125.15, + "r_x2": 64.416, + "r_y2": 131.98, + "r_x3": 62.582, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 701, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.486, + "r_y0": 125.15, + "r_x1": 67.818, + "r_y1": 125.15, + "r_x2": 67.818, + "r_y2": 131.98, + "r_x3": 64.486, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 702, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.937, + "r_y0": 125.15, + "r_x1": 71.521, + "r_y1": 125.15, + "r_x2": 71.521, + "r_y2": 131.98, + "r_x3": 67.937, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 703, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.619, + "r_y0": 125.15, + "r_x1": 73.208, + "r_y1": 125.15, + "r_x2": 73.208, + "r_y2": 131.98, + "r_x3": 71.619, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 704, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.334, + "r_y0": 125.15, + "r_x1": 77.373, + "r_y1": 125.15, + "r_x2": 77.373, + "r_y2": 131.98, + "r_x3": 73.334, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 705, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.492, + "r_y0": 125.15, + "r_x1": 79.837, + "r_y1": 125.15, + "r_x2": 79.837, + "r_y2": 131.98, + "r_x3": 77.492, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 706, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.739, + "r_y0": 125.15, + "r_x1": 82.532, + "r_y1": 125.15, + "r_x2": 82.532, + "r_y2": 131.98, + "r_x3": 79.739, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 707, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.567, + "r_y0": 125.15, + "r_x1": 84.723, + "r_y1": 125.15, + "r_x2": 84.723, + "r_y2": 131.98, + "r_x3": 82.567, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 708, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.758, + "r_y0": 125.15, + "r_x1": 88.797, + "r_y1": 125.15, + "r_x2": 88.797, + "r_y2": 131.98, + "r_x3": 84.758, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 709, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.916, + "r_y0": 125.15, + "r_x1": 91.261, + "r_y1": 125.15, + "r_x2": 91.261, + "r_y2": 131.98, + "r_x3": 88.916, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 710, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.156, + "r_y0": 125.15, + "r_x1": 94.789, + "r_y1": 125.15, + "r_x2": 94.789, + "r_y2": 131.98, + "r_x3": 91.156, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 711, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.824, + "r_y0": 125.15, + "r_x1": 96.98, + "r_y1": 125.15, + "r_x2": 96.98, + "r_y2": 131.98, + "r_x3": 94.824, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 712, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.015, + "r_y0": 125.15, + "r_x1": 98.695, + "r_y1": 125.15, + "r_x2": 98.695, + "r_y2": 131.98, + "r_x3": 97.015, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 713, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.849, + "r_y0": 125.15, + "r_x1": 101.194, + "r_y1": 125.15, + "r_x2": 101.194, + "r_y2": 131.98, + "r_x3": 98.849, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 714, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.18, + "r_y0": 125.15, + "r_x1": 104.764, + "r_y1": 125.15, + "r_x2": 104.764, + "r_y2": 131.98, + "r_x3": 101.18, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 715, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 104.89, + "r_y0": 125.15, + "r_x1": 108.523, + "r_y1": 125.15, + "r_x2": 108.523, + "r_y2": 131.98, + "r_x3": 104.89, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 716, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.558, + "r_y0": 125.15, + "r_x1": 110.714, + "r_y1": 125.15, + "r_x2": 110.714, + "r_y2": 131.98, + "r_x3": 108.558, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 717, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.749, + "r_y0": 125.15, + "r_x1": 114.788, + "r_y1": 125.15, + "r_x2": 114.788, + "r_y2": 131.98, + "r_x3": 110.749, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 718, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.893, + "r_y0": 125.15, + "r_x1": 118.589, + "r_y1": 125.15, + "r_x2": 118.589, + "r_y2": 131.98, + "r_x3": 114.893, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 719, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 118.68, + "r_y0": 125.15, + "r_x1": 122.719, + "r_y1": 125.15, + "r_x2": 122.719, + "r_y2": 131.98, + "r_x3": 118.68, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 720, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.754, + "r_y0": 125.15, + "r_x1": 124.91, + "r_y1": 125.15, + "r_x2": 124.91, + "r_y2": 131.98, + "r_x3": 122.754, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 721, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.945, + "r_y0": 125.15, + "r_x1": 128.277, + "r_y1": 125.15, + "r_x2": 128.277, + "r_y2": 131.98, + "r_x3": 124.945, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 722, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.403, + "r_y0": 125.15, + "r_x1": 132.337, + "r_y1": 125.15, + "r_x2": 132.337, + "r_y2": 131.98, + "r_x3": 128.403, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 723, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.477, + "r_y0": 125.15, + "r_x1": 134.822, + "r_y1": 125.15, + "r_x2": 134.822, + "r_y2": 131.98, + "r_x3": 132.477, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 724, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.801, + "r_y0": 125.15, + "r_x1": 137.146, + "r_y1": 125.15, + "r_x2": 137.146, + "r_y2": 131.98, + "r_x3": 134.801, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 725, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.041, + "r_y0": 125.15, + "r_x1": 140.674, + "r_y1": 125.15, + "r_x2": 140.674, + "r_y2": 131.98, + "r_x3": 137.041, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 726, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.856, + "r_y0": 125.15, + "r_x1": 144.188, + "r_y1": 125.15, + "r_x2": 144.188, + "r_y2": 131.98, + "r_x3": 140.856, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 727, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.349, + "r_y0": 125.15, + "r_x1": 146.029, + "r_y1": 125.15, + "r_x2": 146.029, + "r_y2": 131.98, + "r_x3": 144.349, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 728, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.952, + "r_y0": 125.15, + "r_x1": 148.108, + "r_y1": 125.15, + "r_x2": 148.108, + "r_y2": 131.98, + "r_x3": 145.952, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 729, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.277, + "r_y0": 144.94, + "r_x1": 420.275, + "r_y1": 144.94, + "r_x2": 420.275, + "r_y2": 151.755, + "r_x3": 415.277, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 730, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 420.457, + "r_y0": 144.94, + "r_x1": 424.496, + "r_y1": 144.94, + "r_x2": 424.496, + "r_y2": 151.755, + "r_x3": 420.457, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 731, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 424.601, + "r_y0": 144.94, + "r_x1": 428.297, + "r_y1": 144.94, + "r_x2": 428.297, + "r_y2": 151.755, + "r_x3": 424.601, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 732, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 428.43, + "r_y0": 144.94, + "r_x1": 432.469, + "r_y1": 144.94, + "r_x2": 432.469, + "r_y2": 151.755, + "r_x3": 428.43, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 733, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.581, + "r_y0": 144.94, + "r_x1": 434.17, + "r_y1": 144.94, + "r_x2": 434.17, + "r_y2": 151.755, + "r_x3": 432.581, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 734, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 434.226, + "r_y0": 144.94, + "r_x1": 436.06, + "r_y1": 144.94, + "r_x2": 436.06, + "r_y2": 151.755, + "r_x3": 434.226, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 735, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.102, + "r_y0": 144.94, + "r_x1": 439.798, + "r_y1": 144.94, + "r_x2": 439.798, + "r_y2": 151.755, + "r_x3": 436.102, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 736, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.945, + "r_y0": 144.94, + "r_x1": 444.005, + "r_y1": 144.94, + "r_x2": 444.005, + "r_y2": 151.755, + "r_x3": 439.945, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 737, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.453, + "r_y0": 128.938, + "r_x1": 397.126, + "r_y1": 128.938, + "r_x2": 397.126, + "r_y2": 135.753, + "r_x3": 395.453, + "r_y3": 135.753, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 738, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 397.266, + "r_y0": 128.938, + "r_x1": 400.962, + "r_y1": 128.938, + "r_x2": 400.962, + "r_y2": 135.753, + "r_x3": 397.266, + "r_y3": 135.753, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 739, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 401.025, + "r_y0": 128.938, + "r_x1": 403.818, + "r_y1": 128.938, + "r_x2": 403.818, + "r_y2": 135.754, + "r_x3": 401.025, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 740, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 403.909, + "r_y0": 128.938, + "r_x1": 407.493, + "r_y1": 128.938, + "r_x2": 407.493, + "r_y2": 135.754, + "r_x3": 403.909, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 741, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.612, + "r_y0": 128.938, + "r_x1": 409.957, + "r_y1": 128.938, + "r_x2": 409.957, + "r_y2": 135.754, + "r_x3": 407.612, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 742, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.985, + "r_y0": 128.938, + "r_x1": 414.024, + "r_y1": 128.938, + "r_x2": 414.024, + "r_y2": 135.754, + "r_x3": 409.985, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 743, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.129, + "r_y0": 128.938, + "r_x1": 417.825, + "r_y1": 128.938, + "r_x2": 417.825, + "r_y2": 135.754, + "r_x3": 414.129, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 744, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.965, + "r_y0": 128.938, + "r_x1": 421.297, + "r_y1": 128.938, + "r_x2": 421.297, + "r_y2": 135.754, + "r_x3": 417.965, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 745, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 421.458, + "r_y0": 128.938, + "r_x1": 425.091, + "r_y1": 128.938, + "r_x2": 425.091, + "r_y2": 135.754, + "r_x3": 421.458, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 746, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.126, + "r_y0": 128.938, + "r_x1": 427.282, + "r_y1": 128.938, + "r_x2": 427.282, + "r_y2": 135.754, + "r_x3": 425.126, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 747, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.317, + "r_y0": 128.938, + "r_x1": 432.336, + "r_y1": 128.938, + "r_x2": 432.336, + "r_y2": 135.754, + "r_x3": 427.317, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 748, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 432.406, + "r_y0": 128.938, + "r_x1": 436.34, + "r_y1": 128.938, + "r_x2": 436.34, + "r_y2": 135.754, + "r_x3": 432.406, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 749, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.445, + "r_y0": 128.938, + "r_x1": 439.238, + "r_y1": 128.938, + "r_x2": 439.238, + "r_y2": 135.754, + "r_x3": 436.445, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 750, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.343, + "r_y0": 128.938, + "r_x1": 441.023, + "r_y1": 128.938, + "r_x2": 441.023, + "r_y2": 135.754, + "r_x3": 439.343, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 751, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.198, + "r_y0": 128.938, + "r_x1": 443.991, + "r_y1": 128.938, + "r_x2": 443.991, + "r_y2": 135.754, + "r_x3": 441.198, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 752, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 423.74, + "r_y0": 112.936, + "r_x1": 428.633, + "r_y1": 112.936, + "r_x2": 428.633, + "r_y2": 119.752, + "r_x3": 423.74, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 753, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 428.794, + "r_y0": 112.936, + "r_x1": 431.587, + "r_y1": 112.936, + "r_x2": 431.587, + "r_y2": 119.752, + "r_x3": 428.794, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 754, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 431.741, + "r_y0": 112.936, + "r_x1": 434.534, + "r_y1": 112.936, + "r_x2": 434.534, + "r_y2": 119.752, + "r_x3": 431.741, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 755, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 434.583, + "r_y0": 112.936, + "r_x1": 436.417, + "r_y1": 112.936, + "r_x2": 436.417, + "r_y2": 119.752, + "r_x3": 434.583, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 756, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.452, + "r_y0": 112.936, + "r_x1": 439.245, + "r_y1": 112.936, + "r_x2": 439.245, + "r_y2": 119.752, + "r_x3": 436.452, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 757, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.35, + "r_y0": 112.936, + "r_x1": 441.03, + "r_y1": 112.936, + "r_x2": 441.03, + "r_y2": 119.752, + "r_x3": 439.35, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 758, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.205, + "r_y0": 112.936, + "r_x1": 443.998, + "r_y1": 112.936, + "r_x2": 443.998, + "r_y2": 119.752, + "r_x3": 441.205, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 759, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 98.159, + "r_x1": 53.916, + "r_y1": 98.159, + "r_x2": 53.916, + "r_y2": 104.975, + "r_x3": 50.003, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 760, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.035, + "r_y0": 98.159, + "r_x1": 55.708, + "r_y1": 98.159, + "r_x2": 55.708, + "r_y2": 104.975, + "r_x3": 54.035, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 761, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.911, + "r_y0": 98.159, + "r_x1": 61.651, + "r_y1": 98.159, + "r_x2": 61.651, + "r_y2": 104.975, + "r_x3": 55.911, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "G", + "orig": "G", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 762, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.798, + "r_y0": 98.159, + "r_x1": 67.636, + "r_y1": 98.159, + "r_x2": 67.636, + "r_y2": 104.975, + "r_x3": 61.798, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 763, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.783, + "r_y0": 98.159, + "r_x1": 72.676, + "r_y1": 98.159, + "r_x2": 72.676, + "r_y2": 104.975, + "r_x3": 67.783, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 764, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.459, + "r_y0": 98.159, + "r_x1": 75.749, + "r_y1": 98.159, + "r_x2": 75.749, + "r_y2": 104.975, + "r_x3": 72.459, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 765, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.903, + "r_y0": 98.159, + "r_x1": 80.698, + "r_y1": 98.159, + "r_x2": 80.698, + "r_y2": 104.975, + "r_x3": 75.903, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 766, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.901, + "r_y0": 98.159, + "r_x1": 84.695, + "r_y1": 98.159, + "r_x2": 84.695, + "r_y2": 104.975, + "r_x3": 80.901, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 767, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.793, + "r_y0": 98.159, + "r_x1": 88.531, + "r_y1": 98.159, + "r_x2": 88.531, + "r_y2": 104.975, + "r_x3": 84.793, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 768, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.566, + "r_y0": 98.159, + "r_x1": 90.722, + "r_y1": 98.159, + "r_x2": 90.722, + "r_y2": 104.975, + "r_x3": 88.566, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 769, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.757, + "r_y0": 98.159, + "r_x1": 95.622, + "r_y1": 98.159, + "r_x2": 95.622, + "r_y2": 104.975, + "r_x3": 90.757, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 770, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.657, + "r_y0": 98.159, + "r_x1": 97.813, + "r_y1": 98.159, + "r_x2": 97.813, + "r_y2": 104.975, + "r_x3": 95.657, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 771, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.848, + "r_y0": 98.159, + "r_x1": 101.761, + "r_y1": 98.159, + "r_x2": 101.761, + "r_y2": 104.975, + "r_x3": 97.848, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 772, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.887, + "r_y0": 98.159, + "r_x1": 105.177, + "r_y1": 98.159, + "r_x2": 105.177, + "r_y2": 104.975, + "r_x3": 101.887, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 773, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 104.953, + "r_y0": 98.159, + "r_x1": 109.846, + "r_y1": 98.159, + "r_x2": 109.846, + "r_y2": 104.975, + "r_x3": 104.953, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 774, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 109.629, + "r_y0": 98.159, + "r_x1": 112.919, + "r_y1": 98.159, + "r_x2": 112.919, + "r_y2": 104.975, + "r_x3": 109.629, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 775, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.073, + "r_y0": 98.159, + "r_x1": 117.868, + "r_y1": 98.159, + "r_x2": 117.868, + "r_y2": 104.975, + "r_x3": 113.073, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 776, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.966, + "r_y0": 98.159, + "r_x1": 121.879, + "r_y1": 98.159, + "r_x2": 121.879, + "r_y2": 104.975, + "r_x3": 117.966, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 777, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.914, + "r_y0": 98.159, + "r_x1": 124.07, + "r_y1": 98.159, + "r_x2": 124.07, + "r_y2": 104.975, + "r_x3": 121.914, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 778, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.105, + "r_y0": 98.159, + "r_x1": 130.139, + "r_y1": 98.159, + "r_x2": 130.139, + "r_y2": 104.975, + "r_x3": 124.105, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 779, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.342, + "r_y0": 98.159, + "r_x1": 133.688, + "r_y1": 98.159, + "r_x2": 133.688, + "r_y2": 104.975, + "r_x3": 130.342, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 780, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 133.723, + "r_y0": 98.159, + "r_x1": 135.879, + "r_y1": 98.159, + "r_x2": 135.879, + "r_y2": 104.975, + "r_x3": 133.723, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 781, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.914, + "r_y0": 98.159, + "r_x1": 140.807, + "r_y1": 98.159, + "r_x2": 140.807, + "r_y2": 104.975, + "r_x3": 135.914, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 782, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.751, + "r_y0": 98.159, + "r_x1": 145.546, + "r_y1": 98.159, + "r_x2": 145.546, + "r_y2": 104.975, + "r_x3": 140.751, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 783, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.7, + "r_y0": 98.159, + "r_x1": 148.99, + "r_y1": 98.159, + "r_x2": 148.99, + "r_y2": 104.975, + "r_x3": 145.7, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 784, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.123, + "r_y0": 98.159, + "r_x1": 154.121, + "r_y1": 98.159, + "r_x2": 154.121, + "r_y2": 104.975, + "r_x3": 149.123, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 785, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.31, + "r_y0": 98.159, + "r_x1": 160.344, + "r_y1": 98.159, + "r_x2": 160.344, + "r_y2": 104.975, + "r_x3": 154.31, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 786, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.547, + "r_y0": 98.159, + "r_x1": 164.341, + "r_y1": 98.159, + "r_x2": 164.341, + "r_y2": 104.975, + "r_x3": 160.547, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 787, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.432, + "r_y0": 98.159, + "r_x1": 166.105, + "r_y1": 98.159, + "r_x2": 166.105, + "r_y2": 104.975, + "r_x3": 164.432, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 788, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.224, + "r_y0": 98.159, + "r_x1": 170.326, + "r_y1": 98.159, + "r_x2": 170.326, + "r_y2": 104.975, + "r_x3": 166.224, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "z", + "orig": "z", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 789, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.403, + "r_y0": 98.159, + "r_x1": 174.141, + "r_y1": 98.159, + "r_x2": 174.141, + "r_y2": 104.975, + "r_x3": 170.403, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 790, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.19, + "r_y0": 98.159, + "r_x1": 178.936, + "r_y1": 98.159, + "r_x2": 178.936, + "r_y2": 104.975, + "r_x3": 174.19, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 791, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.971, + "r_y0": 98.159, + "r_x1": 181.127, + "r_y1": 98.159, + "r_x2": 181.127, + "r_y2": 104.975, + "r_x3": 178.971, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 792, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.162, + "r_y0": 98.159, + "r_x1": 184.683, + "r_y1": 98.159, + "r_x2": 184.683, + "r_y2": 104.975, + "r_x3": 181.162, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 793, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.76, + "r_y0": 98.159, + "r_x1": 188.498, + "r_y1": 98.159, + "r_x2": 188.498, + "r_y2": 104.975, + "r_x3": 184.76, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 794, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.547, + "r_y0": 98.159, + "r_x1": 192.341, + "r_y1": 98.159, + "r_x2": 192.341, + "r_y2": 104.975, + "r_x3": 188.547, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 795, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.341, + "r_y0": 98.159, + "r_x1": 196.254, + "r_y1": 98.159, + "r_x2": 196.254, + "r_y2": 104.975, + "r_x3": 192.341, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 796, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.352, + "r_y0": 98.159, + "r_x1": 202.386, + "r_y1": 98.159, + "r_x2": 202.386, + "r_y2": 104.975, + "r_x3": 196.352, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 797, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.575, + "r_y0": 98.159, + "r_x1": 208.413, + "r_y1": 98.159, + "r_x2": 208.413, + "r_y2": 104.975, + "r_x3": 202.575, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 798, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.502, + "r_y0": 96.934, + "r_x1": 400.395, + "r_y1": 96.934, + "r_x2": 400.395, + "r_y2": 103.75, + "r_x3": 395.502, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 799, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.507, + "r_y0": 96.934, + "r_x1": 404.546, + "r_y1": 96.934, + "r_x2": 404.546, + "r_y2": 103.75, + "r_x3": 400.507, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 800, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.7, + "r_y0": 96.934, + "r_x1": 408.739, + "r_y1": 96.934, + "r_x2": 408.739, + "r_y2": 103.75, + "r_x3": 404.7, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 801, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 408.795, + "r_y0": 96.934, + "r_x1": 410.629, + "r_y1": 96.934, + "r_x2": 410.629, + "r_y2": 103.75, + "r_x3": 408.795, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 802, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 410.699, + "r_y0": 96.934, + "r_x1": 412.379, + "r_y1": 96.934, + "r_x2": 412.379, + "r_y2": 103.75, + "r_x3": 410.699, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 803, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 412.491, + "r_y0": 96.934, + "r_x1": 414.325, + "r_y1": 96.934, + "r_x2": 414.325, + "r_y2": 103.75, + "r_x3": 412.491, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 804, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.395, + "r_y0": 96.934, + "r_x1": 418.329, + "r_y1": 96.934, + "r_x2": 418.329, + "r_y2": 103.75, + "r_x3": 414.395, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 805, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 418.462, + "r_y0": 96.934, + "r_x1": 422.158, + "r_y1": 96.934, + "r_x2": 422.158, + "r_y2": 103.75, + "r_x3": 418.462, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 806, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 422.291, + "r_y0": 96.934, + "r_x1": 426.33, + "r_y1": 96.934, + "r_x2": 426.33, + "r_y2": 103.75, + "r_x3": 422.291, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 807, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 426.442, + "r_y0": 96.934, + "r_x1": 428.031, + "r_y1": 96.934, + "r_x2": 428.031, + "r_y2": 103.75, + "r_x3": 426.442, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 808, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 428.066, + "r_y0": 96.934, + "r_x1": 430.222, + "r_y1": 96.934, + "r_x2": 430.222, + "r_y2": 103.75, + "r_x3": 428.066, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 809, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 430.257, + "r_y0": 96.934, + "r_x1": 433.603, + "r_y1": 96.934, + "r_x2": 433.603, + "r_y2": 103.75, + "r_x3": 430.257, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 810, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 433.596, + "r_y0": 96.934, + "r_x1": 437.229, + "r_y1": 96.934, + "r_x2": 437.229, + "r_y2": 103.75, + "r_x3": 433.596, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 811, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 437.418, + "r_y0": 96.934, + "r_x1": 441.051, + "r_y1": 96.934, + "r_x2": 441.051, + "r_y2": 103.75, + "r_x3": 437.418, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 812, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.205, + "r_y0": 96.934, + "r_x1": 443.998, + "r_y1": 96.934, + "r_x2": 443.998, + "r_y2": 103.75, + "r_x3": 441.205, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 813, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.379, + "r_y0": 80.932, + "r_x1": 403.125, + "r_y1": 80.932, + "r_x2": 403.125, + "r_y2": 87.748, + "r_x3": 398.379, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 814, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 403.293, + "r_y0": 80.932, + "r_x1": 406.877, + "r_y1": 80.932, + "r_x2": 406.877, + "r_y2": 87.748, + "r_x3": 403.293, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 815, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 407.003, + "r_y0": 80.932, + "r_x1": 408.683, + "r_y1": 80.932, + "r_x2": 408.683, + "r_y2": 87.748, + "r_x3": 407.003, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 816, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 408.795, + "r_y0": 80.932, + "r_x1": 410.629, + "r_y1": 80.932, + "r_x2": 410.629, + "r_y2": 87.748, + "r_x3": 408.795, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 817, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 410.713, + "r_y0": 80.932, + "r_x1": 414.346, + "r_y1": 80.932, + "r_x2": 414.346, + "r_y2": 87.748, + "r_x3": 410.713, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 818, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.5, + "r_y0": 80.932, + "r_x1": 417.293, + "r_y1": 80.932, + "r_x2": 417.293, + "r_y2": 87.748, + "r_x3": 414.5, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 819, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.328, + "r_y0": 80.932, + "r_x1": 419.484, + "r_y1": 80.932, + "r_x2": 419.484, + "r_y2": 87.748, + "r_x3": 417.328, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 820, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.519, + "r_y0": 80.932, + "r_x1": 424.384, + "r_y1": 80.932, + "r_x2": 424.384, + "r_y2": 87.748, + "r_x3": 419.519, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 821, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 424.419, + "r_y0": 80.932, + "r_x1": 426.575, + "r_y1": 80.932, + "r_x2": 426.575, + "r_y2": 87.748, + "r_x3": 424.419, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 822, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 426.61, + "r_y0": 80.932, + "r_x1": 429.9, + "r_y1": 80.932, + "r_x2": 429.9, + "r_y2": 87.748, + "r_x3": 426.61, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 823, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 429.676, + "r_y0": 80.932, + "r_x1": 433.715, + "r_y1": 80.932, + "r_x2": 433.715, + "r_y2": 87.748, + "r_x3": 429.676, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 824, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 433.876, + "r_y0": 80.932, + "r_x1": 437.362, + "r_y1": 80.932, + "r_x2": 437.362, + "r_y2": 87.748, + "r_x3": 433.876, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "x", + "orig": "x", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 825, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 437.418, + "r_y0": 80.932, + "r_x1": 441.051, + "r_y1": 80.932, + "r_x2": 441.051, + "r_y2": 87.748, + "r_x3": 437.418, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 826, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 441.205, + "r_y0": 80.932, + "r_x1": 443.998, + "r_y1": 80.932, + "r_x2": 443.998, + "r_y2": 87.748, + "r_x3": 441.205, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 827, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.01, + "r_y0": 66.155, + "r_x1": 53.531, + "r_y1": 66.155, + "r_x2": 53.531, + "r_y2": 72.971, + "r_x3": 50.01, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 828, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.608, + "r_y0": 66.155, + "r_x1": 57.402, + "r_y1": 66.155, + "r_x2": 57.402, + "r_y2": 72.971, + "r_x3": 53.608, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 829, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.493, + "r_y0": 66.155, + "r_x1": 59.166, + "r_y1": 66.155, + "r_x2": 59.166, + "r_y2": 72.971, + "r_x3": 57.493, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 830, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.341, + "r_y0": 66.155, + "r_x1": 65.179, + "r_y1": 66.155, + "r_x2": 65.179, + "r_y2": 72.971, + "r_x3": 59.341, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 831, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.312, + "r_y0": 66.155, + "r_x1": 68.602, + "r_y1": 66.155, + "r_x2": 68.602, + "r_y2": 72.971, + "r_x3": 65.312, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 832, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.637, + "r_y0": 66.155, + "r_x1": 70.793, + "r_y1": 66.155, + "r_x2": 70.793, + "r_y2": 72.971, + "r_x3": 68.637, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 833, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.828, + "r_y0": 66.155, + "r_x1": 76.666, + "r_y1": 66.155, + "r_x2": 76.666, + "r_y2": 72.971, + "r_x3": 70.828, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 834, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.813, + "r_y0": 66.155, + "r_x1": 81.706, + "r_y1": 66.155, + "r_x2": 81.706, + "r_y2": 72.971, + "r_x3": 76.813, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 835, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.042, + "r_y0": 66.155, + "r_x1": 88.314, + "r_y1": 66.155, + "r_x2": 88.314, + "r_y2": 72.971, + "r_x3": 82.042, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 836, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.524, + "r_y0": 66.155, + "r_x1": 92.262, + "r_y1": 66.155, + "r_x2": 92.262, + "r_y2": 72.971, + "r_x3": 88.524, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 837, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.297, + "r_y0": 66.155, + "r_x1": 94.453, + "r_y1": 66.155, + "r_x2": 94.453, + "r_y2": 72.971, + "r_x3": 92.297, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 838, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.006, + "r_y0": 66.155, + "r_x1": 253.752, + "r_y1": 66.155, + "r_x2": 253.752, + "r_y2": 72.971, + "r_x3": 249.006, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 839, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.647, + "r_y0": 66.155, + "r_x1": 258.54, + "r_y1": 66.155, + "r_x2": 258.54, + "r_y2": 72.971, + "r_x3": 253.647, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 840, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 258.323, + "r_y0": 66.155, + "r_x1": 261.613, + "r_y1": 66.155, + "r_x2": 261.613, + "r_y2": 72.971, + "r_x3": 258.323, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 841, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.76, + "r_y0": 66.155, + "r_x1": 265.498, + "r_y1": 66.155, + "r_x2": 265.498, + "r_y2": 72.971, + "r_x3": 261.76, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 842, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 361.258, + "r_y0": 65.128, + "r_x1": 364.989, + "r_y1": 65.128, + "r_x2": 364.989, + "r_y2": 71.746, + "r_x3": 361.258, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 843, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 365.052, + "r_y0": 65.128, + "r_x1": 371.261, + "r_y1": 65.128, + "r_x2": 371.261, + "r_y2": 71.746, + "r_x3": 365.052, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 844, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 371.331, + "r_y0": 65.128, + "r_x1": 375.062, + "r_y1": 65.128, + "r_x2": 375.062, + "r_y2": 71.746, + "r_x3": 371.331, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 845, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 374.859, + "r_y0": 65.128, + "r_x1": 380.326, + "r_y1": 65.128, + "r_x2": 380.326, + "r_y2": 71.746, + "r_x3": 374.859, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 846, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 380.466, + "r_y0": 65.128, + "r_x1": 383.931, + "r_y1": 65.128, + "r_x2": 383.931, + "r_y2": 71.746, + "r_x3": 380.466, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 847, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 383.966, + "r_y0": 65.128, + "r_x1": 386.367, + "r_y1": 65.128, + "r_x2": 386.367, + "r_y2": 71.746, + "r_x3": 383.966, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 848, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 386.402, + "r_y0": 65.128, + "r_x1": 388.67, + "r_y1": 65.128, + "r_x2": 388.67, + "r_y2": 71.746, + "r_x3": 386.402, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 849, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 388.838, + "r_y0": 65.128, + "r_x1": 395.005, + "r_y1": 65.128, + "r_x2": 395.005, + "r_y2": 71.746, + "r_x3": 388.838, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 850, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.159, + "r_y0": 65.128, + "r_x1": 400.486, + "r_y1": 65.128, + "r_x2": 400.486, + "r_y2": 71.746, + "r_x3": 395.159, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 851, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.423, + "r_y0": 65.128, + "r_x1": 406.632, + "r_y1": 65.128, + "r_x2": 406.632, + "r_y2": 71.746, + "r_x3": 400.423, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 852, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 406.814, + "r_y0": 65.128, + "r_x1": 409.082, + "r_y1": 65.128, + "r_x2": 409.082, + "r_y2": 71.746, + "r_x3": 406.814, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 853, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.25, + "r_y0": 65.128, + "r_x1": 413.87, + "r_y1": 65.128, + "r_x2": 413.87, + "r_y2": 71.746, + "r_x3": 409.25, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 854, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.045, + "r_y0": 65.128, + "r_x1": 417.895, + "r_y1": 65.128, + "r_x2": 417.895, + "r_y2": 71.746, + "r_x3": 414.045, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 855, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 417.93, + "r_y0": 65.128, + "r_x1": 420.331, + "r_y1": 65.128, + "r_x2": 420.331, + "r_y2": 71.746, + "r_x3": 417.93, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 856, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 420.366, + "r_y0": 65.128, + "r_x1": 425.693, + "r_y1": 65.128, + "r_x2": 425.693, + "r_y2": 71.746, + "r_x3": 420.366, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 857, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.371, + "r_y0": 65.128, + "r_x1": 430.838, + "r_y1": 65.128, + "r_x2": 430.838, + "r_y2": 71.746, + "r_x3": 425.371, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 858, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 430.978, + "r_y0": 65.128, + "r_x1": 434.443, + "r_y1": 65.128, + "r_x2": 434.443, + "r_y2": 71.746, + "r_x3": 430.978, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 859, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 434.534, + "r_y0": 65.128, + "r_x1": 439.98, + "r_y1": 65.128, + "r_x2": 439.98, + "r_y2": 71.746, + "r_x3": 434.534, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 860, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 440.155, + "r_y0": 65.128, + "r_x1": 444.005, + "r_y1": 65.128, + "r_x2": 444.005, + "r_y2": 71.746, + "r_x3": 440.155, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 861, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 48.757, + "r_y0": 46.041, + "r_x1": 51.83, + "r_y1": 46.041, + "r_x2": 51.83, + "r_y2": 52.895, + "r_x3": 48.757, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\"", + "orig": "\"", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 862, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 51.942, + "r_y0": 46.041, + "r_x1": 53.566, + "r_y1": 46.041, + "r_x2": 53.566, + "r_y2": 52.895, + "r_x3": 51.942, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 863, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.783, + "r_y0": 46.041, + "r_x1": 57.444, + "r_y1": 46.041, + "r_x2": 57.444, + "r_y2": 52.895, + "r_x3": 53.783, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 864, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.654, + "r_y0": 46.041, + "r_x1": 60.741, + "r_y1": 46.041, + "r_x2": 60.741, + "r_y2": 52.895, + "r_x3": 57.654, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 865, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.0, + "r_y0": 46.041, + "r_x1": 64.78, + "r_y1": 46.041, + "r_x2": 64.78, + "r_y2": 52.895, + "r_x3": 61.0, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 866, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.004, + "r_y0": 46.041, + "r_x1": 66.684, + "r_y1": 46.041, + "r_x2": 66.684, + "r_y2": 52.895, + "r_x3": 65.004, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 867, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.922, + "r_y0": 46.041, + "r_x1": 70.338, + "r_y1": 46.041, + "r_x2": 70.338, + "r_y2": 52.895, + "r_x3": 66.922, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 868, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.597, + "r_y0": 46.041, + "r_x1": 73.054, + "r_y1": 46.041, + "r_x2": 73.054, + "r_y2": 52.895, + "r_x3": 70.597, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 869, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.166, + "r_y0": 46.041, + "r_x1": 78.535, + "r_y1": 46.041, + "r_x2": 78.535, + "r_y2": 52.895, + "r_x3": 73.166, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 870, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.696, + "r_y0": 46.041, + "r_x1": 81.384, + "r_y1": 46.041, + "r_x2": 81.384, + "r_y2": 52.895, + "r_x3": 78.696, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 871, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.139, + "r_y0": 46.041, + "r_x1": 84.212, + "r_y1": 46.041, + "r_x2": 84.212, + "r_y2": 52.895, + "r_x3": 81.139, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\"", + "orig": "\"", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 872, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.387, + "r_y0": 46.041, + "r_x1": 86.41, + "r_y1": 46.041, + "r_x2": 86.41, + "r_y2": 52.895, + "r_x3": 84.387, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 873, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.585, + "r_y0": 46.041, + "r_x1": 88.363, + "r_y1": 46.041, + "r_x2": 88.363, + "r_y2": 52.895, + "r_x3": 86.585, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 874, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.454, + "r_y0": 46.041, + "r_x1": 91.142, + "r_y1": 46.041, + "r_x2": 91.142, + "r_y2": 52.895, + "r_x3": 88.454, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 875, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.317, + "r_y0": 46.041, + "r_x1": 93.34, + "r_y1": 46.041, + "r_x2": 93.34, + "r_y2": 52.895, + "r_x3": 91.317, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 876, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.515, + "r_y0": 46.041, + "r_x1": 97.407, + "r_y1": 46.041, + "r_x2": 97.407, + "r_y2": 52.895, + "r_x3": 93.515, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 877, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.582, + "r_y0": 46.041, + "r_x1": 99.605, + "r_y1": 46.041, + "r_x2": 99.605, + "r_y2": 52.895, + "r_x3": 97.582, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 878, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.78, + "r_y0": 46.041, + "r_x1": 101.46, + "r_y1": 46.041, + "r_x2": 101.46, + "r_y2": 52.895, + "r_x3": 99.78, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 879, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.684, + "r_y0": 46.041, + "r_x1": 104.141, + "r_y1": 46.041, + "r_x2": 104.141, + "r_y2": 52.895, + "r_x3": 101.684, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 880, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 104.141, + "r_y0": 46.041, + "r_x1": 108.033, + "r_y1": 46.041, + "r_x2": 108.033, + "r_y2": 52.895, + "r_x3": 104.141, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 881, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.299, + "r_y0": 46.041, + "r_x1": 112.191, + "r_y1": 46.041, + "r_x2": 112.191, + "r_y2": 52.895, + "r_x3": 108.299, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 882, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.443, + "r_y0": 46.041, + "r_x1": 115.859, + "r_y1": 46.041, + "r_x2": 115.859, + "r_y2": 52.895, + "r_x3": 112.443, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 883, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 116.153, + "r_y0": 46.041, + "r_x1": 121.522, + "r_y1": 46.041, + "r_x2": 121.522, + "r_y2": 52.895, + "r_x3": 116.153, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 884, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.76, + "r_y0": 46.041, + "r_x1": 125.652, + "r_y1": 46.041, + "r_x2": 125.652, + "r_y2": 52.895, + "r_x3": 121.76, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 885, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.876, + "r_y0": 46.041, + "r_x1": 128.333, + "r_y1": 46.041, + "r_x2": 128.333, + "r_y2": 52.895, + "r_x3": 125.876, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 886, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.417, + "r_y0": 46.041, + "r_x1": 131.651, + "r_y1": 46.041, + "r_x2": 131.651, + "r_y2": 52.895, + "r_x3": 128.417, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 887, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 131.826, + "r_y0": 46.041, + "r_x1": 133.849, + "r_y1": 46.041, + "r_x2": 133.849, + "r_y2": 52.895, + "r_x3": 131.826, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 888, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.024, + "r_y0": 46.041, + "r_x1": 137.804, + "r_y1": 46.041, + "r_x2": 137.804, + "r_y2": 52.895, + "r_x3": 134.024, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 889, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.014, + "r_y0": 46.041, + "r_x1": 139.939, + "r_y1": 46.041, + "r_x2": 139.939, + "r_y2": 52.895, + "r_x3": 138.014, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 890, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.114, + "r_y0": 46.041, + "r_x1": 142.137, + "r_y1": 46.041, + "r_x2": 142.137, + "r_y2": 52.895, + "r_x3": 140.114, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 891, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.312, + "r_y0": 46.041, + "r_x1": 143.992, + "r_y1": 46.041, + "r_x2": 143.992, + "r_y2": 52.895, + "r_x3": 142.312, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 892, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.237, + "r_y0": 46.041, + "r_x1": 147.898, + "r_y1": 46.041, + "r_x2": 147.898, + "r_y2": 52.895, + "r_x3": 144.237, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 893, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.122, + "r_y0": 46.041, + "r_x1": 151.538, + "r_y1": 46.041, + "r_x2": 151.538, + "r_y2": 52.895, + "r_x3": 148.122, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 894, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 151.713, + "r_y0": 46.041, + "r_x1": 153.736, + "r_y1": 46.041, + "r_x2": 153.736, + "r_y2": 52.895, + "r_x3": 151.713, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 895, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.911, + "r_y0": 46.041, + "r_x1": 155.535, + "r_y1": 46.041, + "r_x2": 155.535, + "r_y2": 52.895, + "r_x3": 153.911, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "I", + "orig": "I", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 896, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.752, + "r_y0": 46.041, + "r_x1": 159.413, + "r_y1": 46.041, + "r_x2": 159.413, + "r_y2": 52.895, + "r_x3": 155.752, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 897, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.595, + "r_y0": 46.041, + "r_x1": 161.275, + "r_y1": 46.041, + "r_x2": 161.275, + "r_y2": 52.895, + "r_x3": 159.595, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 898, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.513, + "r_y0": 46.041, + "r_x1": 164.929, + "r_y1": 46.041, + "r_x2": 164.929, + "r_y2": 52.895, + "r_x3": 161.513, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 899, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 165.188, + "r_y0": 46.041, + "r_x1": 167.645, + "r_y1": 46.041, + "r_x2": 167.645, + "r_y2": 52.895, + "r_x3": 165.188, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 900, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.75, + "r_y0": 46.041, + "r_x1": 171.411, + "r_y1": 46.041, + "r_x2": 171.411, + "r_y2": 52.895, + "r_x3": 167.75, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 901, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.635, + "r_y0": 46.041, + "r_x1": 175.527, + "r_y1": 46.041, + "r_x2": 175.527, + "r_y2": 52.895, + "r_x3": 171.635, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 902, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.758, + "r_y0": 46.041, + "r_x1": 177.438, + "r_y1": 46.041, + "r_x2": 177.438, + "r_y2": 52.895, + "r_x3": 175.758, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 903, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.62, + "r_y0": 46.041, + "r_x1": 179.398, + "r_y1": 46.041, + "r_x2": 179.398, + "r_y2": 52.895, + "r_x3": 177.62, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 904, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.559, + "r_y0": 46.041, + "r_x1": 183.339, + "r_y1": 46.041, + "r_x2": 183.339, + "r_y2": 52.895, + "r_x3": 179.559, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 905, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.591, + "r_y0": 46.041, + "r_x1": 187.252, + "r_y1": 46.041, + "r_x2": 187.252, + "r_y2": 52.895, + "r_x3": 183.591, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 906, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.476, + "r_y0": 46.041, + "r_x1": 191.368, + "r_y1": 46.041, + "r_x2": 191.368, + "r_y2": 52.895, + "r_x3": 187.476, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 907, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.592, + "r_y0": 46.041, + "r_x1": 193.146, + "r_y1": 46.041, + "r_x2": 193.146, + "r_y2": 52.895, + "r_x3": 191.592, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 908, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.321, + "r_y0": 46.041, + "r_x1": 195.344, + "r_y1": 46.041, + "r_x2": 195.344, + "r_y2": 52.895, + "r_x3": 193.321, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 909, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.519, + "r_y0": 46.041, + "r_x1": 200.146, + "r_y1": 46.041, + "r_x2": 200.146, + "r_y2": 52.895, + "r_x3": 195.519, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 910, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.118, + "r_y0": 46.041, + "r_x1": 203.779, + "r_y1": 46.041, + "r_x2": 203.779, + "r_y2": 52.895, + "r_x3": 200.118, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 911, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.003, + "r_y0": 46.041, + "r_x1": 207.895, + "r_y1": 46.041, + "r_x2": 207.895, + "r_y2": 52.895, + "r_x3": 204.003, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 912, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.147, + "r_y0": 46.041, + "r_x1": 213.516, + "r_y1": 46.041, + "r_x2": 213.516, + "r_y2": 52.895, + "r_x3": 208.147, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 913, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.761, + "r_y0": 46.041, + "r_x1": 217.653, + "r_y1": 46.041, + "r_x2": 217.653, + "r_y2": 52.895, + "r_x3": 213.761, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 914, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.926, + "r_y0": 46.041, + "r_x1": 221.342, + "r_y1": 46.041, + "r_x2": 221.342, + "r_y2": 52.895, + "r_x3": 217.926, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 915, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.601, + "r_y0": 46.041, + "r_x1": 224.058, + "r_y1": 46.041, + "r_x2": 224.058, + "r_y2": 52.895, + "r_x3": 221.601, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 916, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.233, + "r_y0": 46.041, + "r_x1": 226.256, + "r_y1": 46.041, + "r_x2": 226.256, + "r_y2": 52.895, + "r_x3": 224.233, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 917, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 226.431, + "r_y0": 46.041, + "r_x1": 230.211, + "r_y1": 46.041, + "r_x2": 230.211, + "r_y2": 52.895, + "r_x3": 226.431, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 918, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 230.421, + "r_y0": 46.041, + "r_x1": 232.346, + "r_y1": 46.041, + "r_x2": 232.346, + "r_y2": 52.895, + "r_x3": 230.421, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 919, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.521, + "r_y0": 46.041, + "r_x1": 234.544, + "r_y1": 46.041, + "r_x2": 234.544, + "r_y2": 52.895, + "r_x3": 232.521, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 920, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.719, + "r_y0": 46.041, + "r_x1": 239.346, + "r_y1": 46.041, + "r_x2": 239.346, + "r_y2": 52.895, + "r_x3": 234.719, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 921, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.339, + "r_y0": 46.041, + "r_x1": 243.119, + "r_y1": 46.041, + "r_x2": 243.119, + "r_y2": 52.895, + "r_x3": 239.339, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 922, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.378, + "r_y0": 46.041, + "r_x1": 248.747, + "r_y1": 46.041, + "r_x2": 248.747, + "r_y2": 52.895, + "r_x3": 243.378, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 923, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 248.985, + "r_y0": 46.041, + "r_x1": 254.354, + "r_y1": 46.041, + "r_x2": 254.354, + "r_y2": 52.895, + "r_x3": 248.985, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 924, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.599, + "r_y0": 46.041, + "r_x1": 258.015, + "r_y1": 46.041, + "r_x2": 258.015, + "r_y2": 52.895, + "r_x3": 254.599, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 925, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 258.274, + "r_y0": 46.041, + "r_x1": 260.731, + "r_y1": 46.041, + "r_x2": 260.731, + "r_y2": 52.895, + "r_x3": 258.274, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 926, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.717, + "r_y0": 46.041, + "r_x1": 263.804, + "r_y1": 46.041, + "r_x2": 263.804, + "r_y2": 52.895, + "r_x3": 260.717, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 927, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.07, + "r_y0": 46.041, + "r_x1": 267.486, + "r_y1": 46.041, + "r_x2": 267.486, + "r_y2": 52.895, + "r_x3": 264.07, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 928, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.542, + "r_y0": 46.041, + "r_x1": 269.565, + "r_y1": 46.041, + "r_x2": 269.565, + "r_y2": 52.895, + "r_x3": 267.542, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 929, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.784, + "r_y0": 46.025, + "r_x1": 272.096, + "r_y1": 46.025, + "r_x2": 272.096, + "r_y2": 53.681, + "r_x3": 269.784, + "r_y3": 53.681, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_4", + "font_name": "/FNCVMO+FuturaStd-Medium" + }, + { + "index": 930, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.0, + "r_y0": 731.606, + "r_x1": 65.84, + "r_y1": 731.606, + "r_x2": 65.84, + "r_y2": 754.296, + "r_x3": 50.0, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 931, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.704, + "r_y0": 731.606, + "r_x1": 87.992, + "r_y1": 731.606, + "r_x2": 87.992, + "r_y2": 754.296, + "r_x3": 66.704, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 932, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.832, + "r_y0": 731.606, + "r_x1": 112.424, + "r_y1": 731.606, + "r_x2": 112.424, + "r_y2": 754.296, + "r_x3": 88.832, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 933, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.72, + "r_y0": 731.606, + "r_x1": 137.312, + "r_y1": 731.606, + "r_x2": 137.312, + "r_y2": 754.296, + "r_x3": 113.72, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 934, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.488, + "r_y0": 731.606, + "r_x1": 151.688, + "r_y1": 731.606, + "r_x2": 151.688, + "r_y2": 754.296, + "r_x3": 138.488, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 935, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.792, + "r_y0": 731.606, + "r_x1": 169.112, + "r_y1": 731.606, + "r_x2": 169.112, + "r_y2": 754.296, + "r_x3": 152.792, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 936, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.784, + "r_y0": 731.606, + "r_x1": 185.624, + "r_y1": 731.606, + "r_x2": 185.624, + "r_y2": 754.296, + "r_x3": 169.784, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 937, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.8, + "r_y0": 731.606, + "r_x1": 194.576, + "r_y1": 731.606, + "r_x2": 194.576, + "r_y2": 754.296, + "r_x3": 186.8, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 938, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.56, + "r_y0": 731.606, + "r_x1": 214.304, + "r_y1": 731.606, + "r_x2": 214.304, + "r_y2": 754.296, + "r_x3": 195.56, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 939, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.312, + "r_y0": 731.606, + "r_x1": 227.192, + "r_y1": 731.606, + "r_x2": 227.192, + "r_y2": 754.296, + "r_x3": 215.312, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 940, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.392, + "r_y0": 731.606, + "r_x1": 236.624, + "r_y1": 731.606, + "r_x2": 236.624, + "r_y2": 754.296, + "r_x3": 228.392, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 941, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.824, + "r_y0": 731.606, + "r_x1": 245.6, + "r_y1": 731.606, + "r_x2": 245.6, + "r_y2": 754.296, + "r_x3": 237.824, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 942, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 246.704, + "r_y0": 731.606, + "r_x1": 267.848, + "r_y1": 731.606, + "r_x2": 267.848, + "r_y2": 754.296, + "r_x3": 246.704, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 943, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 268.904, + "r_y0": 731.606, + "r_x1": 287.168, + "r_y1": 731.606, + "r_x2": 287.168, + "r_y2": 754.296, + "r_x3": 268.904, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 944, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 287.408, + "r_y0": 731.606, + "r_x1": 308.696, + "r_y1": 731.606, + "r_x2": 308.696, + "r_y2": 754.296, + "r_x3": 287.408, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 945, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.872, + "r_y0": 731.606, + "r_x1": 317.648, + "r_y1": 731.606, + "r_x2": 317.648, + "r_y2": 754.296, + "r_x3": 309.872, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 946, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.752, + "r_y0": 731.606, + "r_x1": 334.592, + "r_y1": 731.606, + "r_x2": 334.592, + "r_y2": 754.296, + "r_x3": 318.752, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 947, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 335.744, + "r_y0": 731.606, + "r_x1": 348.944, + "r_y1": 731.606, + "r_x2": 348.944, + "r_y2": 754.296, + "r_x3": 335.744, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 948, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 196.895, + "r_x1": 54.553, + "r_y1": 196.895, + "r_x2": 54.553, + "r_y2": 202.534, + "r_x3": 50.887, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 949, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.553, + "r_y0": 196.895, + "r_x1": 57.889, + "r_y1": 196.895, + "r_x2": 57.889, + "r_y2": 202.534, + "r_x3": 54.553, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 950, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.889, + "r_y0": 196.895, + "r_x1": 61.225, + "r_y1": 196.895, + "r_x2": 61.225, + "r_y2": 202.534, + "r_x3": 57.889, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 951, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.225, + "r_y0": 196.895, + "r_x1": 64.225, + "r_y1": 196.895, + "r_x2": 64.225, + "r_y2": 202.534, + "r_x3": 61.225, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 952, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 64.225, + "r_y0": 196.895, + "r_x1": 67.561, + "r_y1": 196.895, + "r_x2": 67.561, + "r_y2": 202.534, + "r_x3": 64.225, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 953, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.561, + "r_y0": 196.895, + "r_x1": 69.229, + "r_y1": 196.895, + "r_x2": 69.229, + "r_y2": 202.534, + "r_x3": 67.561, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 954, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.229, + "r_y0": 196.895, + "r_x1": 70.561, + "r_y1": 196.895, + "r_x2": 70.561, + "r_y2": 202.534, + "r_x3": 69.229, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 955, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.561, + "r_y0": 196.895, + "r_x1": 72.229, + "r_y1": 196.895, + "r_x2": 72.229, + "r_y2": 202.534, + "r_x3": 70.561, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 956, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.229, + "r_y0": 196.895, + "r_x1": 75.565, + "r_y1": 196.895, + "r_x2": 75.565, + "r_y2": 202.534, + "r_x3": 72.229, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 957, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.565, + "r_y0": 196.895, + "r_x1": 80.563, + "r_y1": 196.895, + "r_x2": 80.563, + "r_y2": 202.534, + "r_x3": 75.565, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 958, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.563, + "r_y0": 196.895, + "r_x1": 83.563, + "r_y1": 196.895, + "r_x2": 83.563, + "r_y2": 202.534, + "r_x3": 80.563, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 959, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.563, + "r_y0": 196.895, + "r_x1": 85.231, + "r_y1": 196.895, + "r_x2": 85.231, + "r_y2": 202.534, + "r_x3": 83.563, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 960, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.231, + "r_y0": 196.895, + "r_x1": 88.567, + "r_y1": 196.895, + "r_x2": 88.567, + "r_y2": 202.534, + "r_x3": 85.231, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 961, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.567, + "r_y0": 196.895, + "r_x1": 90.565, + "r_y1": 196.895, + "r_x2": 90.565, + "r_y2": 202.534, + "r_x3": 88.567, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 962, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.565, + "r_y0": 196.895, + "r_x1": 93.901, + "r_y1": 196.895, + "r_x2": 93.901, + "r_y2": 202.534, + "r_x3": 90.565, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 963, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.901, + "r_y0": 196.895, + "r_x1": 95.569, + "r_y1": 196.895, + "r_x2": 95.569, + "r_y2": 202.534, + "r_x3": 93.901, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 964, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.569, + "r_y0": 196.895, + "r_x1": 98.569, + "r_y1": 196.895, + "r_x2": 98.569, + "r_y2": 202.534, + "r_x3": 95.569, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 965, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.569, + "r_y0": 196.895, + "r_x1": 101.905, + "r_y1": 196.895, + "r_x2": 101.905, + "r_y2": 202.534, + "r_x3": 98.569, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 966, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.905, + "r_y0": 196.895, + "r_x1": 105.241, + "r_y1": 196.895, + "r_x2": 105.241, + "r_y2": 202.534, + "r_x3": 101.905, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 967, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.241, + "r_y0": 196.895, + "r_x1": 106.909, + "r_y1": 196.895, + "r_x2": 106.909, + "r_y2": 202.534, + "r_x3": 105.241, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 968, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.909, + "r_y0": 196.895, + "r_x1": 108.907, + "r_y1": 196.895, + "r_x2": 108.907, + "r_y2": 202.534, + "r_x3": 106.909, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 969, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.907, + "r_y0": 196.895, + "r_x1": 112.243, + "r_y1": 196.895, + "r_x2": 112.243, + "r_y2": 202.534, + "r_x3": 108.907, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 970, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.243, + "r_y0": 196.895, + "r_x1": 113.575, + "r_y1": 196.895, + "r_x2": 113.575, + "r_y2": 202.534, + "r_x3": 112.243, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 971, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.575, + "r_y0": 196.895, + "r_x1": 114.907, + "r_y1": 196.895, + "r_x2": 114.907, + "r_y2": 202.534, + "r_x3": 113.575, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 972, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.907, + "r_y0": 196.895, + "r_x1": 118.243, + "r_y1": 196.895, + "r_x2": 118.243, + "r_y2": 202.534, + "r_x3": 114.907, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 973, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 118.243, + "r_y0": 196.895, + "r_x1": 121.579, + "r_y1": 196.895, + "r_x2": 121.579, + "r_y2": 202.534, + "r_x3": 118.243, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 974, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.579, + "r_y0": 196.895, + "r_x1": 123.247, + "r_y1": 196.895, + "r_x2": 123.247, + "r_y2": 202.534, + "r_x3": 121.579, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 975, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 123.247, + "r_y0": 196.895, + "r_x1": 126.583, + "r_y1": 196.895, + "r_x2": 126.583, + "r_y2": 202.534, + "r_x3": 123.247, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 976, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.583, + "r_y0": 196.895, + "r_x1": 129.583, + "r_y1": 196.895, + "r_x2": 129.583, + "r_y2": 202.534, + "r_x3": 126.583, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 977, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 129.583, + "r_y0": 196.895, + "r_x1": 131.251, + "r_y1": 196.895, + "r_x2": 131.251, + "r_y2": 202.534, + "r_x3": 129.583, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 978, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 131.251, + "r_y0": 196.895, + "r_x1": 132.919, + "r_y1": 196.895, + "r_x2": 132.919, + "r_y2": 202.534, + "r_x3": 131.251, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 979, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.919, + "r_y0": 196.895, + "r_x1": 136.255, + "r_y1": 196.895, + "r_x2": 136.255, + "r_y2": 202.534, + "r_x3": 132.919, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 980, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 136.255, + "r_y0": 196.895, + "r_x1": 139.591, + "r_y1": 196.895, + "r_x2": 139.591, + "r_y2": 202.534, + "r_x3": 136.255, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 981, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.591, + "r_y0": 196.895, + "r_x1": 141.259, + "r_y1": 196.895, + "r_x2": 141.259, + "r_y2": 202.534, + "r_x3": 139.591, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 982, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.259, + "r_y0": 196.895, + "r_x1": 145.591, + "r_y1": 196.895, + "r_x2": 145.591, + "r_y2": 202.534, + "r_x3": 141.259, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 983, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.605, + "r_y0": 196.895, + "r_x1": 147.273, + "r_y1": 196.895, + "r_x2": 147.273, + "r_y2": 202.534, + "r_x3": 145.605, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 984, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.273, + "r_y0": 196.895, + "r_x1": 151.275, + "r_y1": 196.895, + "r_x2": 151.275, + "r_y2": 202.534, + "r_x3": 147.273, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 985, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 151.275, + "r_y0": 196.895, + "r_x1": 152.943, + "r_y1": 196.895, + "r_x2": 152.943, + "r_y2": 202.534, + "r_x3": 151.275, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 986, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.943, + "r_y0": 196.895, + "r_x1": 154.611, + "r_y1": 196.895, + "r_x2": 154.611, + "r_y2": 202.534, + "r_x3": 152.943, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 987, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.611, + "r_y0": 196.895, + "r_x1": 157.947, + "r_y1": 196.895, + "r_x2": 157.947, + "r_y2": 202.534, + "r_x3": 154.611, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 988, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.947, + "r_y0": 196.895, + "r_x1": 161.283, + "r_y1": 196.895, + "r_x2": 161.283, + "r_y2": 202.534, + "r_x3": 157.947, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 989, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.283, + "r_y0": 196.895, + "r_x1": 164.283, + "r_y1": 196.895, + "r_x2": 164.283, + "r_y2": 202.534, + "r_x3": 161.283, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 990, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.283, + "r_y0": 196.895, + "r_x1": 167.619, + "r_y1": 196.895, + "r_x2": 167.619, + "r_y2": 202.534, + "r_x3": 164.283, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 991, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.619, + "r_y0": 196.895, + "r_x1": 169.617, + "r_y1": 196.895, + "r_x2": 169.617, + "r_y2": 202.534, + "r_x3": 167.619, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 992, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.617, + "r_y0": 196.895, + "r_x1": 172.953, + "r_y1": 196.895, + "r_x2": 172.953, + "r_y2": 202.534, + "r_x3": 169.617, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 993, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.953, + "r_y0": 196.895, + "r_x1": 177.951, + "r_y1": 196.895, + "r_x2": 177.951, + "r_y2": 202.534, + "r_x3": 172.953, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 994, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.951, + "r_y0": 196.895, + "r_x1": 181.287, + "r_y1": 196.895, + "r_x2": 181.287, + "r_y2": 202.534, + "r_x3": 177.951, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 995, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.287, + "r_y0": 196.895, + "r_x1": 184.623, + "r_y1": 196.895, + "r_x2": 184.623, + "r_y2": 202.534, + "r_x3": 181.287, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 996, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.623, + "r_y0": 196.895, + "r_x1": 186.291, + "r_y1": 196.895, + "r_x2": 186.291, + "r_y2": 202.534, + "r_x3": 184.623, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 997, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.291, + "r_y0": 196.895, + "r_x1": 187.959, + "r_y1": 196.895, + "r_x2": 187.959, + "r_y2": 202.534, + "r_x3": 186.291, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 998, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.959, + "r_y0": 196.895, + "r_x1": 191.295, + "r_y1": 196.895, + "r_x2": 191.295, + "r_y2": 202.534, + "r_x3": 187.959, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 999, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.295, + "r_y0": 196.895, + "r_x1": 194.631, + "r_y1": 196.895, + "r_x2": 194.631, + "r_y2": 202.534, + "r_x3": 191.295, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1000, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.631, + "r_y0": 196.895, + "r_x1": 197.967, + "r_y1": 196.895, + "r_x2": 197.967, + "r_y2": 202.534, + "r_x3": 194.631, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1001, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 197.967, + "r_y0": 196.895, + "r_x1": 199.635, + "r_y1": 196.895, + "r_x2": 199.635, + "r_y2": 202.534, + "r_x3": 197.967, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1002, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.635, + "r_y0": 196.895, + "r_x1": 202.971, + "r_y1": 196.895, + "r_x2": 202.971, + "r_y2": 202.534, + "r_x3": 199.635, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1003, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.971, + "r_y0": 196.895, + "r_x1": 206.307, + "r_y1": 196.895, + "r_x2": 206.307, + "r_y2": 202.534, + "r_x3": 202.971, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1004, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.307, + "r_y0": 196.895, + "r_x1": 207.975, + "r_y1": 196.895, + "r_x2": 207.975, + "r_y2": 202.534, + "r_x3": 206.307, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1005, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 207.975, + "r_y0": 196.895, + "r_x1": 211.311, + "r_y1": 196.895, + "r_x2": 211.311, + "r_y2": 202.534, + "r_x3": 207.975, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1006, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 211.311, + "r_y0": 196.895, + "r_x1": 214.647, + "r_y1": 196.895, + "r_x2": 214.647, + "r_y2": 202.534, + "r_x3": 211.311, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1007, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 214.647, + "r_y0": 196.895, + "r_x1": 216.645, + "r_y1": 196.895, + "r_x2": 216.645, + "r_y2": 202.534, + "r_x3": 214.647, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1008, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.645, + "r_y0": 196.895, + "r_x1": 217.977, + "r_y1": 196.895, + "r_x2": 217.977, + "r_y2": 202.534, + "r_x3": 216.645, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1009, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.977, + "r_y0": 196.895, + "r_x1": 220.977, + "r_y1": 196.895, + "r_x2": 220.977, + "r_y2": 202.534, + "r_x3": 217.977, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "z", + "orig": "z", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1010, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.977, + "r_y0": 196.895, + "r_x1": 224.313, + "r_y1": 196.895, + "r_x2": 224.313, + "r_y2": 202.534, + "r_x3": 220.977, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1011, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.313, + "r_y0": 196.895, + "r_x1": 227.649, + "r_y1": 196.895, + "r_x2": 227.649, + "r_y2": 202.534, + "r_x3": 224.313, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1012, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.649, + "r_y0": 196.895, + "r_x1": 229.317, + "r_y1": 196.895, + "r_x2": 229.317, + "r_y2": 202.534, + "r_x3": 227.649, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1013, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.317, + "r_y0": 196.895, + "r_x1": 230.985, + "r_y1": 196.895, + "r_x2": 230.985, + "r_y2": 202.534, + "r_x3": 229.317, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1014, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 230.985, + "r_y0": 196.895, + "r_x1": 234.321, + "r_y1": 196.895, + "r_x2": 234.321, + "r_y2": 202.534, + "r_x3": 230.985, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1015, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.321, + "r_y0": 196.895, + "r_x1": 236.319, + "r_y1": 196.895, + "r_x2": 236.319, + "r_y2": 202.534, + "r_x3": 234.321, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1016, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.319, + "r_y0": 196.895, + "r_x1": 237.987, + "r_y1": 196.895, + "r_x2": 237.987, + "r_y2": 202.534, + "r_x3": 236.319, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1017, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.987, + "r_y0": 196.895, + "r_x1": 241.323, + "r_y1": 196.895, + "r_x2": 241.323, + "r_y2": 202.534, + "r_x3": 237.987, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1018, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 241.323, + "r_y0": 196.895, + "r_x1": 244.323, + "r_y1": 196.895, + "r_x2": 244.323, + "r_y2": 202.534, + "r_x3": 241.323, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "x", + "orig": "x", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1019, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.323, + "r_y0": 196.895, + "r_x1": 247.659, + "r_y1": 196.895, + "r_x2": 247.659, + "r_y2": 202.534, + "r_x3": 244.323, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1020, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.659, + "r_y0": 196.895, + "r_x1": 250.995, + "r_y1": 196.895, + "r_x2": 250.995, + "r_y2": 202.534, + "r_x3": 247.659, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1021, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 250.995, + "r_y0": 196.895, + "r_x1": 252.993, + "r_y1": 196.895, + "r_x2": 252.993, + "r_y2": 202.534, + "r_x3": 250.995, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1022, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.993, + "r_y0": 196.895, + "r_x1": 254.661, + "r_y1": 196.895, + "r_x2": 254.661, + "r_y2": 202.534, + "r_x3": 252.993, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1023, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.668, + "r_y0": 196.895, + "r_x1": 256.336, + "r_y1": 196.895, + "r_x2": 256.336, + "r_y2": 202.534, + "r_x3": 254.668, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1024, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.342, + "r_y0": 196.895, + "r_x1": 259.678, + "r_y1": 196.895, + "r_x2": 259.678, + "r_y2": 202.534, + "r_x3": 256.342, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1025, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.678, + "r_y0": 196.895, + "r_x1": 263.014, + "r_y1": 196.895, + "r_x2": 263.014, + "r_y2": 202.534, + "r_x3": 259.678, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1026, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.014, + "r_y0": 196.895, + "r_x1": 264.346, + "r_y1": 196.895, + "r_x2": 264.346, + "r_y2": 202.534, + "r_x3": 263.014, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1027, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.346, + "r_y0": 196.895, + "r_x1": 267.346, + "r_y1": 196.895, + "r_x2": 267.346, + "r_y2": 202.534, + "r_x3": 264.346, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1028, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.346, + "r_y0": 196.895, + "r_x1": 269.014, + "r_y1": 196.895, + "r_x2": 269.014, + "r_y2": 202.534, + "r_x3": 267.346, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1029, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.014, + "r_y0": 196.895, + "r_x1": 270.682, + "r_y1": 196.895, + "r_x2": 270.682, + "r_y2": 202.534, + "r_x3": 269.014, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1030, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.682, + "r_y0": 196.895, + "r_x1": 274.018, + "r_y1": 196.895, + "r_x2": 274.018, + "r_y2": 202.534, + "r_x3": 270.682, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1031, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.018, + "r_y0": 196.895, + "r_x1": 275.686, + "r_y1": 196.895, + "r_x2": 275.686, + "r_y2": 202.534, + "r_x3": 274.018, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1032, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.686, + "r_y0": 196.895, + "r_x1": 277.354, + "r_y1": 196.895, + "r_x2": 277.354, + "r_y2": 202.534, + "r_x3": 275.686, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1033, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.354, + "r_y0": 196.895, + "r_x1": 280.69, + "r_y1": 196.895, + "r_x2": 280.69, + "r_y2": 202.534, + "r_x3": 277.354, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1034, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 280.69, + "r_y0": 196.895, + "r_x1": 284.026, + "r_y1": 196.895, + "r_x2": 284.026, + "r_y2": 202.534, + "r_x3": 280.69, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1035, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 284.026, + "r_y0": 196.895, + "r_x1": 285.694, + "r_y1": 196.895, + "r_x2": 285.694, + "r_y2": 202.534, + "r_x3": 284.026, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1036, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 189.696, + "r_x1": 53.887, + "r_y1": 189.696, + "r_x2": 53.887, + "r_y2": 195.334, + "r_x3": 50.887, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1037, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.887, + "r_y0": 189.696, + "r_x1": 57.223, + "r_y1": 189.696, + "r_x2": 57.223, + "r_y2": 195.334, + "r_x3": 53.887, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1038, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.223, + "r_y0": 189.696, + "r_x1": 60.559, + "r_y1": 189.696, + "r_x2": 60.559, + "r_y2": 195.334, + "r_x3": 57.223, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1039, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.559, + "r_y0": 189.696, + "r_x1": 63.895, + "r_y1": 189.696, + "r_x2": 63.895, + "r_y2": 195.334, + "r_x3": 60.559, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1040, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.895, + "r_y0": 189.696, + "r_x1": 65.563, + "r_y1": 189.696, + "r_x2": 65.563, + "r_y2": 195.334, + "r_x3": 63.895, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1041, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.563, + "r_y0": 189.696, + "r_x1": 67.561, + "r_y1": 189.696, + "r_x2": 67.561, + "r_y2": 195.334, + "r_x3": 65.563, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1042, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.561, + "r_y0": 189.696, + "r_x1": 70.561, + "r_y1": 189.696, + "r_x2": 70.561, + "r_y2": 195.334, + "r_x3": 67.561, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1043, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.561, + "r_y0": 189.696, + "r_x1": 72.229, + "r_y1": 189.696, + "r_x2": 72.229, + "r_y2": 195.334, + "r_x3": 70.561, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1044, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.229, + "r_y0": 189.696, + "r_x1": 75.565, + "r_y1": 189.696, + "r_x2": 75.565, + "r_y2": 195.334, + "r_x3": 72.229, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1045, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.565, + "r_y0": 189.696, + "r_x1": 77.233, + "r_y1": 189.696, + "r_x2": 77.233, + "r_y2": 195.334, + "r_x3": 75.565, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1046, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.233, + "r_y0": 189.696, + "r_x1": 78.901, + "r_y1": 189.696, + "r_x2": 78.901, + "r_y2": 195.334, + "r_x3": 77.233, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1047, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.901, + "r_y0": 189.696, + "r_x1": 82.237, + "r_y1": 189.696, + "r_x2": 82.237, + "r_y2": 195.334, + "r_x3": 78.901, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1048, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.237, + "r_y0": 189.696, + "r_x1": 83.569, + "r_y1": 189.696, + "r_x2": 83.569, + "r_y2": 195.334, + "r_x3": 82.237, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1049, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.569, + "r_y0": 189.696, + "r_x1": 85.237, + "r_y1": 189.696, + "r_x2": 85.237, + "r_y2": 195.334, + "r_x3": 83.569, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1050, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.237, + "r_y0": 189.696, + "r_x1": 86.569, + "r_y1": 189.696, + "r_x2": 86.569, + "r_y2": 195.334, + "r_x3": 85.237, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1051, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.569, + "r_y0": 189.696, + "r_x1": 91.567, + "r_y1": 189.696, + "r_x2": 91.567, + "r_y2": 195.334, + "r_x3": 86.569, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1052, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.567, + "r_y0": 189.696, + "r_x1": 94.903, + "r_y1": 189.696, + "r_x2": 94.903, + "r_y2": 195.334, + "r_x3": 91.567, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1053, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.903, + "r_y0": 189.696, + "r_x1": 96.571, + "r_y1": 189.696, + "r_x2": 96.571, + "r_y2": 195.334, + "r_x3": 94.903, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1054, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.571, + "r_y0": 189.696, + "r_x1": 99.907, + "r_y1": 189.696, + "r_x2": 99.907, + "r_y2": 195.334, + "r_x3": 96.571, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1055, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.907, + "r_y0": 189.696, + "r_x1": 101.575, + "r_y1": 189.696, + "r_x2": 101.575, + "r_y2": 195.334, + "r_x3": 99.907, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1056, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.575, + "r_y0": 189.696, + "r_x1": 104.911, + "r_y1": 189.696, + "r_x2": 104.911, + "r_y2": 195.334, + "r_x3": 101.575, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1057, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 104.911, + "r_y0": 189.696, + "r_x1": 108.247, + "r_y1": 189.696, + "r_x2": 108.247, + "r_y2": 195.334, + "r_x3": 104.911, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1058, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.247, + "r_y0": 189.696, + "r_x1": 111.247, + "r_y1": 189.696, + "r_x2": 111.247, + "r_y2": 195.334, + "r_x3": 108.247, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1059, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 111.247, + "r_y0": 189.696, + "r_x1": 112.915, + "r_y1": 189.696, + "r_x2": 112.915, + "r_y2": 195.334, + "r_x3": 111.247, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1060, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.915, + "r_y0": 189.696, + "r_x1": 114.247, + "r_y1": 189.696, + "r_x2": 114.247, + "r_y2": 195.334, + "r_x3": 112.915, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1061, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.247, + "r_y0": 189.696, + "r_x1": 117.583, + "r_y1": 189.696, + "r_x2": 117.583, + "r_y2": 195.334, + "r_x3": 114.247, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1062, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.583, + "r_y0": 189.696, + "r_x1": 120.919, + "r_y1": 189.696, + "r_x2": 120.919, + "r_y2": 195.334, + "r_x3": 117.583, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1063, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 120.919, + "r_y0": 189.696, + "r_x1": 122.587, + "r_y1": 189.696, + "r_x2": 122.587, + "r_y2": 195.334, + "r_x3": 120.919, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1064, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.587, + "r_y0": 189.696, + "r_x1": 123.919, + "r_y1": 189.696, + "r_x2": 123.919, + "r_y2": 195.334, + "r_x3": 122.587, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1065, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 123.919, + "r_y0": 189.696, + "r_x1": 127.255, + "r_y1": 189.696, + "r_x2": 127.255, + "r_y2": 195.334, + "r_x3": 123.919, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1066, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 127.255, + "r_y0": 189.696, + "r_x1": 130.591, + "r_y1": 189.696, + "r_x2": 130.591, + "r_y2": 195.334, + "r_x3": 127.255, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1067, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.591, + "r_y0": 189.696, + "r_x1": 132.259, + "r_y1": 189.696, + "r_x2": 132.259, + "r_y2": 195.334, + "r_x3": 130.591, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1068, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.259, + "r_y0": 189.696, + "r_x1": 133.927, + "r_y1": 189.696, + "r_x2": 133.927, + "r_y2": 195.334, + "r_x3": 132.259, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1069, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 133.927, + "r_y0": 189.696, + "r_x1": 137.263, + "r_y1": 189.696, + "r_x2": 137.263, + "r_y2": 195.334, + "r_x3": 133.927, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1070, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.263, + "r_y0": 189.696, + "r_x1": 139.261, + "r_y1": 189.696, + "r_x2": 139.261, + "r_y2": 195.334, + "r_x3": 137.263, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1071, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.261, + "r_y0": 189.696, + "r_x1": 140.929, + "r_y1": 189.696, + "r_x2": 140.929, + "r_y2": 195.334, + "r_x3": 139.261, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1072, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.929, + "r_y0": 189.696, + "r_x1": 144.265, + "r_y1": 189.696, + "r_x2": 144.265, + "r_y2": 195.334, + "r_x3": 140.929, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1073, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.265, + "r_y0": 189.696, + "r_x1": 147.265, + "r_y1": 189.696, + "r_x2": 147.265, + "r_y2": 195.334, + "r_x3": 144.265, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1074, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.265, + "r_y0": 189.696, + "r_x1": 150.601, + "r_y1": 189.696, + "r_x2": 150.601, + "r_y2": 195.334, + "r_x3": 147.265, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1075, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.601, + "r_y0": 189.696, + "r_x1": 152.269, + "r_y1": 189.696, + "r_x2": 152.269, + "r_y2": 195.334, + "r_x3": 150.601, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1076, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.269, + "r_y0": 189.696, + "r_x1": 155.605, + "r_y1": 189.696, + "r_x2": 155.605, + "r_y2": 195.334, + "r_x3": 152.269, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1077, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.605, + "r_y0": 189.696, + "r_x1": 158.605, + "r_y1": 189.696, + "r_x2": 158.605, + "r_y2": 195.334, + "r_x3": 155.605, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1078, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.605, + "r_y0": 189.696, + "r_x1": 160.273, + "r_y1": 189.696, + "r_x2": 160.273, + "r_y2": 195.334, + "r_x3": 158.605, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1079, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.273, + "r_y0": 189.696, + "r_x1": 161.941, + "r_y1": 189.696, + "r_x2": 161.941, + "r_y2": 195.334, + "r_x3": 160.273, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1080, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.941, + "r_y0": 189.696, + "r_x1": 165.277, + "r_y1": 189.696, + "r_x2": 165.277, + "r_y2": 195.334, + "r_x3": 161.941, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1081, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 165.277, + "r_y0": 189.696, + "r_x1": 168.613, + "r_y1": 189.696, + "r_x2": 168.613, + "r_y2": 195.334, + "r_x3": 165.277, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1082, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.613, + "r_y0": 189.696, + "r_x1": 170.281, + "r_y1": 189.696, + "r_x2": 170.281, + "r_y2": 195.334, + "r_x3": 168.613, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1083, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.281, + "r_y0": 189.696, + "r_x1": 173.617, + "r_y1": 189.696, + "r_x2": 173.617, + "r_y2": 195.334, + "r_x3": 170.281, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1084, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.617, + "r_y0": 189.696, + "r_x1": 174.949, + "r_y1": 189.696, + "r_x2": 174.949, + "r_y2": 195.334, + "r_x3": 173.617, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1085, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.949, + "r_y0": 189.696, + "r_x1": 176.617, + "r_y1": 189.696, + "r_x2": 176.617, + "r_y2": 195.334, + "r_x3": 174.949, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1086, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.617, + "r_y0": 189.696, + "r_x1": 177.949, + "r_y1": 189.696, + "r_x2": 177.949, + "r_y2": 195.334, + "r_x3": 176.617, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1087, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.949, + "r_y0": 189.696, + "r_x1": 182.947, + "r_y1": 189.696, + "r_x2": 182.947, + "r_y2": 195.334, + "r_x3": 177.949, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1088, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.947, + "r_y0": 189.696, + "r_x1": 186.283, + "r_y1": 189.696, + "r_x2": 186.283, + "r_y2": 195.334, + "r_x3": 182.947, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1089, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.283, + "r_y0": 189.696, + "r_x1": 187.951, + "r_y1": 189.696, + "r_x2": 187.951, + "r_y2": 195.334, + "r_x3": 186.283, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1090, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.951, + "r_y0": 189.696, + "r_x1": 191.287, + "r_y1": 189.696, + "r_x2": 191.287, + "r_y2": 195.334, + "r_x3": 187.951, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1091, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.287, + "r_y0": 189.696, + "r_x1": 192.955, + "r_y1": 189.696, + "r_x2": 192.955, + "r_y2": 195.334, + "r_x3": 191.287, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1092, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.955, + "r_y0": 189.696, + "r_x1": 195.955, + "r_y1": 189.696, + "r_x2": 195.955, + "r_y2": 195.334, + "r_x3": 192.955, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1093, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.955, + "r_y0": 189.696, + "r_x1": 199.291, + "r_y1": 189.696, + "r_x2": 199.291, + "r_y2": 195.334, + "r_x3": 195.955, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1094, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.291, + "r_y0": 189.696, + "r_x1": 202.627, + "r_y1": 189.696, + "r_x2": 202.627, + "r_y2": 195.334, + "r_x3": 199.291, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1095, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.627, + "r_y0": 189.696, + "r_x1": 205.627, + "r_y1": 189.696, + "r_x2": 205.627, + "r_y2": 195.334, + "r_x3": 202.627, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1096, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.627, + "r_y0": 189.696, + "r_x1": 206.959, + "r_y1": 189.696, + "r_x2": 206.959, + "r_y2": 195.334, + "r_x3": 205.627, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1097, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.959, + "r_y0": 189.696, + "r_x1": 210.295, + "r_y1": 189.696, + "r_x2": 210.295, + "r_y2": 195.334, + "r_x3": 206.959, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1098, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.295, + "r_y0": 189.696, + "r_x1": 213.631, + "r_y1": 189.696, + "r_x2": 213.631, + "r_y2": 195.334, + "r_x3": 210.295, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1099, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.631, + "r_y0": 189.696, + "r_x1": 216.967, + "r_y1": 189.696, + "r_x2": 216.967, + "r_y2": 195.334, + "r_x3": 213.631, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1100, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.967, + "r_y0": 189.696, + "r_x1": 220.303, + "r_y1": 189.696, + "r_x2": 220.303, + "r_y2": 195.334, + "r_x3": 216.967, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1101, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.317, + "r_y0": 189.696, + "r_x1": 221.985, + "r_y1": 189.696, + "r_x2": 221.985, + "r_y2": 195.334, + "r_x3": 220.317, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1102, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.998, + "r_y0": 189.696, + "r_x1": 225.334, + "r_y1": 189.696, + "r_x2": 225.334, + "r_y2": 195.334, + "r_x3": 221.998, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1103, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.334, + "r_y0": 189.696, + "r_x1": 227.332, + "r_y1": 189.696, + "r_x2": 227.332, + "r_y2": 195.334, + "r_x3": 225.334, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1104, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.332, + "r_y0": 189.696, + "r_x1": 229.0, + "r_y1": 189.696, + "r_x2": 229.0, + "r_y2": 195.334, + "r_x3": 227.332, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1105, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.0, + "r_y0": 189.696, + "r_x1": 232.336, + "r_y1": 189.696, + "r_x2": 232.336, + "r_y2": 195.334, + "r_x3": 229.0, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1106, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.336, + "r_y0": 189.696, + "r_x1": 235.672, + "r_y1": 189.696, + "r_x2": 235.672, + "r_y2": 195.334, + "r_x3": 232.336, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1107, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.672, + "r_y0": 189.696, + "r_x1": 239.008, + "r_y1": 189.696, + "r_x2": 239.008, + "r_y2": 195.334, + "r_x3": 235.672, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1108, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.008, + "r_y0": 189.696, + "r_x1": 241.006, + "r_y1": 189.696, + "r_x2": 241.006, + "r_y2": 195.334, + "r_x3": 239.008, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1109, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 241.006, + "r_y0": 189.696, + "r_x1": 244.342, + "r_y1": 189.696, + "r_x2": 244.342, + "r_y2": 195.334, + "r_x3": 241.006, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1110, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.342, + "r_y0": 189.696, + "r_x1": 247.342, + "r_y1": 189.696, + "r_x2": 247.342, + "r_y2": 195.334, + "r_x3": 244.342, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1111, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.342, + "r_y0": 189.696, + "r_x1": 250.678, + "r_y1": 189.696, + "r_x2": 250.678, + "r_y2": 195.334, + "r_x3": 247.342, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1112, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 250.678, + "r_y0": 189.696, + "r_x1": 252.676, + "r_y1": 189.696, + "r_x2": 252.676, + "r_y2": 195.334, + "r_x3": 250.678, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1113, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.676, + "r_y0": 189.696, + "r_x1": 254.674, + "r_y1": 189.696, + "r_x2": 254.674, + "r_y2": 195.334, + "r_x3": 252.676, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1114, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.674, + "r_y0": 189.696, + "r_x1": 257.674, + "r_y1": 189.696, + "r_x2": 257.674, + "r_y2": 195.334, + "r_x3": 254.674, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1115, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.674, + "r_y0": 189.696, + "r_x1": 259.672, + "r_y1": 189.696, + "r_x2": 259.672, + "r_y2": 195.334, + "r_x3": 257.674, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1116, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.672, + "r_y0": 189.696, + "r_x1": 261.34, + "r_y1": 189.696, + "r_x2": 261.34, + "r_y2": 195.334, + "r_x3": 259.672, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1117, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.34, + "r_y0": 189.696, + "r_x1": 264.676, + "r_y1": 189.696, + "r_x2": 264.676, + "r_y2": 195.334, + "r_x3": 261.34, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1118, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.676, + "r_y0": 189.696, + "r_x1": 268.012, + "r_y1": 189.696, + "r_x2": 268.012, + "r_y2": 195.334, + "r_x3": 264.676, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1119, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 268.012, + "r_y0": 189.696, + "r_x1": 270.01, + "r_y1": 189.696, + "r_x2": 270.01, + "r_y2": 195.334, + "r_x3": 268.012, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1120, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.01, + "r_y0": 189.696, + "r_x1": 273.346, + "r_y1": 189.696, + "r_x2": 273.346, + "r_y2": 195.334, + "r_x3": 270.01, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1121, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.346, + "r_y0": 189.696, + "r_x1": 274.678, + "r_y1": 189.696, + "r_x2": 274.678, + "r_y2": 195.334, + "r_x3": 273.346, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1122, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.678, + "r_y0": 189.696, + "r_x1": 278.014, + "r_y1": 189.696, + "r_x2": 278.014, + "r_y2": 195.334, + "r_x3": 274.678, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1123, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.014, + "r_y0": 189.696, + "r_x1": 279.682, + "r_y1": 189.696, + "r_x2": 279.682, + "r_y2": 195.334, + "r_x3": 278.014, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1124, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 182.496, + "r_x1": 52.219, + "r_y1": 182.496, + "r_x2": 52.219, + "r_y2": 188.134, + "r_x3": 50.887, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1125, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.219, + "r_y0": 182.496, + "r_x1": 55.555, + "r_y1": 182.496, + "r_x2": 55.555, + "r_y2": 188.134, + "r_x3": 52.219, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1126, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.555, + "r_y0": 182.496, + "r_x1": 58.891, + "r_y1": 182.496, + "r_x2": 58.891, + "r_y2": 188.134, + "r_x3": 55.555, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1127, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.891, + "r_y0": 182.496, + "r_x1": 62.227, + "r_y1": 182.496, + "r_x2": 62.227, + "r_y2": 188.134, + "r_x3": 58.891, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1128, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.227, + "r_y0": 182.496, + "r_x1": 63.895, + "r_y1": 182.496, + "r_x2": 63.895, + "r_y2": 188.134, + "r_x3": 62.227, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1129, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.895, + "r_y0": 182.496, + "r_x1": 65.227, + "r_y1": 182.496, + "r_x2": 65.227, + "r_y2": 188.134, + "r_x3": 63.895, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1130, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.227, + "r_y0": 182.496, + "r_x1": 66.895, + "r_y1": 182.496, + "r_x2": 66.895, + "r_y2": 188.134, + "r_x3": 65.227, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1131, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.895, + "r_y0": 182.496, + "r_x1": 68.227, + "r_y1": 182.496, + "r_x2": 68.227, + "r_y2": 188.134, + "r_x3": 66.895, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1132, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.227, + "r_y0": 182.496, + "r_x1": 71.563, + "r_y1": 182.496, + "r_x2": 71.563, + "r_y2": 188.134, + "r_x3": 68.227, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1133, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.563, + "r_y0": 182.496, + "r_x1": 74.899, + "r_y1": 182.496, + "r_x2": 74.899, + "r_y2": 188.134, + "r_x3": 71.563, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1134, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.899, + "r_y0": 182.496, + "r_x1": 76.567, + "r_y1": 182.496, + "r_x2": 76.567, + "r_y2": 188.134, + "r_x3": 74.899, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1135, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.567, + "r_y0": 182.496, + "r_x1": 78.235, + "r_y1": 182.496, + "r_x2": 78.235, + "r_y2": 188.134, + "r_x3": 76.567, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1136, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.235, + "r_y0": 182.496, + "r_x1": 79.903, + "r_y1": 182.496, + "r_x2": 79.903, + "r_y2": 188.134, + "r_x3": 78.235, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1137, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.903, + "r_y0": 182.496, + "r_x1": 83.569, + "r_y1": 182.496, + "r_x2": 83.569, + "r_y2": 188.134, + "r_x3": 79.903, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "T", + "orig": "T", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1138, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.569, + "r_y0": 182.496, + "r_x1": 86.905, + "r_y1": 182.496, + "r_x2": 86.905, + "r_y2": 188.134, + "r_x3": 83.569, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1139, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.905, + "r_y0": 182.496, + "r_x1": 90.241, + "r_y1": 182.496, + "r_x2": 90.241, + "r_y2": 188.134, + "r_x3": 86.905, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1140, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.241, + "r_y0": 182.496, + "r_x1": 93.241, + "r_y1": 182.496, + "r_x2": 93.241, + "r_y2": 188.134, + "r_x3": 90.241, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1141, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.241, + "r_y0": 182.496, + "r_x1": 94.909, + "r_y1": 182.496, + "r_x2": 94.909, + "r_y2": 188.134, + "r_x3": 93.241, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1142, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.909, + "r_y0": 182.496, + "r_x1": 99.907, + "r_y1": 182.496, + "r_x2": 99.907, + "r_y2": 188.134, + "r_x3": 94.909, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1143, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.907, + "r_y0": 182.496, + "r_x1": 103.243, + "r_y1": 182.496, + "r_x2": 103.243, + "r_y2": 188.134, + "r_x3": 99.907, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1144, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.243, + "r_y0": 182.496, + "r_x1": 106.243, + "r_y1": 182.496, + "r_x2": 106.243, + "r_y2": 188.134, + "r_x3": 103.243, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1145, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 106.243, + "r_y0": 182.496, + "r_x1": 107.911, + "r_y1": 182.496, + "r_x2": 107.911, + "r_y2": 188.134, + "r_x3": 106.243, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1146, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.911, + "r_y0": 182.496, + "r_x1": 111.247, + "r_y1": 182.496, + "r_x2": 111.247, + "r_y2": 188.134, + "r_x3": 107.911, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1147, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 111.247, + "r_y0": 182.496, + "r_x1": 114.583, + "r_y1": 182.496, + "r_x2": 114.583, + "r_y2": 188.134, + "r_x3": 111.247, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1148, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.583, + "r_y0": 182.496, + "r_x1": 116.251, + "r_y1": 182.496, + "r_x2": 116.251, + "r_y2": 188.134, + "r_x3": 114.583, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1149, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 116.251, + "r_y0": 182.496, + "r_x1": 117.919, + "r_y1": 182.496, + "r_x2": 117.919, + "r_y2": 188.134, + "r_x3": 116.251, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1150, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.919, + "r_y0": 182.496, + "r_x1": 121.255, + "r_y1": 182.496, + "r_x2": 121.255, + "r_y2": 188.134, + "r_x3": 117.919, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1151, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.255, + "r_y0": 182.496, + "r_x1": 124.591, + "r_y1": 182.496, + "r_x2": 124.591, + "r_y2": 188.134, + "r_x3": 121.255, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1152, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.591, + "r_y0": 182.496, + "r_x1": 126.259, + "r_y1": 182.496, + "r_x2": 126.259, + "r_y2": 188.134, + "r_x3": 124.591, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1153, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.259, + "r_y0": 182.496, + "r_x1": 128.257, + "r_y1": 182.496, + "r_x2": 128.257, + "r_y2": 188.134, + "r_x3": 126.259, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1154, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.257, + "r_y0": 182.496, + "r_x1": 131.593, + "r_y1": 182.496, + "r_x2": 131.593, + "r_y2": 188.134, + "r_x3": 128.257, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1155, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 131.593, + "r_y0": 182.496, + "r_x1": 134.593, + "r_y1": 182.496, + "r_x2": 134.593, + "r_y2": 188.134, + "r_x3": 131.593, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1156, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.593, + "r_y0": 182.496, + "r_x1": 137.929, + "r_y1": 182.496, + "r_x2": 137.929, + "r_y2": 188.134, + "r_x3": 134.593, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1157, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.929, + "r_y0": 182.496, + "r_x1": 139.261, + "r_y1": 182.496, + "r_x2": 139.261, + "r_y2": 188.134, + "r_x3": 137.929, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1158, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.261, + "r_y0": 182.496, + "r_x1": 142.597, + "r_y1": 182.496, + "r_x2": 142.597, + "r_y2": 188.134, + "r_x3": 139.261, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1159, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.597, + "r_y0": 182.496, + "r_x1": 144.265, + "r_y1": 182.496, + "r_x2": 144.265, + "r_y2": 188.134, + "r_x3": 142.597, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1160, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.265, + "r_y0": 182.496, + "r_x1": 145.933, + "r_y1": 182.496, + "r_x2": 145.933, + "r_y2": 188.134, + "r_x3": 144.265, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1161, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.933, + "r_y0": 182.496, + "r_x1": 147.601, + "r_y1": 182.496, + "r_x2": 147.601, + "r_y2": 188.134, + "r_x3": 145.933, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1162, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.601, + "r_y0": 182.496, + "r_x1": 149.599, + "r_y1": 182.496, + "r_x2": 149.599, + "r_y2": 188.134, + "r_x3": 147.601, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1163, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.599, + "r_y0": 182.496, + "r_x1": 152.935, + "r_y1": 182.496, + "r_x2": 152.935, + "r_y2": 188.134, + "r_x3": 149.599, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1164, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.935, + "r_y0": 182.496, + "r_x1": 156.271, + "r_y1": 182.496, + "r_x2": 156.271, + "r_y2": 188.134, + "r_x3": 152.935, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1165, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 156.271, + "r_y0": 182.496, + "r_x1": 159.271, + "r_y1": 182.496, + "r_x2": 159.271, + "r_y2": 188.134, + "r_x3": 156.271, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1166, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.271, + "r_y0": 182.496, + "r_x1": 160.939, + "r_y1": 182.496, + "r_x2": 160.939, + "r_y2": 188.134, + "r_x3": 159.271, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1167, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.939, + "r_y0": 182.496, + "r_x1": 164.275, + "r_y1": 182.496, + "r_x2": 164.275, + "r_y2": 188.134, + "r_x3": 160.939, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1168, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.275, + "r_y0": 182.496, + "r_x1": 166.273, + "r_y1": 182.496, + "r_x2": 166.273, + "r_y2": 188.134, + "r_x3": 164.275, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1169, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.273, + "r_y0": 182.496, + "r_x1": 168.271, + "r_y1": 182.496, + "r_x2": 168.271, + "r_y2": 188.134, + "r_x3": 166.273, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1170, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.271, + "r_y0": 182.496, + "r_x1": 171.607, + "r_y1": 182.496, + "r_x2": 171.607, + "r_y2": 188.134, + "r_x3": 168.271, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1171, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.607, + "r_y0": 182.496, + "r_x1": 174.943, + "r_y1": 182.496, + "r_x2": 174.943, + "r_y2": 188.134, + "r_x3": 171.607, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1172, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.943, + "r_y0": 182.496, + "r_x1": 176.611, + "r_y1": 182.496, + "r_x2": 176.611, + "r_y2": 188.134, + "r_x3": 174.943, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1173, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.611, + "r_y0": 182.496, + "r_x1": 178.279, + "r_y1": 182.496, + "r_x2": 178.279, + "r_y2": 188.134, + "r_x3": 176.611, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1174, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.279, + "r_y0": 182.496, + "r_x1": 181.615, + "r_y1": 182.496, + "r_x2": 181.615, + "r_y2": 188.134, + "r_x3": 178.279, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1175, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.615, + "r_y0": 182.496, + "r_x1": 183.613, + "r_y1": 182.496, + "r_x2": 183.613, + "r_y2": 188.134, + "r_x3": 181.615, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1176, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.613, + "r_y0": 182.496, + "r_x1": 185.281, + "r_y1": 182.496, + "r_x2": 185.281, + "r_y2": 188.134, + "r_x3": 183.613, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1177, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.281, + "r_y0": 182.496, + "r_x1": 188.617, + "r_y1": 182.496, + "r_x2": 188.617, + "r_y2": 188.134, + "r_x3": 185.281, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1178, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.617, + "r_y0": 182.496, + "r_x1": 190.285, + "r_y1": 182.496, + "r_x2": 190.285, + "r_y2": 188.134, + "r_x3": 188.617, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1179, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.285, + "r_y0": 182.496, + "r_x1": 193.621, + "r_y1": 182.496, + "r_x2": 193.621, + "r_y2": 188.134, + "r_x3": 190.285, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1180, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.621, + "r_y0": 182.496, + "r_x1": 196.957, + "r_y1": 182.496, + "r_x2": 196.957, + "r_y2": 188.134, + "r_x3": 193.621, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1181, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.957, + "r_y0": 182.496, + "r_x1": 198.955, + "r_y1": 182.496, + "r_x2": 198.955, + "r_y2": 188.134, + "r_x3": 196.957, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1182, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.955, + "r_y0": 182.496, + "r_x1": 203.287, + "r_y1": 182.496, + "r_x2": 203.287, + "r_y2": 188.134, + "r_x3": 198.955, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1183, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.287, + "r_y0": 182.496, + "r_x1": 204.619, + "r_y1": 182.496, + "r_x2": 204.619, + "r_y2": 188.134, + "r_x3": 203.287, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1184, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.619, + "r_y0": 182.496, + "r_x1": 207.619, + "r_y1": 182.496, + "r_x2": 207.619, + "r_y2": 188.134, + "r_x3": 204.619, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1185, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 207.619, + "r_y0": 182.496, + "r_x1": 210.955, + "r_y1": 182.496, + "r_x2": 210.955, + "r_y2": 188.134, + "r_x3": 207.619, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1186, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.955, + "r_y0": 182.496, + "r_x1": 212.623, + "r_y1": 182.496, + "r_x2": 212.623, + "r_y2": 188.134, + "r_x3": 210.955, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1187, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.623, + "r_y0": 182.496, + "r_x1": 215.959, + "r_y1": 182.496, + "r_x2": 215.959, + "r_y2": 188.134, + "r_x3": 212.623, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1188, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.959, + "r_y0": 182.496, + "r_x1": 217.291, + "r_y1": 182.496, + "r_x2": 217.291, + "r_y2": 188.134, + "r_x3": 215.959, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1189, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.291, + "r_y0": 182.496, + "r_x1": 220.291, + "r_y1": 182.496, + "r_x2": 220.291, + "r_y2": 188.134, + "r_x3": 217.291, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1190, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.291, + "r_y0": 182.496, + "r_x1": 223.627, + "r_y1": 182.496, + "r_x2": 223.627, + "r_y2": 188.134, + "r_x3": 220.291, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1191, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.627, + "r_y0": 182.496, + "r_x1": 226.963, + "r_y1": 182.496, + "r_x2": 226.963, + "r_y2": 188.134, + "r_x3": 223.627, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1192, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 226.963, + "r_y0": 182.496, + "r_x1": 229.963, + "r_y1": 182.496, + "r_x2": 229.963, + "r_y2": 188.134, + "r_x3": 226.963, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1193, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.963, + "r_y0": 182.496, + "r_x1": 233.299, + "r_y1": 182.496, + "r_x2": 233.299, + "r_y2": 188.134, + "r_x3": 229.963, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1194, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 233.299, + "r_y0": 182.496, + "r_x1": 236.635, + "r_y1": 182.496, + "r_x2": 236.635, + "r_y2": 188.134, + "r_x3": 233.299, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1195, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.635, + "r_y0": 182.496, + "r_x1": 238.303, + "r_y1": 182.496, + "r_x2": 238.303, + "r_y2": 188.134, + "r_x3": 236.635, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1196, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 238.303, + "r_y0": 182.496, + "r_x1": 241.639, + "r_y1": 182.496, + "r_x2": 241.639, + "r_y2": 188.134, + "r_x3": 238.303, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1197, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 241.639, + "r_y0": 182.496, + "r_x1": 243.307, + "r_y1": 182.496, + "r_x2": 243.307, + "r_y2": 188.134, + "r_x3": 241.639, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1198, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.307, + "r_y0": 182.496, + "r_x1": 244.975, + "r_y1": 182.496, + "r_x2": 244.975, + "r_y2": 188.134, + "r_x3": 243.307, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1199, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.975, + "r_y0": 182.496, + "r_x1": 246.643, + "r_y1": 182.496, + "r_x2": 246.643, + "r_y2": 188.134, + "r_x3": 244.975, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1200, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 246.643, + "r_y0": 182.496, + "r_x1": 248.311, + "r_y1": 182.496, + "r_x2": 248.311, + "r_y2": 188.134, + "r_x3": 246.643, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1201, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 248.311, + "r_y0": 182.496, + "r_x1": 251.647, + "r_y1": 182.496, + "r_x2": 251.647, + "r_y2": 188.134, + "r_x3": 248.311, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1202, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.647, + "r_y0": 182.496, + "r_x1": 253.315, + "r_y1": 182.496, + "r_x2": 253.315, + "r_y2": 188.134, + "r_x3": 251.647, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1203, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.315, + "r_y0": 182.496, + "r_x1": 256.651, + "r_y1": 182.496, + "r_x2": 256.651, + "r_y2": 188.134, + "r_x3": 253.315, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1204, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.651, + "r_y0": 182.496, + "r_x1": 259.987, + "r_y1": 182.496, + "r_x2": 259.987, + "r_y2": 188.134, + "r_x3": 256.651, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1205, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.987, + "r_y0": 182.496, + "r_x1": 262.987, + "r_y1": 182.496, + "r_x2": 262.987, + "r_y2": 188.134, + "r_x3": 259.987, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1206, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 262.987, + "r_y0": 182.496, + "r_x1": 264.655, + "r_y1": 182.496, + "r_x2": 264.655, + "r_y2": 188.134, + "r_x3": 262.987, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1207, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.655, + "r_y0": 182.496, + "r_x1": 267.991, + "r_y1": 182.496, + "r_x2": 267.991, + "r_y2": 188.134, + "r_x3": 264.655, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1208, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.991, + "r_y0": 182.496, + "r_x1": 269.659, + "r_y1": 182.496, + "r_x2": 269.659, + "r_y2": 188.134, + "r_x3": 267.991, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1209, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.659, + "r_y0": 182.496, + "r_x1": 272.995, + "r_y1": 182.496, + "r_x2": 272.995, + "r_y2": 188.134, + "r_x3": 269.659, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1210, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.995, + "r_y0": 182.496, + "r_x1": 276.331, + "r_y1": 182.496, + "r_x2": 276.331, + "r_y2": 188.134, + "r_x3": 272.995, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1211, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 276.331, + "r_y0": 182.496, + "r_x1": 278.329, + "r_y1": 182.496, + "r_x2": 278.329, + "r_y2": 188.134, + "r_x3": 276.331, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1212, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.329, + "r_y0": 182.496, + "r_x1": 279.997, + "r_y1": 182.496, + "r_x2": 279.997, + "r_y2": 188.134, + "r_x3": 278.329, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1213, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 175.296, + "r_x1": 53.887, + "r_y1": 175.296, + "r_x2": 53.887, + "r_y2": 180.934, + "r_x3": 50.887, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1214, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.887, + "r_y0": 175.296, + "r_x1": 57.223, + "r_y1": 175.296, + "r_x2": 57.223, + "r_y2": 180.934, + "r_x3": 53.887, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1215, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.223, + "r_y0": 175.296, + "r_x1": 60.559, + "r_y1": 175.296, + "r_x2": 60.559, + "r_y2": 180.934, + "r_x3": 57.223, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1216, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.559, + "r_y0": 175.296, + "r_x1": 63.895, + "r_y1": 175.296, + "r_x2": 63.895, + "r_y2": 180.934, + "r_x3": 60.559, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1217, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.895, + "r_y0": 175.296, + "r_x1": 65.563, + "r_y1": 175.296, + "r_x2": 65.563, + "r_y2": 180.934, + "r_x3": 63.895, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1218, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.563, + "r_y0": 175.296, + "r_x1": 67.561, + "r_y1": 175.296, + "r_x2": 67.561, + "r_y2": 180.934, + "r_x3": 65.563, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1219, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.561, + "r_y0": 175.296, + "r_x1": 70.561, + "r_y1": 175.296, + "r_x2": 70.561, + "r_y2": 180.934, + "r_x3": 67.561, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1220, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.561, + "r_y0": 175.296, + "r_x1": 72.229, + "r_y1": 175.296, + "r_x2": 72.229, + "r_y2": 180.934, + "r_x3": 70.561, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1221, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.229, + "r_y0": 175.296, + "r_x1": 75.565, + "r_y1": 175.296, + "r_x2": 75.565, + "r_y2": 180.934, + "r_x3": 72.229, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1222, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.565, + "r_y0": 175.296, + "r_x1": 77.563, + "r_y1": 175.296, + "r_x2": 77.563, + "r_y2": 180.934, + "r_x3": 75.565, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1223, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.563, + "r_y0": 175.296, + "r_x1": 79.231, + "r_y1": 175.296, + "r_x2": 79.231, + "r_y2": 180.934, + "r_x3": 77.563, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1224, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.231, + "r_y0": 175.296, + "r_x1": 80.899, + "r_y1": 175.296, + "r_x2": 80.899, + "r_y2": 180.934, + "r_x3": 79.231, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1225, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.899, + "r_y0": 175.296, + "r_x1": 84.235, + "r_y1": 175.296, + "r_x2": 84.235, + "r_y2": 180.934, + "r_x3": 80.899, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1226, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.235, + "r_y0": 175.296, + "r_x1": 85.903, + "r_y1": 175.296, + "r_x2": 85.903, + "r_y2": 180.934, + "r_x3": 84.235, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1227, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.903, + "r_y0": 175.296, + "r_x1": 89.239, + "r_y1": 175.296, + "r_x2": 89.239, + "r_y2": 180.934, + "r_x3": 85.903, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1228, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.239, + "r_y0": 175.296, + "r_x1": 92.575, + "r_y1": 175.296, + "r_x2": 92.575, + "r_y2": 180.934, + "r_x3": 89.239, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1229, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.575, + "r_y0": 175.296, + "r_x1": 95.575, + "r_y1": 175.296, + "r_x2": 95.575, + "r_y2": 180.934, + "r_x3": 92.575, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1230, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.575, + "r_y0": 175.296, + "r_x1": 97.243, + "r_y1": 175.296, + "r_x2": 97.243, + "r_y2": 180.934, + "r_x3": 95.575, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1231, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.243, + "r_y0": 175.296, + "r_x1": 100.579, + "r_y1": 175.296, + "r_x2": 100.579, + "r_y2": 180.934, + "r_x3": 97.243, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1232, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 100.579, + "r_y0": 175.296, + "r_x1": 103.915, + "r_y1": 175.296, + "r_x2": 103.915, + "r_y2": 180.934, + "r_x3": 100.579, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1233, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.915, + "r_y0": 175.296, + "r_x1": 105.913, + "r_y1": 175.296, + "r_x2": 105.913, + "r_y2": 180.934, + "r_x3": 103.915, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1234, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.913, + "r_y0": 175.296, + "r_x1": 108.913, + "r_y1": 175.296, + "r_x2": 108.913, + "r_y2": 180.934, + "r_x3": 105.913, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1235, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.913, + "r_y0": 175.296, + "r_x1": 112.249, + "r_y1": 175.296, + "r_x2": 112.249, + "r_y2": 180.934, + "r_x3": 108.913, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1236, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.249, + "r_y0": 175.296, + "r_x1": 115.585, + "r_y1": 175.296, + "r_x2": 115.585, + "r_y2": 180.934, + "r_x3": 112.249, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1237, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 115.585, + "r_y0": 175.296, + "r_x1": 117.253, + "r_y1": 175.296, + "r_x2": 117.253, + "r_y2": 180.934, + "r_x3": 115.585, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1238, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.253, + "r_y0": 175.296, + "r_x1": 120.589, + "r_y1": 175.296, + "r_x2": 120.589, + "r_y2": 180.934, + "r_x3": 117.253, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1239, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 120.589, + "r_y0": 175.296, + "r_x1": 122.257, + "r_y1": 175.296, + "r_x2": 122.257, + "r_y2": 180.934, + "r_x3": 120.589, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1240, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.257, + "r_y0": 175.296, + "r_x1": 125.593, + "r_y1": 175.296, + "r_x2": 125.593, + "r_y2": 180.934, + "r_x3": 122.257, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1241, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.593, + "r_y0": 175.296, + "r_x1": 128.929, + "r_y1": 175.296, + "r_x2": 128.929, + "r_y2": 180.934, + "r_x3": 125.593, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1242, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 128.929, + "r_y0": 175.296, + "r_x1": 130.927, + "r_y1": 175.296, + "r_x2": 130.927, + "r_y2": 180.934, + "r_x3": 128.929, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1243, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.927, + "r_y0": 175.296, + "r_x1": 132.595, + "r_y1": 175.296, + "r_x2": 132.595, + "r_y2": 180.934, + "r_x3": 130.927, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1244, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.595, + "r_y0": 175.296, + "r_x1": 134.263, + "r_y1": 175.296, + "r_x2": 134.263, + "r_y2": 180.934, + "r_x3": 132.595, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1245, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.263, + "r_y0": 175.296, + "r_x1": 137.599, + "r_y1": 175.296, + "r_x2": 137.599, + "r_y2": 180.934, + "r_x3": 134.263, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1246, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.599, + "r_y0": 175.296, + "r_x1": 140.935, + "r_y1": 175.296, + "r_x2": 140.935, + "r_y2": 180.934, + "r_x3": 137.599, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1247, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.935, + "r_y0": 175.296, + "r_x1": 144.271, + "r_y1": 175.296, + "r_x2": 144.271, + "r_y2": 180.934, + "r_x3": 140.935, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1248, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.271, + "r_y0": 175.296, + "r_x1": 145.939, + "r_y1": 175.296, + "r_x2": 145.939, + "r_y2": 180.934, + "r_x3": 144.271, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1249, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.939, + "r_y0": 175.296, + "r_x1": 147.607, + "r_y1": 175.296, + "r_x2": 147.607, + "r_y2": 180.934, + "r_x3": 145.939, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1250, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.607, + "r_y0": 175.296, + "r_x1": 150.943, + "r_y1": 175.296, + "r_x2": 150.943, + "r_y2": 180.934, + "r_x3": 147.607, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1251, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.943, + "r_y0": 175.296, + "r_x1": 154.279, + "r_y1": 175.296, + "r_x2": 154.279, + "r_y2": 180.934, + "r_x3": 150.943, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1252, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.279, + "r_y0": 175.296, + "r_x1": 155.947, + "r_y1": 175.296, + "r_x2": 155.947, + "r_y2": 180.934, + "r_x3": 154.279, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1253, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.947, + "r_y0": 175.296, + "r_x1": 159.283, + "r_y1": 175.296, + "r_x2": 159.283, + "r_y2": 180.934, + "r_x3": 155.947, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1254, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.283, + "r_y0": 175.296, + "r_x1": 162.619, + "r_y1": 175.296, + "r_x2": 162.619, + "r_y2": 180.934, + "r_x3": 159.283, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1255, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.619, + "r_y0": 175.296, + "r_x1": 164.287, + "r_y1": 175.296, + "r_x2": 164.287, + "r_y2": 180.934, + "r_x3": 162.619, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1256, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.287, + "r_y0": 175.296, + "r_x1": 167.623, + "r_y1": 175.296, + "r_x2": 167.623, + "r_y2": 180.934, + "r_x3": 164.287, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1257, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.623, + "r_y0": 175.296, + "r_x1": 170.959, + "r_y1": 175.296, + "r_x2": 170.959, + "r_y2": 180.934, + "r_x3": 167.623, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1258, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.959, + "r_y0": 175.296, + "r_x1": 172.957, + "r_y1": 175.296, + "r_x2": 172.957, + "r_y2": 180.934, + "r_x3": 170.959, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1259, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.957, + "r_y0": 175.296, + "r_x1": 174.289, + "r_y1": 175.296, + "r_x2": 174.289, + "r_y2": 180.934, + "r_x3": 172.957, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1260, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.289, + "r_y0": 175.296, + "r_x1": 177.289, + "r_y1": 175.296, + "r_x2": 177.289, + "r_y2": 180.934, + "r_x3": 174.289, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "z", + "orig": "z", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1261, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.289, + "r_y0": 175.296, + "r_x1": 180.625, + "r_y1": 175.296, + "r_x2": 180.625, + "r_y2": 180.934, + "r_x3": 177.289, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1262, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.625, + "r_y0": 175.296, + "r_x1": 183.961, + "r_y1": 175.296, + "r_x2": 183.961, + "r_y2": 180.934, + "r_x3": 180.625, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1263, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.961, + "r_y0": 175.296, + "r_x1": 185.629, + "r_y1": 175.296, + "r_x2": 185.629, + "r_y2": 180.934, + "r_x3": 183.961, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1264, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.629, + "r_y0": 175.296, + "r_x1": 188.965, + "r_y1": 175.296, + "r_x2": 188.965, + "r_y2": 180.934, + "r_x3": 185.629, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1265, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.965, + "r_y0": 175.296, + "r_x1": 190.297, + "r_y1": 175.296, + "r_x2": 190.297, + "r_y2": 180.934, + "r_x3": 188.965, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1266, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.297, + "r_y0": 175.296, + "r_x1": 191.965, + "r_y1": 175.296, + "r_x2": 191.965, + "r_y2": 180.934, + "r_x3": 190.297, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1267, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.965, + "r_y0": 175.296, + "r_x1": 193.297, + "r_y1": 175.296, + "r_x2": 193.297, + "r_y2": 180.934, + "r_x3": 191.965, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1268, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.297, + "r_y0": 175.296, + "r_x1": 198.295, + "r_y1": 175.296, + "r_x2": 198.295, + "r_y2": 180.934, + "r_x3": 193.297, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1269, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.295, + "r_y0": 175.296, + "r_x1": 201.631, + "r_y1": 175.296, + "r_x2": 201.631, + "r_y2": 180.934, + "r_x3": 198.295, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1270, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.631, + "r_y0": 175.296, + "r_x1": 203.299, + "r_y1": 175.296, + "r_x2": 203.299, + "r_y2": 180.934, + "r_x3": 201.631, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1271, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.299, + "r_y0": 175.296, + "r_x1": 206.635, + "r_y1": 175.296, + "r_x2": 206.635, + "r_y2": 180.934, + "r_x3": 203.299, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1272, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.635, + "r_y0": 175.296, + "r_x1": 208.303, + "r_y1": 175.296, + "r_x2": 208.303, + "r_y2": 180.934, + "r_x3": 206.635, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1273, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.303, + "r_y0": 175.296, + "r_x1": 211.303, + "r_y1": 175.296, + "r_x2": 211.303, + "r_y2": 180.934, + "r_x3": 208.303, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1274, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 211.303, + "r_y0": 175.296, + "r_x1": 214.639, + "r_y1": 175.296, + "r_x2": 214.639, + "r_y2": 180.934, + "r_x3": 211.303, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1275, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 214.639, + "r_y0": 175.296, + "r_x1": 217.975, + "r_y1": 175.296, + "r_x2": 217.975, + "r_y2": 180.934, + "r_x3": 214.639, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1276, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.975, + "r_y0": 175.296, + "r_x1": 220.975, + "r_y1": 175.296, + "r_x2": 220.975, + "r_y2": 180.934, + "r_x3": 217.975, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1277, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.975, + "r_y0": 175.296, + "r_x1": 222.307, + "r_y1": 175.296, + "r_x2": 222.307, + "r_y2": 180.934, + "r_x3": 220.975, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1278, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.307, + "r_y0": 175.296, + "r_x1": 225.643, + "r_y1": 175.296, + "r_x2": 225.643, + "r_y2": 180.934, + "r_x3": 222.307, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1279, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.643, + "r_y0": 175.296, + "r_x1": 228.979, + "r_y1": 175.296, + "r_x2": 228.979, + "r_y2": 180.934, + "r_x3": 225.643, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1280, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.979, + "r_y0": 175.296, + "r_x1": 232.315, + "r_y1": 175.296, + "r_x2": 232.315, + "r_y2": 180.934, + "r_x3": 228.979, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1281, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.315, + "r_y0": 175.296, + "r_x1": 235.651, + "r_y1": 175.296, + "r_x2": 235.651, + "r_y2": 180.934, + "r_x3": 232.315, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1282, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.651, + "r_y0": 175.296, + "r_x1": 237.319, + "r_y1": 175.296, + "r_x2": 237.319, + "r_y2": 180.934, + "r_x3": 235.651, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1283, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.319, + "r_y0": 175.296, + "r_x1": 240.655, + "r_y1": 175.296, + "r_x2": 240.655, + "r_y2": 180.934, + "r_x3": 237.319, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1284, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.655, + "r_y0": 175.296, + "r_x1": 242.653, + "r_y1": 175.296, + "r_x2": 242.653, + "r_y2": 180.934, + "r_x3": 240.655, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1285, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.653, + "r_y0": 175.296, + "r_x1": 244.321, + "r_y1": 175.296, + "r_x2": 244.321, + "r_y2": 180.934, + "r_x3": 242.653, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1286, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.321, + "r_y0": 175.296, + "r_x1": 247.657, + "r_y1": 175.296, + "r_x2": 247.657, + "r_y2": 180.934, + "r_x3": 244.321, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1287, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.657, + "r_y0": 175.296, + "r_x1": 250.993, + "r_y1": 175.296, + "r_x2": 250.993, + "r_y2": 180.934, + "r_x3": 247.657, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1288, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.011, + "r_y0": 175.296, + "r_x1": 254.347, + "r_y1": 175.296, + "r_x2": 254.347, + "r_y2": 180.934, + "r_x3": 251.011, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1289, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.347, + "r_y0": 175.296, + "r_x1": 256.345, + "r_y1": 175.296, + "r_x2": 256.345, + "r_y2": 180.934, + "r_x3": 254.347, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1290, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.345, + "r_y0": 175.296, + "r_x1": 259.681, + "r_y1": 175.296, + "r_x2": 259.681, + "r_y2": 180.934, + "r_x3": 256.345, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1291, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.681, + "r_y0": 175.296, + "r_x1": 262.681, + "r_y1": 175.296, + "r_x2": 262.681, + "r_y2": 180.934, + "r_x3": 259.681, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1292, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 262.681, + "r_y0": 175.296, + "r_x1": 266.017, + "r_y1": 175.296, + "r_x2": 266.017, + "r_y2": 180.934, + "r_x3": 262.681, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1293, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.017, + "r_y0": 175.296, + "r_x1": 268.015, + "r_y1": 175.296, + "r_x2": 268.015, + "r_y2": 180.934, + "r_x3": 266.017, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1294, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 268.015, + "r_y0": 175.296, + "r_x1": 270.013, + "r_y1": 175.296, + "r_x2": 270.013, + "r_y2": 180.934, + "r_x3": 268.015, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1295, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.013, + "r_y0": 175.296, + "r_x1": 273.013, + "r_y1": 175.296, + "r_x2": 273.013, + "r_y2": 180.934, + "r_x3": 270.013, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1296, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.013, + "r_y0": 175.296, + "r_x1": 275.011, + "r_y1": 175.296, + "r_x2": 275.011, + "r_y2": 180.934, + "r_x3": 273.013, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1297, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.011, + "r_y0": 175.296, + "r_x1": 276.679, + "r_y1": 175.296, + "r_x2": 276.679, + "r_y2": 180.934, + "r_x3": 275.011, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1298, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 276.679, + "r_y0": 175.296, + "r_x1": 278.347, + "r_y1": 175.296, + "r_x2": 278.347, + "r_y2": 180.934, + "r_x3": 276.679, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1299, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.366, + "r_y0": 175.296, + "r_x1": 281.702, + "r_y1": 175.296, + "r_x2": 281.702, + "r_y2": 180.934, + "r_x3": 278.366, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1300, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 281.702, + "r_y0": 175.296, + "r_x1": 283.034, + "r_y1": 175.296, + "r_x2": 283.034, + "r_y2": 180.934, + "r_x3": 281.702, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1301, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 283.034, + "r_y0": 175.296, + "r_x1": 284.702, + "r_y1": 175.296, + "r_x2": 284.702, + "r_y2": 180.934, + "r_x3": 283.034, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1302, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 284.702, + "r_y0": 175.296, + "r_x1": 288.038, + "r_y1": 175.296, + "r_x2": 288.038, + "r_y2": 180.934, + "r_x3": 284.702, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1303, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 288.038, + "r_y0": 175.296, + "r_x1": 291.374, + "r_y1": 175.296, + "r_x2": 291.374, + "r_y2": 180.934, + "r_x3": 288.038, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1304, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 291.374, + "r_y0": 175.296, + "r_x1": 293.372, + "r_y1": 175.296, + "r_x2": 293.372, + "r_y2": 180.934, + "r_x3": 291.374, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1305, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 293.372, + "r_y0": 175.296, + "r_x1": 295.04, + "r_y1": 175.296, + "r_x2": 295.04, + "r_y2": 180.934, + "r_x3": 293.372, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1306, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 168.096, + "r_x1": 52.219, + "r_y1": 168.096, + "r_x2": 52.219, + "r_y2": 173.734, + "r_x3": 50.887, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1307, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.219, + "r_y0": 168.096, + "r_x1": 55.555, + "r_y1": 168.096, + "r_x2": 55.555, + "r_y2": 173.734, + "r_x3": 52.219, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1308, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.555, + "r_y0": 168.096, + "r_x1": 57.223, + "r_y1": 168.096, + "r_x2": 57.223, + "r_y2": 173.734, + "r_x3": 55.555, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1309, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.223, + "r_y0": 168.096, + "r_x1": 58.891, + "r_y1": 168.096, + "r_x2": 58.891, + "r_y2": 173.734, + "r_x3": 57.223, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1310, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.891, + "r_y0": 168.096, + "r_x1": 62.227, + "r_y1": 168.096, + "r_x2": 62.227, + "r_y2": 173.734, + "r_x3": 58.891, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1311, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.227, + "r_y0": 168.096, + "r_x1": 65.563, + "r_y1": 168.096, + "r_x2": 65.563, + "r_y2": 173.734, + "r_x3": 62.227, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1312, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.563, + "r_y0": 168.096, + "r_x1": 66.895, + "r_y1": 168.096, + "r_x2": 66.895, + "r_y2": 173.734, + "r_x3": 65.563, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1313, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.895, + "r_y0": 168.096, + "r_x1": 68.893, + "r_y1": 168.096, + "r_x2": 68.893, + "r_y2": 173.734, + "r_x3": 66.895, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1314, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.893, + "r_y0": 168.096, + "r_x1": 70.561, + "r_y1": 168.096, + "r_x2": 70.561, + "r_y2": 173.734, + "r_x3": 68.893, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1315, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.561, + "r_y0": 168.096, + "r_x1": 73.897, + "r_y1": 168.096, + "r_x2": 73.897, + "r_y2": 173.734, + "r_x3": 70.561, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1316, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.897, + "r_y0": 168.096, + "r_x1": 75.895, + "r_y1": 168.096, + "r_x2": 75.895, + "r_y2": 173.734, + "r_x3": 73.897, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1317, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.895, + "r_y0": 168.096, + "r_x1": 77.227, + "r_y1": 168.096, + "r_x2": 77.227, + "r_y2": 173.734, + "r_x3": 75.895, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1318, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.227, + "r_y0": 168.096, + "r_x1": 80.563, + "r_y1": 168.096, + "r_x2": 80.563, + "r_y2": 173.734, + "r_x3": 77.227, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1319, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.563, + "r_y0": 168.096, + "r_x1": 81.895, + "r_y1": 168.096, + "r_x2": 81.895, + "r_y2": 173.734, + "r_x3": 80.563, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1320, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.895, + "r_y0": 168.096, + "r_x1": 85.231, + "r_y1": 168.096, + "r_x2": 85.231, + "r_y2": 173.734, + "r_x3": 81.895, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1321, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.231, + "r_y0": 168.096, + "r_x1": 88.567, + "r_y1": 168.096, + "r_x2": 88.567, + "r_y2": 173.734, + "r_x3": 85.231, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1322, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.567, + "r_y0": 168.096, + "r_x1": 89.899, + "r_y1": 168.096, + "r_x2": 89.899, + "r_y2": 173.734, + "r_x3": 88.567, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1323, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.899, + "r_y0": 168.096, + "r_x1": 91.567, + "r_y1": 168.096, + "r_x2": 91.567, + "r_y2": 173.734, + "r_x3": 89.899, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1324, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.567, + "r_y0": 168.096, + "r_x1": 93.235, + "r_y1": 168.096, + "r_x2": 93.235, + "r_y2": 173.734, + "r_x3": 91.567, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1325, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.235, + "r_y0": 168.096, + "r_x1": 96.571, + "r_y1": 168.096, + "r_x2": 96.571, + "r_y2": 173.734, + "r_x3": 93.235, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1326, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.571, + "r_y0": 168.096, + "r_x1": 98.569, + "r_y1": 168.096, + "r_x2": 98.569, + "r_y2": 173.734, + "r_x3": 96.571, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1327, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.569, + "r_y0": 168.096, + "r_x1": 103.567, + "r_y1": 168.096, + "r_x2": 103.567, + "r_y2": 173.734, + "r_x3": 98.569, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1328, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.567, + "r_y0": 168.096, + "r_x1": 105.235, + "r_y1": 168.096, + "r_x2": 105.235, + "r_y2": 173.734, + "r_x3": 103.567, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1329, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.235, + "r_y0": 168.096, + "r_x1": 108.571, + "r_y1": 168.096, + "r_x2": 108.571, + "r_y2": 173.734, + "r_x3": 105.235, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1330, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.571, + "r_y0": 168.096, + "r_x1": 110.569, + "r_y1": 168.096, + "r_x2": 110.569, + "r_y2": 173.734, + "r_x3": 108.571, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1331, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.569, + "r_y0": 168.096, + "r_x1": 112.237, + "r_y1": 168.096, + "r_x2": 112.237, + "r_y2": 173.734, + "r_x3": 110.569, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1332, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.237, + "r_y0": 168.096, + "r_x1": 115.573, + "r_y1": 168.096, + "r_x2": 115.573, + "r_y2": 173.734, + "r_x3": 112.237, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1333, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 115.573, + "r_y0": 168.096, + "r_x1": 117.241, + "r_y1": 168.096, + "r_x2": 117.241, + "r_y2": 173.734, + "r_x3": 115.573, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1334, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.241, + "r_y0": 168.096, + "r_x1": 118.909, + "r_y1": 168.096, + "r_x2": 118.909, + "r_y2": 173.734, + "r_x3": 117.241, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1335, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 118.909, + "r_y0": 168.096, + "r_x1": 122.245, + "r_y1": 168.096, + "r_x2": 122.245, + "r_y2": 173.734, + "r_x3": 118.909, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1336, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.245, + "r_y0": 168.096, + "r_x1": 124.243, + "r_y1": 168.096, + "r_x2": 124.243, + "r_y2": 173.734, + "r_x3": 122.245, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1337, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.243, + "r_y0": 168.096, + "r_x1": 125.911, + "r_y1": 168.096, + "r_x2": 125.911, + "r_y2": 173.734, + "r_x3": 124.243, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1338, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.911, + "r_y0": 168.096, + "r_x1": 129.247, + "r_y1": 168.096, + "r_x2": 129.247, + "r_y2": 173.734, + "r_x3": 125.911, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1339, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 129.247, + "r_y0": 168.096, + "r_x1": 132.583, + "r_y1": 168.096, + "r_x2": 132.583, + "r_y2": 173.734, + "r_x3": 129.247, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1340, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.583, + "r_y0": 168.096, + "r_x1": 133.915, + "r_y1": 168.096, + "r_x2": 133.915, + "r_y2": 173.734, + "r_x3": 132.583, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1341, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 133.915, + "r_y0": 168.096, + "r_x1": 137.251, + "r_y1": 168.096, + "r_x2": 137.251, + "r_y2": 173.734, + "r_x3": 133.915, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1342, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.251, + "r_y0": 168.096, + "r_x1": 140.587, + "r_y1": 168.096, + "r_x2": 140.587, + "r_y2": 173.734, + "r_x3": 137.251, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1343, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.587, + "r_y0": 168.096, + "r_x1": 142.255, + "r_y1": 168.096, + "r_x2": 142.255, + "r_y2": 173.734, + "r_x3": 140.587, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1344, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.255, + "r_y0": 168.096, + "r_x1": 143.587, + "r_y1": 168.096, + "r_x2": 143.587, + "r_y2": 173.734, + "r_x3": 142.255, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1345, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 143.587, + "r_y0": 168.096, + "r_x1": 146.923, + "r_y1": 168.096, + "r_x2": 146.923, + "r_y2": 173.734, + "r_x3": 143.587, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1346, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 146.923, + "r_y0": 168.096, + "r_x1": 149.923, + "r_y1": 168.096, + "r_x2": 149.923, + "r_y2": 173.734, + "r_x3": 146.923, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1347, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.923, + "r_y0": 168.096, + "r_x1": 153.259, + "r_y1": 168.096, + "r_x2": 153.259, + "r_y2": 173.734, + "r_x3": 149.923, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1348, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.259, + "r_y0": 168.096, + "r_x1": 155.257, + "r_y1": 168.096, + "r_x2": 155.257, + "r_y2": 173.734, + "r_x3": 153.259, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1349, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.257, + "r_y0": 168.096, + "r_x1": 158.593, + "r_y1": 168.096, + "r_x2": 158.593, + "r_y2": 173.734, + "r_x3": 155.257, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1350, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.593, + "r_y0": 168.096, + "r_x1": 161.929, + "r_y1": 168.096, + "r_x2": 161.929, + "r_y2": 173.734, + "r_x3": 158.593, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1351, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.929, + "r_y0": 168.096, + "r_x1": 163.927, + "r_y1": 168.096, + "r_x2": 163.927, + "r_y2": 173.734, + "r_x3": 161.929, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1352, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 163.927, + "r_y0": 168.096, + "r_x1": 167.263, + "r_y1": 168.096, + "r_x2": 167.263, + "r_y2": 173.734, + "r_x3": 163.927, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1353, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.263, + "r_y0": 168.096, + "r_x1": 168.931, + "r_y1": 168.096, + "r_x2": 168.931, + "r_y2": 173.734, + "r_x3": 167.263, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1354, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.931, + "r_y0": 168.096, + "r_x1": 172.267, + "r_y1": 168.096, + "r_x2": 172.267, + "r_y2": 173.734, + "r_x3": 168.931, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1355, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.267, + "r_y0": 168.096, + "r_x1": 175.603, + "r_y1": 168.096, + "r_x2": 175.603, + "r_y2": 173.734, + "r_x3": 172.267, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1356, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.603, + "r_y0": 168.096, + "r_x1": 177.271, + "r_y1": 168.096, + "r_x2": 177.271, + "r_y2": 173.734, + "r_x3": 175.603, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1357, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.271, + "r_y0": 168.096, + "r_x1": 178.603, + "r_y1": 168.096, + "r_x2": 178.603, + "r_y2": 173.734, + "r_x3": 177.271, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1358, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.603, + "r_y0": 168.096, + "r_x1": 181.939, + "r_y1": 168.096, + "r_x2": 181.939, + "r_y2": 173.734, + "r_x3": 178.603, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1359, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.939, + "r_y0": 168.096, + "r_x1": 183.607, + "r_y1": 168.096, + "r_x2": 183.607, + "r_y2": 173.734, + "r_x3": 181.939, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1360, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.607, + "r_y0": 168.096, + "r_x1": 186.943, + "r_y1": 168.096, + "r_x2": 186.943, + "r_y2": 173.734, + "r_x3": 183.607, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1361, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.943, + "r_y0": 168.096, + "r_x1": 188.611, + "r_y1": 168.096, + "r_x2": 188.611, + "r_y2": 173.734, + "r_x3": 186.943, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1362, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.611, + "r_y0": 168.096, + "r_x1": 191.947, + "r_y1": 168.096, + "r_x2": 191.947, + "r_y2": 173.734, + "r_x3": 188.611, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1363, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.947, + "r_y0": 168.096, + "r_x1": 193.615, + "r_y1": 168.096, + "r_x2": 193.615, + "r_y2": 173.734, + "r_x3": 191.947, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1364, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.615, + "r_y0": 168.096, + "r_x1": 196.951, + "r_y1": 168.096, + "r_x2": 196.951, + "r_y2": 173.734, + "r_x3": 193.615, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1365, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.951, + "r_y0": 168.096, + "r_x1": 200.287, + "r_y1": 168.096, + "r_x2": 200.287, + "r_y2": 173.734, + "r_x3": 196.951, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1366, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.287, + "r_y0": 168.096, + "r_x1": 202.285, + "r_y1": 168.096, + "r_x2": 202.285, + "r_y2": 173.734, + "r_x3": 200.287, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1367, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.285, + "r_y0": 168.096, + "r_x1": 203.953, + "r_y1": 168.096, + "r_x2": 203.953, + "r_y2": 173.734, + "r_x3": 202.285, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1368, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.953, + "r_y0": 168.096, + "r_x1": 205.285, + "r_y1": 168.096, + "r_x2": 205.285, + "r_y2": 173.734, + "r_x3": 203.953, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1369, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.285, + "r_y0": 168.096, + "r_x1": 206.953, + "r_y1": 168.096, + "r_x2": 206.953, + "r_y2": 173.734, + "r_x3": 205.285, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1370, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.953, + "r_y0": 168.096, + "r_x1": 210.289, + "r_y1": 168.096, + "r_x2": 210.289, + "r_y2": 173.734, + "r_x3": 206.953, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1371, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.289, + "r_y0": 168.096, + "r_x1": 215.287, + "r_y1": 168.096, + "r_x2": 215.287, + "r_y2": 173.734, + "r_x3": 210.289, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1372, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.287, + "r_y0": 168.096, + "r_x1": 218.287, + "r_y1": 168.096, + "r_x2": 218.287, + "r_y2": 173.734, + "r_x3": 215.287, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1373, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 218.287, + "r_y0": 168.096, + "r_x1": 219.955, + "r_y1": 168.096, + "r_x2": 219.955, + "r_y2": 173.734, + "r_x3": 218.287, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1374, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 219.955, + "r_y0": 168.096, + "r_x1": 221.623, + "r_y1": 168.096, + "r_x2": 221.623, + "r_y2": 173.734, + "r_x3": 219.955, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1375, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.623, + "r_y0": 168.096, + "r_x1": 225.955, + "r_y1": 168.096, + "r_x2": 225.955, + "r_y2": 173.734, + "r_x3": 221.623, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1376, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.955, + "r_y0": 168.096, + "r_x1": 227.287, + "r_y1": 168.096, + "r_x2": 227.287, + "r_y2": 173.734, + "r_x3": 225.955, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1377, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.287, + "r_y0": 168.096, + "r_x1": 228.955, + "r_y1": 168.096, + "r_x2": 228.955, + "r_y2": 173.734, + "r_x3": 227.287, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1378, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.955, + "r_y0": 168.096, + "r_x1": 232.291, + "r_y1": 168.096, + "r_x2": 232.291, + "r_y2": 173.734, + "r_x3": 228.955, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1379, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.291, + "r_y0": 168.096, + "r_x1": 235.627, + "r_y1": 168.096, + "r_x2": 235.627, + "r_y2": 173.734, + "r_x3": 232.291, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1380, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.627, + "r_y0": 168.096, + "r_x1": 238.963, + "r_y1": 168.096, + "r_x2": 238.963, + "r_y2": 173.734, + "r_x3": 235.627, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1381, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 238.963, + "r_y0": 168.096, + "r_x1": 240.631, + "r_y1": 168.096, + "r_x2": 240.631, + "r_y2": 173.734, + "r_x3": 238.963, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1382, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.631, + "r_y0": 168.096, + "r_x1": 242.299, + "r_y1": 168.096, + "r_x2": 242.299, + "r_y2": 173.734, + "r_x3": 240.631, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1383, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.299, + "r_y0": 168.096, + "r_x1": 243.967, + "r_y1": 168.096, + "r_x2": 243.967, + "r_y2": 173.734, + "r_x3": 242.299, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1384, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.967, + "r_y0": 168.096, + "r_x1": 245.299, + "r_y1": 168.096, + "r_x2": 245.299, + "r_y2": 173.734, + "r_x3": 243.967, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1385, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 245.299, + "r_y0": 168.096, + "r_x1": 247.297, + "r_y1": 168.096, + "r_x2": 247.297, + "r_y2": 173.734, + "r_x3": 245.299, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1386, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.297, + "r_y0": 168.096, + "r_x1": 250.297, + "r_y1": 168.096, + "r_x2": 250.297, + "r_y2": 173.734, + "r_x3": 247.297, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1387, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 250.297, + "r_y0": 168.096, + "r_x1": 251.965, + "r_y1": 168.096, + "r_x2": 251.965, + "r_y2": 173.734, + "r_x3": 250.297, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1388, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.965, + "r_y0": 168.096, + "r_x1": 253.633, + "r_y1": 168.096, + "r_x2": 253.633, + "r_y2": 173.734, + "r_x3": 251.965, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1389, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.633, + "r_y0": 168.096, + "r_x1": 256.969, + "r_y1": 168.096, + "r_x2": 256.969, + "r_y2": 173.734, + "r_x3": 253.633, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1390, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.969, + "r_y0": 168.096, + "r_x1": 260.305, + "r_y1": 168.096, + "r_x2": 260.305, + "r_y2": 173.734, + "r_x3": 256.969, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1391, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.305, + "r_y0": 168.096, + "r_x1": 261.973, + "r_y1": 168.096, + "r_x2": 261.973, + "r_y2": 173.734, + "r_x3": 260.305, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1392, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.973, + "r_y0": 168.096, + "r_x1": 265.309, + "r_y1": 168.096, + "r_x2": 265.309, + "r_y2": 173.734, + "r_x3": 261.973, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1393, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.309, + "r_y0": 168.096, + "r_x1": 266.641, + "r_y1": 168.096, + "r_x2": 266.641, + "r_y2": 173.734, + "r_x3": 265.309, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1394, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.641, + "r_y0": 168.096, + "r_x1": 269.977, + "r_y1": 168.096, + "r_x2": 269.977, + "r_y2": 173.734, + "r_x3": 266.641, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1395, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.977, + "r_y0": 168.096, + "r_x1": 271.309, + "r_y1": 168.096, + "r_x2": 271.309, + "r_y2": 173.734, + "r_x3": 269.977, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1396, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.309, + "r_y0": 168.096, + "r_x1": 274.645, + "r_y1": 168.096, + "r_x2": 274.645, + "r_y2": 173.734, + "r_x3": 271.309, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1397, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.645, + "r_y0": 168.096, + "r_x1": 277.981, + "r_y1": 168.096, + "r_x2": 277.981, + "r_y2": 173.734, + "r_x3": 274.645, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1398, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.981, + "r_y0": 168.096, + "r_x1": 279.649, + "r_y1": 168.096, + "r_x2": 279.649, + "r_y2": 173.734, + "r_x3": 277.981, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1399, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 160.896, + "r_x1": 54.223, + "r_y1": 160.896, + "r_x2": 54.223, + "r_y2": 166.534, + "r_x3": 50.887, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1400, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.223, + "r_y0": 160.896, + "r_x1": 57.559, + "r_y1": 160.896, + "r_x2": 57.559, + "r_y2": 166.534, + "r_x3": 54.223, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1401, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.559, + "r_y0": 160.896, + "r_x1": 60.895, + "r_y1": 160.896, + "r_x2": 60.895, + "r_y2": 166.534, + "r_x3": 57.559, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1402, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.895, + "r_y0": 160.896, + "r_x1": 62.893, + "r_y1": 160.896, + "r_x2": 62.893, + "r_y2": 166.534, + "r_x3": 60.895, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1403, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.893, + "r_y0": 160.896, + "r_x1": 66.229, + "r_y1": 160.896, + "r_x2": 66.229, + "r_y2": 166.534, + "r_x3": 62.893, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1404, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.229, + "r_y0": 160.896, + "r_x1": 69.229, + "r_y1": 160.896, + "r_x2": 69.229, + "r_y2": 166.534, + "r_x3": 66.229, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1405, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.229, + "r_y0": 160.896, + "r_x1": 72.565, + "r_y1": 160.896, + "r_x2": 72.565, + "r_y2": 166.534, + "r_x3": 69.229, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1406, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.565, + "r_y0": 160.896, + "r_x1": 73.897, + "r_y1": 160.896, + "r_x2": 73.897, + "r_y2": 166.534, + "r_x3": 72.565, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1407, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.897, + "r_y0": 160.896, + "r_x1": 75.565, + "r_y1": 160.896, + "r_x2": 75.565, + "r_y2": 166.534, + "r_x3": 73.897, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1408, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.565, + "r_y0": 160.896, + "r_x1": 77.233, + "r_y1": 160.896, + "r_x2": 77.233, + "r_y2": 166.534, + "r_x3": 75.565, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1409, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.233, + "r_y0": 160.896, + "r_x1": 79.231, + "r_y1": 160.896, + "r_x2": 79.231, + "r_y2": 166.534, + "r_x3": 77.233, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1410, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.231, + "r_y0": 160.896, + "r_x1": 82.567, + "r_y1": 160.896, + "r_x2": 82.567, + "r_y2": 166.534, + "r_x3": 79.231, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1411, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.567, + "r_y0": 160.896, + "r_x1": 87.565, + "r_y1": 160.896, + "r_x2": 87.565, + "r_y2": 166.534, + "r_x3": 82.567, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1412, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.565, + "r_y0": 160.896, + "r_x1": 89.233, + "r_y1": 160.896, + "r_x2": 89.233, + "r_y2": 166.534, + "r_x3": 87.565, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1413, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.233, + "r_y0": 160.896, + "r_x1": 90.901, + "r_y1": 160.896, + "r_x2": 90.901, + "r_y2": 166.534, + "r_x3": 89.233, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1414, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.901, + "r_y0": 160.896, + "r_x1": 94.237, + "r_y1": 160.896, + "r_x2": 94.237, + "r_y2": 166.534, + "r_x3": 90.901, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1415, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.237, + "r_y0": 160.896, + "r_x1": 97.573, + "r_y1": 160.896, + "r_x2": 97.573, + "r_y2": 166.534, + "r_x3": 94.237, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1416, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.573, + "r_y0": 160.896, + "r_x1": 99.241, + "r_y1": 160.896, + "r_x2": 99.241, + "r_y2": 166.534, + "r_x3": 97.573, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1417, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.241, + "r_y0": 160.896, + "r_x1": 103.573, + "r_y1": 160.896, + "r_x2": 103.573, + "r_y2": 166.534, + "r_x3": 99.241, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1418, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.573, + "r_y0": 160.896, + "r_x1": 105.241, + "r_y1": 160.896, + "r_x2": 105.241, + "r_y2": 166.534, + "r_x3": 103.573, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1419, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.241, + "r_y0": 160.896, + "r_x1": 109.243, + "r_y1": 160.896, + "r_x2": 109.243, + "r_y2": 166.534, + "r_x3": 105.241, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1420, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 109.243, + "r_y0": 160.896, + "r_x1": 110.911, + "r_y1": 160.896, + "r_x2": 110.911, + "r_y2": 166.534, + "r_x3": 109.243, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1421, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.911, + "r_y0": 160.896, + "r_x1": 112.579, + "r_y1": 160.896, + "r_x2": 112.579, + "r_y2": 166.534, + "r_x3": 110.911, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1422, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.579, + "r_y0": 160.896, + "r_x1": 115.915, + "r_y1": 160.896, + "r_x2": 115.915, + "r_y2": 166.534, + "r_x3": 112.579, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1423, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 115.915, + "r_y0": 160.896, + "r_x1": 119.251, + "r_y1": 160.896, + "r_x2": 119.251, + "r_y2": 166.534, + "r_x3": 115.915, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1424, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 119.251, + "r_y0": 160.896, + "r_x1": 122.251, + "r_y1": 160.896, + "r_x2": 122.251, + "r_y2": 166.534, + "r_x3": 119.251, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1425, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 122.251, + "r_y0": 160.896, + "r_x1": 125.587, + "r_y1": 160.896, + "r_x2": 125.587, + "r_y2": 166.534, + "r_x3": 122.251, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1426, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.587, + "r_y0": 160.896, + "r_x1": 127.585, + "r_y1": 160.896, + "r_x2": 127.585, + "r_y2": 166.534, + "r_x3": 125.587, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1427, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 127.585, + "r_y0": 160.896, + "r_x1": 130.921, + "r_y1": 160.896, + "r_x2": 130.921, + "r_y2": 166.534, + "r_x3": 127.585, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1428, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.921, + "r_y0": 160.896, + "r_x1": 135.919, + "r_y1": 160.896, + "r_x2": 135.919, + "r_y2": 166.534, + "r_x3": 130.921, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1429, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.919, + "r_y0": 160.896, + "r_x1": 139.255, + "r_y1": 160.896, + "r_x2": 139.255, + "r_y2": 166.534, + "r_x3": 135.919, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1430, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.255, + "r_y0": 160.896, + "r_x1": 142.591, + "r_y1": 160.896, + "r_x2": 142.591, + "r_y2": 166.534, + "r_x3": 139.255, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1431, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.591, + "r_y0": 160.896, + "r_x1": 144.259, + "r_y1": 160.896, + "r_x2": 144.259, + "r_y2": 166.534, + "r_x3": 142.591, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1432, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.259, + "r_y0": 160.896, + "r_x1": 145.927, + "r_y1": 160.896, + "r_x2": 145.927, + "r_y2": 166.534, + "r_x3": 144.259, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1433, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.927, + "r_y0": 160.896, + "r_x1": 149.263, + "r_y1": 160.896, + "r_x2": 149.263, + "r_y2": 166.534, + "r_x3": 145.927, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1434, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.263, + "r_y0": 160.896, + "r_x1": 151.261, + "r_y1": 160.896, + "r_x2": 151.261, + "r_y2": 166.534, + "r_x3": 149.263, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1435, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 151.261, + "r_y0": 160.896, + "r_x1": 152.929, + "r_y1": 160.896, + "r_x2": 152.929, + "r_y2": 166.534, + "r_x3": 151.261, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1436, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.929, + "r_y0": 160.896, + "r_x1": 156.265, + "r_y1": 160.896, + "r_x2": 156.265, + "r_y2": 166.534, + "r_x3": 152.929, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1437, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 156.265, + "r_y0": 160.896, + "r_x1": 159.265, + "r_y1": 160.896, + "r_x2": 159.265, + "r_y2": 166.534, + "r_x3": 156.265, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1438, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.265, + "r_y0": 160.896, + "r_x1": 160.933, + "r_y1": 160.896, + "r_x2": 160.933, + "r_y2": 166.534, + "r_x3": 159.265, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1439, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.933, + "r_y0": 160.896, + "r_x1": 164.269, + "r_y1": 160.896, + "r_x2": 164.269, + "r_y2": 166.534, + "r_x3": 160.933, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1440, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.269, + "r_y0": 160.896, + "r_x1": 165.937, + "r_y1": 160.896, + "r_x2": 165.937, + "r_y2": 166.534, + "r_x3": 164.269, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1441, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 165.937, + "r_y0": 160.896, + "r_x1": 169.273, + "r_y1": 160.896, + "r_x2": 169.273, + "r_y2": 166.534, + "r_x3": 165.937, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1442, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.273, + "r_y0": 160.896, + "r_x1": 172.609, + "r_y1": 160.896, + "r_x2": 172.609, + "r_y2": 166.534, + "r_x3": 169.273, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1443, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.609, + "r_y0": 160.896, + "r_x1": 174.607, + "r_y1": 160.896, + "r_x2": 174.607, + "r_y2": 166.534, + "r_x3": 172.609, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1444, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.607, + "r_y0": 160.896, + "r_x1": 178.939, + "r_y1": 160.896, + "r_x2": 178.939, + "r_y2": 166.534, + "r_x3": 174.607, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1445, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.939, + "r_y0": 160.896, + "r_x1": 180.271, + "r_y1": 160.896, + "r_x2": 180.271, + "r_y2": 166.534, + "r_x3": 178.939, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1446, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.271, + "r_y0": 160.896, + "r_x1": 183.271, + "r_y1": 160.896, + "r_x2": 183.271, + "r_y2": 166.534, + "r_x3": 180.271, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1447, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.271, + "r_y0": 160.896, + "r_x1": 186.607, + "r_y1": 160.896, + "r_x2": 186.607, + "r_y2": 166.534, + "r_x3": 183.271, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1448, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.607, + "r_y0": 160.896, + "r_x1": 188.275, + "r_y1": 160.896, + "r_x2": 188.275, + "r_y2": 166.534, + "r_x3": 186.607, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1449, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.275, + "r_y0": 160.896, + "r_x1": 191.611, + "r_y1": 160.896, + "r_x2": 191.611, + "r_y2": 166.534, + "r_x3": 188.275, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1450, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.611, + "r_y0": 160.896, + "r_x1": 194.947, + "r_y1": 160.896, + "r_x2": 194.947, + "r_y2": 166.534, + "r_x3": 191.611, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1451, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.947, + "r_y0": 160.896, + "r_x1": 196.615, + "r_y1": 160.896, + "r_x2": 196.615, + "r_y2": 166.534, + "r_x3": 194.947, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1452, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.615, + "r_y0": 160.896, + "r_x1": 199.951, + "r_y1": 160.896, + "r_x2": 199.951, + "r_y2": 166.534, + "r_x3": 196.615, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1453, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.951, + "r_y0": 160.896, + "r_x1": 203.287, + "r_y1": 160.896, + "r_x2": 203.287, + "r_y2": 166.534, + "r_x3": 199.951, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1454, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.287, + "r_y0": 160.896, + "r_x1": 205.285, + "r_y1": 160.896, + "r_x2": 205.285, + "r_y2": 166.534, + "r_x3": 203.287, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1455, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.285, + "r_y0": 160.896, + "r_x1": 206.617, + "r_y1": 160.896, + "r_x2": 206.617, + "r_y2": 166.534, + "r_x3": 205.285, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1456, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.617, + "r_y0": 160.896, + "r_x1": 209.617, + "r_y1": 160.896, + "r_x2": 209.617, + "r_y2": 166.534, + "r_x3": 206.617, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "z", + "orig": "z", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1457, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 209.617, + "r_y0": 160.896, + "r_x1": 212.953, + "r_y1": 160.896, + "r_x2": 212.953, + "r_y2": 166.534, + "r_x3": 209.617, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1458, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.953, + "r_y0": 160.896, + "r_x1": 216.289, + "r_y1": 160.896, + "r_x2": 216.289, + "r_y2": 166.534, + "r_x3": 212.953, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1459, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.289, + "r_y0": 160.896, + "r_x1": 217.957, + "r_y1": 160.896, + "r_x2": 217.957, + "r_y2": 166.534, + "r_x3": 216.289, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1460, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.957, + "r_y0": 160.896, + "r_x1": 221.293, + "r_y1": 160.896, + "r_x2": 221.293, + "r_y2": 166.534, + "r_x3": 217.957, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1461, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.293, + "r_y0": 160.896, + "r_x1": 224.293, + "r_y1": 160.896, + "r_x2": 224.293, + "r_y2": 166.534, + "r_x3": 221.293, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1462, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.293, + "r_y0": 160.896, + "r_x1": 225.961, + "r_y1": 160.896, + "r_x2": 225.961, + "r_y2": 166.534, + "r_x3": 224.293, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1463, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.961, + "r_y0": 160.896, + "r_x1": 230.293, + "r_y1": 160.896, + "r_x2": 230.293, + "r_y2": 166.534, + "r_x3": 225.961, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1464, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 230.293, + "r_y0": 160.896, + "r_x1": 231.961, + "r_y1": 160.896, + "r_x2": 231.961, + "r_y2": 166.534, + "r_x3": 230.293, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1465, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.961, + "r_y0": 160.896, + "r_x1": 235.963, + "r_y1": 160.896, + "r_x2": 235.963, + "r_y2": 166.534, + "r_x3": 231.961, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1466, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.963, + "r_y0": 160.896, + "r_x1": 237.631, + "r_y1": 160.896, + "r_x2": 237.631, + "r_y2": 166.534, + "r_x3": 235.963, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1467, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.631, + "r_y0": 160.896, + "r_x1": 239.299, + "r_y1": 160.896, + "r_x2": 239.299, + "r_y2": 166.534, + "r_x3": 237.631, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1468, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.299, + "r_y0": 160.896, + "r_x1": 240.631, + "r_y1": 160.896, + "r_x2": 240.631, + "r_y2": 166.534, + "r_x3": 239.299, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1469, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.631, + "r_y0": 160.896, + "r_x1": 243.967, + "r_y1": 160.896, + "r_x2": 243.967, + "r_y2": 166.534, + "r_x3": 240.631, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1470, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.967, + "r_y0": 160.896, + "r_x1": 248.299, + "r_y1": 160.896, + "r_x2": 248.299, + "r_y2": 166.534, + "r_x3": 243.967, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1471, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 248.299, + "r_y0": 160.896, + "r_x1": 249.967, + "r_y1": 160.896, + "r_x2": 249.967, + "r_y2": 166.534, + "r_x3": 248.299, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1472, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.967, + "r_y0": 160.896, + "r_x1": 253.303, + "r_y1": 160.896, + "r_x2": 253.303, + "r_y2": 166.534, + "r_x3": 249.967, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1473, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.303, + "r_y0": 160.896, + "r_x1": 256.639, + "r_y1": 160.896, + "r_x2": 256.639, + "r_y2": 166.534, + "r_x3": 253.303, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1474, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.639, + "r_y0": 160.896, + "r_x1": 259.975, + "r_y1": 160.896, + "r_x2": 259.975, + "r_y2": 166.534, + "r_x3": 256.639, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1475, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.975, + "r_y0": 160.896, + "r_x1": 261.643, + "r_y1": 160.896, + "r_x2": 261.643, + "r_y2": 166.534, + "r_x3": 259.975, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1476, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.643, + "r_y0": 160.896, + "r_x1": 263.641, + "r_y1": 160.896, + "r_x2": 263.641, + "r_y2": 166.534, + "r_x3": 261.643, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1477, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.641, + "r_y0": 160.896, + "r_x1": 266.977, + "r_y1": 160.896, + "r_x2": 266.977, + "r_y2": 166.534, + "r_x3": 263.641, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1478, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.977, + "r_y0": 160.896, + "r_x1": 270.313, + "r_y1": 160.896, + "r_x2": 270.313, + "r_y2": 166.534, + "r_x3": 266.977, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1479, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.313, + "r_y0": 160.896, + "r_x1": 273.649, + "r_y1": 160.896, + "r_x2": 273.649, + "r_y2": 166.534, + "r_x3": 270.313, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1480, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.649, + "r_y0": 160.896, + "r_x1": 274.981, + "r_y1": 160.896, + "r_x2": 274.981, + "r_y2": 166.534, + "r_x3": 273.649, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1481, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.981, + "r_y0": 160.896, + "r_x1": 278.317, + "r_y1": 160.896, + "r_x2": 278.317, + "r_y2": 166.534, + "r_x3": 274.981, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1482, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.317, + "r_y0": 160.896, + "r_x1": 279.985, + "r_y1": 160.896, + "r_x2": 279.985, + "r_y2": 166.534, + "r_x3": 278.317, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1483, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 279.985, + "r_y0": 160.896, + "r_x1": 281.317, + "r_y1": 160.896, + "r_x2": 281.317, + "r_y2": 166.534, + "r_x3": 279.985, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1484, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 281.317, + "r_y0": 160.896, + "r_x1": 284.653, + "r_y1": 160.896, + "r_x2": 284.653, + "r_y2": 166.534, + "r_x3": 281.317, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1485, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 284.653, + "r_y0": 160.896, + "r_x1": 287.989, + "r_y1": 160.896, + "r_x2": 287.989, + "r_y2": 166.534, + "r_x3": 284.653, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1486, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 288.01, + "r_y0": 160.896, + "r_x1": 291.01, + "r_y1": 160.896, + "r_x2": 291.01, + "r_y2": 166.534, + "r_x3": 288.01, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1487, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 291.01, + "r_y0": 160.895, + "r_x1": 292.678, + "r_y1": 160.895, + "r_x2": 292.678, + "r_y2": 166.534, + "r_x3": 291.01, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1488, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 510.119, + "r_x1": 58.655, + "r_y1": 510.119, + "r_x2": 58.655, + "r_y2": 516.697, + "r_x3": 53.601, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1489, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.655, + "r_y0": 510.119, + "r_x1": 62.547, + "r_y1": 510.119, + "r_x2": 62.547, + "r_y2": 516.697, + "r_x3": 58.655, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1490, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.547, + "r_y0": 510.119, + "r_x1": 66.439, + "r_y1": 510.119, + "r_x2": 66.439, + "r_y2": 516.697, + "r_x3": 62.547, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1491, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.439, + "r_y0": 510.119, + "r_x1": 70.331, + "r_y1": 510.119, + "r_x2": 70.331, + "r_y2": 516.697, + "r_x3": 66.439, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1492, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.331, + "r_y0": 510.119, + "r_x1": 72.277, + "r_y1": 510.119, + "r_x2": 72.277, + "r_y2": 516.697, + "r_x3": 70.331, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1493, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.277, + "r_y0": 510.119, + "r_x1": 74.608, + "r_y1": 510.119, + "r_x2": 74.608, + "r_y2": 516.697, + "r_x3": 72.277, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1494, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.608, + "r_y0": 510.119, + "r_x1": 78.108, + "r_y1": 510.119, + "r_x2": 78.108, + "r_y2": 516.697, + "r_x3": 74.608, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1495, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.108, + "r_y0": 510.119, + "r_x1": 80.054, + "r_y1": 510.119, + "r_x2": 80.054, + "r_y2": 516.697, + "r_x3": 78.108, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1496, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.054, + "r_y0": 510.119, + "r_x1": 83.946, + "r_y1": 510.119, + "r_x2": 83.946, + "r_y2": 516.697, + "r_x3": 80.054, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1497, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.946, + "r_y0": 510.119, + "r_x1": 85.892, + "r_y1": 510.119, + "r_x2": 85.892, + "r_y2": 516.697, + "r_x3": 83.946, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1498, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.892, + "r_y0": 510.119, + "r_x1": 87.838, + "r_y1": 510.119, + "r_x2": 87.838, + "r_y2": 516.697, + "r_x3": 85.892, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1499, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.838, + "r_y0": 510.119, + "r_x1": 92.892, + "r_y1": 510.119, + "r_x2": 92.892, + "r_y2": 516.697, + "r_x3": 87.838, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1500, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.892, + "r_y0": 510.119, + "r_x1": 94.446, + "r_y1": 510.119, + "r_x2": 94.446, + "r_y2": 516.697, + "r_x3": 92.892, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1501, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.446, + "r_y0": 510.119, + "r_x1": 96.392, + "r_y1": 510.119, + "r_x2": 96.392, + "r_y2": 516.697, + "r_x3": 94.446, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1502, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 96.392, + "r_y0": 510.119, + "r_x1": 97.946, + "r_y1": 510.119, + "r_x2": 97.946, + "r_y2": 516.697, + "r_x3": 96.392, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1503, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.946, + "r_y0": 510.119, + "r_x1": 103.777, + "r_y1": 510.119, + "r_x2": 103.777, + "r_y2": 516.697, + "r_x3": 97.946, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1504, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 103.777, + "r_y0": 510.119, + "r_x1": 107.669, + "r_y1": 510.119, + "r_x2": 107.669, + "r_y2": 516.697, + "r_x3": 103.777, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1505, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.669, + "r_y0": 510.119, + "r_x1": 109.615, + "r_y1": 510.119, + "r_x2": 109.615, + "r_y2": 516.697, + "r_x3": 107.669, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1506, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 109.615, + "r_y0": 510.119, + "r_x1": 113.507, + "r_y1": 510.119, + "r_x2": 113.507, + "r_y2": 516.697, + "r_x3": 109.615, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1507, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.507, + "r_y0": 510.119, + "r_x1": 115.453, + "r_y1": 510.119, + "r_x2": 115.453, + "r_y2": 516.697, + "r_x3": 113.507, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1508, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 501.719, + "r_x1": 58.655, + "r_y1": 501.719, + "r_x2": 58.655, + "r_y2": 508.297, + "r_x3": 53.601, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1509, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.655, + "r_y0": 501.719, + "r_x1": 62.547, + "r_y1": 501.719, + "r_x2": 62.547, + "r_y2": 508.297, + "r_x3": 58.655, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1510, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.547, + "r_y0": 501.719, + "r_x1": 66.047, + "r_y1": 501.719, + "r_x2": 66.047, + "r_y2": 508.297, + "r_x3": 62.547, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1511, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.047, + "r_y0": 501.719, + "r_x1": 67.993, + "r_y1": 501.719, + "r_x2": 67.993, + "r_y2": 508.297, + "r_x3": 66.047, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1512, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 67.993, + "r_y0": 501.719, + "r_x1": 69.547, + "r_y1": 501.719, + "r_x2": 69.547, + "r_y2": 508.297, + "r_x3": 67.993, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1513, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.547, + "r_y0": 501.719, + "r_x1": 73.439, + "r_y1": 501.719, + "r_x2": 73.439, + "r_y2": 508.297, + "r_x3": 69.547, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1514, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.439, + "r_y0": 501.719, + "r_x1": 77.331, + "r_y1": 501.719, + "r_x2": 77.331, + "r_y2": 508.297, + "r_x3": 73.439, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1515, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.331, + "r_y0": 501.719, + "r_x1": 79.277, + "r_y1": 501.719, + "r_x2": 79.277, + "r_y2": 508.297, + "r_x3": 77.331, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1516, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.277, + "r_y0": 501.719, + "r_x1": 80.831, + "r_y1": 501.719, + "r_x2": 80.831, + "r_y2": 508.297, + "r_x3": 79.277, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1517, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.831, + "r_y0": 501.719, + "r_x1": 84.723, + "r_y1": 501.719, + "r_x2": 84.723, + "r_y2": 508.297, + "r_x3": 80.831, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1518, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.723, + "r_y0": 501.719, + "r_x1": 88.615, + "r_y1": 501.719, + "r_x2": 88.615, + "r_y2": 508.297, + "r_x3": 84.723, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 1519, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.265, + "r_y0": 693.036, + "r_x1": 70.269, + "r_y1": 693.036, + "r_x2": 70.269, + "r_y2": 701.361, + "r_x3": 65.265, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1520, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.269, + "r_y0": 693.036, + "r_x1": 75.273, + "r_y1": 693.036, + "r_x2": 75.273, + "r_y2": 701.361, + "r_x3": 70.269, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1521, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.273, + "r_y0": 693.036, + "r_x1": 77.775, + "r_y1": 693.036, + "r_x2": 77.775, + "r_y2": 701.361, + "r_x3": 75.273, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1522, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.775, + "r_y0": 693.036, + "r_x1": 82.779, + "r_y1": 693.036, + "r_x2": 82.779, + "r_y2": 701.361, + "r_x3": 77.775, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1523, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.779, + "r_y0": 693.036, + "r_x1": 87.783, + "r_y1": 693.036, + "r_x2": 87.783, + "r_y2": 701.361, + "r_x3": 82.779, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1524, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.783, + "r_y0": 693.036, + "r_x1": 90.285, + "r_y1": 693.036, + "r_x2": 90.285, + "r_y2": 701.361, + "r_x3": 87.783, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1525, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.285, + "r_y0": 693.036, + "r_x1": 95.289, + "r_y1": 693.036, + "r_x2": 95.289, + "r_y2": 701.361, + "r_x3": 90.285, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1526, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.289, + "r_y0": 693.036, + "r_x1": 100.293, + "r_y1": 693.036, + "r_x2": 100.293, + "r_y2": 701.361, + "r_x3": 95.289, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1527, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.469, + "r_y0": 693.036, + "r_x1": 165.474, + "r_y1": 693.036, + "r_x2": 165.474, + "r_y2": 701.361, + "r_x3": 160.469, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1528, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 165.474, + "r_y0": 693.036, + "r_x1": 170.477, + "r_y1": 693.036, + "r_x2": 170.477, + "r_y2": 701.361, + "r_x3": 165.474, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1529, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.477, + "r_y0": 693.036, + "r_x1": 175.481, + "r_y1": 693.036, + "r_x2": 175.481, + "r_y2": 701.361, + "r_x3": 170.477, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1530, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.878, + "r_y0": 693.036, + "r_x1": 262.882, + "r_y1": 693.036, + "r_x2": 262.882, + "r_y2": 701.361, + "r_x3": 257.878, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1531, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 262.882, + "r_y0": 693.036, + "r_x1": 267.886, + "r_y1": 693.036, + "r_x2": 267.886, + "r_y2": 701.361, + "r_x3": 262.882, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1532, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.886, + "r_y0": 693.036, + "r_x1": 272.89, + "r_y1": 693.036, + "r_x2": 272.89, + "r_y2": 701.361, + "r_x3": 267.886, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1533, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.89, + "r_y0": 693.036, + "r_x1": 277.894, + "r_y1": 693.036, + "r_x2": 277.894, + "r_y2": 701.361, + "r_x3": 272.89, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1534, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.894, + "r_y0": 693.036, + "r_x1": 282.898, + "r_y1": 693.036, + "r_x2": 282.898, + "r_y2": 701.361, + "r_x3": 277.894, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1535, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.898, + "r_y0": 693.036, + "r_x1": 287.902, + "r_y1": 693.036, + "r_x2": 287.902, + "r_y2": 701.361, + "r_x3": 282.898, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1536, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 442.715, + "r_y0": 693.036, + "r_x1": 445.712, + "r_y1": 693.036, + "r_x2": 445.712, + "r_y2": 701.361, + "r_x3": 442.715, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1537, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 659.697, + "r_x1": 177.871, + "r_y1": 659.697, + "r_x2": 177.871, + "r_y2": 668.023, + "r_x3": 170.869, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "G", + "orig": "G", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1538, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.871, + "r_y0": 659.697, + "r_x1": 182.875, + "r_y1": 659.697, + "r_x2": 182.875, + "r_y2": 668.023, + "r_x3": 177.871, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1539, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.875, + "r_y0": 659.697, + "r_x1": 187.879, + "r_y1": 659.697, + "r_x2": 187.879, + "r_y2": 668.023, + "r_x3": 182.875, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1540, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.879, + "r_y0": 659.697, + "r_x1": 192.883, + "r_y1": 659.697, + "r_x2": 192.883, + "r_y2": 668.023, + "r_x3": 187.879, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1541, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.883, + "r_y0": 659.697, + "r_x1": 199.381, + "r_y1": 659.697, + "r_x2": 199.381, + "r_y2": 668.023, + "r_x3": 192.883, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1542, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.381, + "r_y0": 659.697, + "r_x1": 201.379, + "r_y1": 659.697, + "r_x2": 201.379, + "r_y2": 668.023, + "r_x3": 199.381, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1543, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.379, + "r_y0": 659.697, + "r_x1": 206.383, + "r_y1": 659.697, + "r_x2": 206.383, + "r_y2": 668.023, + "r_x3": 201.379, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1544, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.383, + "r_y0": 659.697, + "r_x1": 208.885, + "r_y1": 659.697, + "r_x2": 208.885, + "r_y2": 668.023, + "r_x3": 206.383, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1545, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.885, + "r_y0": 659.697, + "r_x1": 215.887, + "r_y1": 659.697, + "r_x2": 215.887, + "r_y2": 668.023, + "r_x3": 208.885, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "G", + "orig": "G", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1546, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.887, + "r_y0": 659.697, + "r_x1": 218.884, + "r_y1": 659.697, + "r_x2": 218.884, + "r_y2": 668.023, + "r_x3": 215.887, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1547, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 218.884, + "r_y0": 659.697, + "r_x1": 223.888, + "r_y1": 659.697, + "r_x2": 223.888, + "r_y2": 668.023, + "r_x3": 218.884, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1548, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.888, + "r_y0": 659.697, + "r_x1": 228.892, + "r_y1": 659.697, + "r_x2": 228.892, + "r_y2": 668.023, + "r_x3": 223.888, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1549, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.892, + "r_y0": 659.697, + "r_x1": 233.896, + "r_y1": 659.697, + "r_x2": 233.896, + "r_y2": 668.023, + "r_x3": 228.892, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "p", + "orig": "p", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1550, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 640.298, + "r_x1": 175.873, + "r_y1": 640.298, + "r_x2": 175.873, + "r_y2": 648.623, + "r_x3": 170.869, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1551, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.873, + "r_y0": 640.298, + "r_x1": 180.877, + "r_y1": 640.298, + "r_x2": 180.877, + "r_y2": 648.623, + "r_x3": 175.873, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1552, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.877, + "r_y0": 640.298, + "r_x1": 185.881, + "r_y1": 640.298, + "r_x2": 185.881, + "r_y2": 648.623, + "r_x3": 180.877, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1553, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.881, + "r_y0": 640.298, + "r_x1": 190.885, + "r_y1": 640.298, + "r_x2": 190.885, + "r_y2": 648.623, + "r_x3": 185.881, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1554, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.885, + "r_y0": 640.298, + "r_x1": 193.387, + "r_y1": 640.298, + "r_x2": 193.387, + "r_y2": 648.623, + "r_x3": 190.885, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1555, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 640.298, + "r_x1": 199.39, + "r_y1": 640.298, + "r_x2": 199.39, + "r_y2": 648.623, + "r_x3": 193.387, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1556, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.39, + "r_y0": 640.298, + "r_x1": 201.388, + "r_y1": 640.298, + "r_x2": 201.388, + "r_y2": 648.623, + "r_x3": 199.39, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1557, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.388, + "r_y0": 640.298, + "r_x1": 208.885, + "r_y1": 640.298, + "r_x2": 208.885, + "r_y2": 648.623, + "r_x3": 201.388, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1558, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.885, + "r_y0": 640.298, + "r_x1": 215.383, + "r_y1": 640.298, + "r_x2": 215.383, + "r_y2": 648.623, + "r_x3": 208.885, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1559, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.383, + "r_y0": 640.298, + "r_x1": 220.387, + "r_y1": 640.298, + "r_x2": 220.387, + "r_y2": 648.623, + "r_x3": 215.383, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1560, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 220.387, + "r_y0": 640.298, + "r_x1": 225.391, + "r_y1": 640.298, + "r_x2": 225.391, + "r_y2": 648.623, + "r_x3": 220.387, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1561, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.391, + "r_y0": 640.298, + "r_x1": 230.395, + "r_y1": 640.298, + "r_x2": 230.395, + "r_y2": 648.623, + "r_x3": 225.391, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1562, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 230.395, + "r_y0": 640.298, + "r_x1": 232.897, + "r_y1": 640.298, + "r_x2": 232.897, + "r_y2": 648.623, + "r_x3": 230.395, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1563, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.897, + "r_y0": 640.298, + "r_x1": 238.9, + "r_y1": 640.298, + "r_x2": 238.9, + "r_y2": 648.623, + "r_x3": 232.897, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1564, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 238.9, + "r_y0": 640.298, + "r_x1": 241.402, + "r_y1": 640.298, + "r_x2": 241.402, + "r_y2": 648.623, + "r_x3": 238.9, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1565, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 241.402, + "r_y0": 640.298, + "r_x1": 243.904, + "r_y1": 640.298, + "r_x2": 243.904, + "r_y2": 648.623, + "r_x3": 241.402, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1566, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.904, + "r_y0": 640.298, + "r_x1": 246.406, + "r_y1": 640.298, + "r_x2": 246.406, + "r_y2": 648.623, + "r_x3": 243.904, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1567, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 246.406, + "r_y0": 640.298, + "r_x1": 252.409, + "r_y1": 640.298, + "r_x2": 252.409, + "r_y2": 648.623, + "r_x3": 246.406, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B", + "orig": "B", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1568, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.409, + "r_y0": 640.298, + "r_x1": 255.406, + "r_y1": 640.298, + "r_x2": 255.406, + "r_y2": 648.623, + "r_x3": 252.409, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1569, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 255.406, + "r_y0": 640.298, + "r_x1": 260.41, + "r_y1": 640.298, + "r_x2": 260.41, + "r_y2": 648.623, + "r_x3": 255.406, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1570, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.41, + "r_y0": 640.298, + "r_x1": 265.414, + "r_y1": 640.298, + "r_x2": 265.414, + "r_y2": 648.623, + "r_x3": 260.41, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1571, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.414, + "r_y0": 640.298, + "r_x1": 269.914, + "r_y1": 640.298, + "r_x2": 269.914, + "r_y2": 648.623, + "r_x3": 265.414, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "x", + "orig": "x", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1572, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.914, + "r_y0": 640.298, + "r_x1": 272.416, + "r_y1": 640.298, + "r_x2": 272.416, + "r_y2": 648.623, + "r_x3": 269.914, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1573, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.416, + "r_y0": 640.298, + "r_x1": 274.918, + "r_y1": 640.298, + "r_x2": 274.918, + "r_y2": 648.623, + "r_x3": 272.416, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1574, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.918, + "r_y0": 640.298, + "r_x1": 281.416, + "r_y1": 640.298, + "r_x2": 281.416, + "r_y2": 648.623, + "r_x3": 274.918, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1575, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 281.416, + "r_y0": 640.298, + "r_x1": 287.419, + "r_y1": 640.298, + "r_x2": 287.419, + "r_y2": 648.623, + "r_x3": 281.416, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Y", + "orig": "Y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1576, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 287.419, + "r_y0": 640.298, + "r_x1": 289.921, + "r_y1": 640.298, + "r_x2": 289.921, + "r_y2": 648.623, + "r_x3": 287.419, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1577, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 289.921, + "r_y0": 640.298, + "r_x1": 294.925, + "r_y1": 640.298, + "r_x2": 294.925, + "r_y2": 648.623, + "r_x3": 289.921, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1578, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 294.925, + "r_y0": 640.298, + "r_x1": 299.929, + "r_y1": 640.298, + "r_x2": 299.929, + "r_y2": 648.623, + "r_x3": 294.925, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1579, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 299.929, + "r_y0": 640.298, + "r_x1": 304.933, + "r_y1": 640.298, + "r_x2": 304.933, + "r_y2": 648.623, + "r_x3": 299.929, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1580, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 304.933, + "r_y0": 640.298, + "r_x1": 309.937, + "r_y1": 640.298, + "r_x2": 309.937, + "r_y2": 648.623, + "r_x3": 304.933, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6", + "orig": "6", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1581, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.937, + "r_y0": 640.298, + "r_x1": 314.941, + "r_y1": 640.298, + "r_x2": 314.941, + "r_y2": 648.623, + "r_x3": 309.937, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5", + "orig": "5", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1582, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 619.952, + "r_x1": 176.872, + "r_y1": 619.952, + "r_x2": 176.872, + "r_y2": 628.278, + "r_x3": 170.869, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "K", + "orig": "K", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1583, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.872, + "r_y0": 619.952, + "r_x1": 181.876, + "r_y1": 619.952, + "r_x2": 181.876, + "r_y2": 628.278, + "r_x3": 176.872, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1584, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.876, + "r_y0": 619.952, + "r_x1": 184.873, + "r_y1": 619.952, + "r_x2": 184.873, + "r_y2": 628.278, + "r_x3": 181.876, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1585, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.873, + "r_y0": 619.952, + "r_x1": 186.871, + "r_y1": 619.952, + "r_x2": 186.871, + "r_y2": 628.278, + "r_x3": 184.873, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1586, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.871, + "r_y0": 619.952, + "r_x1": 191.875, + "r_y1": 619.952, + "r_x2": 191.875, + "r_y2": 628.278, + "r_x3": 186.871, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1587, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.875, + "r_y0": 619.952, + "r_x1": 196.375, + "r_y1": 619.952, + "r_x2": 196.375, + "r_y2": 628.278, + "r_x3": 191.875, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1588, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.375, + "r_y0": 619.952, + "r_x1": 201.379, + "r_y1": 619.952, + "r_x2": 201.379, + "r_y2": 628.278, + "r_x3": 196.375, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1589, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.379, + "r_y0": 619.952, + "r_x1": 203.881, + "r_y1": 619.952, + "r_x2": 203.881, + "r_y2": 628.278, + "r_x3": 201.379, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1590, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.881, + "r_y0": 619.952, + "r_x1": 206.383, + "r_y1": 619.952, + "r_x2": 206.383, + "r_y2": 628.278, + "r_x3": 203.881, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1591, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.383, + "r_y0": 619.952, + "r_x1": 212.386, + "r_y1": 619.952, + "r_x2": 212.386, + "r_y2": 628.278, + "r_x3": 206.383, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "V", + "orig": "V", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1592, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.386, + "r_y0": 619.952, + "r_x1": 217.39, + "r_y1": 619.952, + "r_x2": 217.39, + "r_y2": 628.278, + "r_x3": 212.386, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1593, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.39, + "r_y0": 619.952, + "r_x1": 222.394, + "r_y1": 619.952, + "r_x2": 222.394, + "r_y2": 628.278, + "r_x3": 217.39, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1594, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.394, + "r_y0": 619.952, + "r_x1": 229.891, + "r_y1": 619.952, + "r_x2": 229.891, + "r_y2": 628.278, + "r_x3": 222.394, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1595, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.891, + "r_y0": 619.952, + "r_x1": 232.393, + "r_y1": 619.952, + "r_x2": 232.393, + "r_y2": 628.278, + "r_x3": 229.891, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1596, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.393, + "r_y0": 619.952, + "r_x1": 237.397, + "r_y1": 619.952, + "r_x2": 237.397, + "r_y2": 628.278, + "r_x3": 232.393, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1597, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.397, + "r_y0": 619.952, + "r_x1": 242.401, + "r_y1": 619.952, + "r_x2": 242.401, + "r_y2": 628.278, + "r_x3": 237.397, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1598, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.401, + "r_y0": 619.952, + "r_x1": 247.405, + "r_y1": 619.952, + "r_x2": 247.405, + "r_y2": 628.278, + "r_x3": 242.401, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1599, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.405, + "r_y0": 619.952, + "r_x1": 249.907, + "r_y1": 619.952, + "r_x2": 249.907, + "r_y2": 628.278, + "r_x3": 247.405, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1600, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.907, + "r_y0": 619.952, + "r_x1": 256.405, + "r_y1": 619.952, + "r_x2": 256.405, + "r_y2": 628.278, + "r_x3": 249.907, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1601, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.405, + "r_y0": 619.952, + "r_x1": 259.402, + "r_y1": 619.952, + "r_x2": 259.402, + "r_y2": 628.278, + "r_x3": 256.405, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1602, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.402, + "r_y0": 619.952, + "r_x1": 261.4, + "r_y1": 619.952, + "r_x2": 261.4, + "r_y2": 628.278, + "r_x3": 259.402, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1603, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.4, + "r_y0": 619.952, + "r_x1": 265.9, + "r_y1": 619.952, + "r_x2": 265.9, + "r_y2": 628.278, + "r_x3": 261.4, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1604, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.9, + "r_y0": 619.952, + "r_x1": 268.402, + "r_y1": 619.952, + "r_x2": 268.402, + "r_y2": 628.278, + "r_x3": 265.9, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1605, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 599.553, + "r_x1": 175.873, + "r_y1": 599.553, + "r_x2": 175.873, + "r_y2": 607.878, + "r_x3": 170.869, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1606, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.873, + "r_y0": 599.553, + "r_x1": 180.877, + "r_y1": 599.553, + "r_x2": 180.877, + "r_y2": 607.878, + "r_x3": 175.873, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1607, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.877, + "r_y0": 599.553, + "r_x1": 185.881, + "r_y1": 599.553, + "r_x2": 185.881, + "r_y2": 607.878, + "r_x3": 180.877, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1608, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.881, + "r_y0": 599.553, + "r_x1": 190.885, + "r_y1": 599.553, + "r_x2": 190.885, + "r_y2": 607.878, + "r_x3": 185.881, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1609, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.885, + "r_y0": 599.553, + "r_x1": 193.387, + "r_y1": 599.553, + "r_x2": 193.387, + "r_y2": 607.878, + "r_x3": 190.885, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1610, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 599.553, + "r_x1": 201.883, + "r_y1": 599.553, + "r_x2": 201.883, + "r_y2": 607.878, + "r_x3": 193.387, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "W", + "orig": "W", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1611, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.883, + "r_y0": 599.553, + "r_x1": 204.385, + "r_y1": 599.553, + "r_x2": 204.385, + "r_y2": 607.878, + "r_x3": 201.883, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1612, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.385, + "r_y0": 599.553, + "r_x1": 210.883, + "r_y1": 599.553, + "r_x2": 210.883, + "r_y2": 607.878, + "r_x3": 204.385, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1613, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.883, + "r_y0": 599.553, + "r_x1": 215.887, + "r_y1": 599.553, + "r_x2": 215.887, + "r_y2": 607.878, + "r_x3": 210.883, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1614, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.887, + "r_y0": 599.553, + "r_x1": 217.885, + "r_y1": 599.553, + "r_x2": 217.885, + "r_y2": 607.878, + "r_x3": 215.887, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1615, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.885, + "r_y0": 599.553, + "r_x1": 222.889, + "r_y1": 599.553, + "r_x2": 222.889, + "r_y2": 607.878, + "r_x3": 217.885, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1616, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.889, + "r_y0": 599.553, + "r_x1": 225.391, + "r_y1": 599.553, + "r_x2": 225.391, + "r_y2": 607.878, + "r_x3": 222.889, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1617, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.391, + "r_y0": 599.553, + "r_x1": 231.889, + "r_y1": 599.553, + "r_x2": 231.889, + "r_y2": 607.878, + "r_x3": 225.391, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1618, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.889, + "r_y0": 599.553, + "r_x1": 236.893, + "r_y1": 599.553, + "r_x2": 236.893, + "r_y2": 607.878, + "r_x3": 231.889, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1619, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.893, + "r_y0": 599.553, + "r_x1": 239.395, + "r_y1": 599.553, + "r_x2": 239.395, + "r_y2": 607.878, + "r_x3": 236.893, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1620, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.395, + "r_y0": 599.553, + "r_x1": 244.894, + "r_y1": 599.553, + "r_x2": 244.894, + "r_y2": 607.878, + "r_x3": 239.395, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1621, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.894, + "r_y0": 599.553, + "r_x1": 247.891, + "r_y1": 599.553, + "r_x2": 247.891, + "r_y2": 607.878, + "r_x3": 244.894, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1622, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.891, + "r_y0": 599.553, + "r_x1": 252.895, + "r_y1": 599.553, + "r_x2": 252.895, + "r_y2": 607.878, + "r_x3": 247.891, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1623, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.895, + "r_y0": 599.553, + "r_x1": 260.392, + "r_y1": 599.553, + "r_x2": 260.392, + "r_y2": 607.878, + "r_x3": 252.895, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1624, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.392, + "r_y0": 599.553, + "r_x1": 265.396, + "r_y1": 599.553, + "r_x2": 265.396, + "r_y2": 607.878, + "r_x3": 260.392, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1625, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.396, + "r_y0": 599.553, + "r_x1": 270.4, + "r_y1": 599.553, + "r_x2": 270.4, + "r_y2": 607.878, + "r_x3": 265.396, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1626, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.4, + "r_y0": 599.553, + "r_x1": 272.902, + "r_y1": 599.553, + "r_x2": 272.902, + "r_y2": 607.878, + "r_x3": 270.4, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1627, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.902, + "r_y0": 599.553, + "r_x1": 275.404, + "r_y1": 599.553, + "r_x2": 275.404, + "r_y2": 607.878, + "r_x3": 272.902, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1628, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.404, + "r_y0": 599.553, + "r_x1": 277.906, + "r_y1": 599.553, + "r_x2": 277.906, + "r_y2": 607.878, + "r_x3": 275.404, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1629, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.906, + "r_y0": 599.553, + "r_x1": 284.908, + "r_y1": 599.553, + "r_x2": 284.908, + "r_y2": 607.878, + "r_x3": 277.906, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1630, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 284.908, + "r_y0": 599.553, + "r_x1": 289.912, + "r_y1": 599.553, + "r_x2": 289.912, + "r_y2": 607.878, + "r_x3": 284.908, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1631, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 289.912, + "r_y0": 599.553, + "r_x1": 291.91, + "r_y1": 599.553, + "r_x2": 291.91, + "r_y2": 607.878, + "r_x3": 289.912, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1632, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 291.91, + "r_y0": 599.553, + "r_x1": 296.914, + "r_y1": 599.553, + "r_x2": 296.914, + "r_y2": 607.878, + "r_x3": 291.91, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1633, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 296.914, + "r_y0": 599.553, + "r_x1": 299.911, + "r_y1": 599.553, + "r_x2": 299.911, + "r_y2": 607.878, + "r_x3": 296.914, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1634, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 299.911, + "r_y0": 599.553, + "r_x1": 306.913, + "r_y1": 599.553, + "r_x2": 306.913, + "r_y2": 607.878, + "r_x3": 299.911, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1635, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 306.913, + "r_y0": 599.553, + "r_x1": 313.411, + "r_y1": 599.553, + "r_x2": 313.411, + "r_y2": 607.878, + "r_x3": 306.913, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1636, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 313.411, + "r_y0": 599.553, + "r_x1": 316.408, + "r_y1": 599.553, + "r_x2": 316.408, + "r_y2": 607.878, + "r_x3": 313.411, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1637, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 316.408, + "r_y0": 599.553, + "r_x1": 318.91, + "r_y1": 599.553, + "r_x2": 318.91, + "r_y2": 607.878, + "r_x3": 316.408, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1638, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.91, + "r_y0": 599.553, + "r_x1": 321.412, + "r_y1": 599.553, + "r_x2": 321.412, + "r_y2": 607.878, + "r_x3": 318.91, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1639, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 321.412, + "r_y0": 599.553, + "r_x1": 326.416, + "r_y1": 599.553, + "r_x2": 326.416, + "r_y2": 607.878, + "r_x3": 321.412, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1640, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.416, + "r_y0": 599.553, + "r_x1": 331.42, + "r_y1": 599.553, + "r_x2": 331.42, + "r_y2": 607.878, + "r_x3": 326.416, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1641, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 331.42, + "r_y0": 599.553, + "r_x1": 336.424, + "r_y1": 599.553, + "r_x2": 336.424, + "r_y2": 607.878, + "r_x3": 331.42, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1642, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 336.424, + "r_y0": 599.553, + "r_x1": 341.428, + "r_y1": 599.553, + "r_x2": 341.428, + "r_y2": 607.878, + "r_x3": 336.424, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1643, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 341.428, + "r_y0": 599.553, + "r_x1": 346.432, + "r_y1": 599.553, + "r_x2": 346.432, + "r_y2": 607.878, + "r_x3": 341.428, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1644, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 559.261, + "r_x1": 176.872, + "r_y1": 559.261, + "r_x2": 176.872, + "r_y2": 567.587, + "r_x3": 170.869, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "K", + "orig": "K", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1645, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.872, + "r_y0": 559.261, + "r_x1": 181.876, + "r_y1": 559.261, + "r_x2": 181.876, + "r_y2": 567.587, + "r_x3": 176.872, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1646, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.876, + "r_y0": 559.261, + "r_x1": 184.873, + "r_y1": 559.261, + "r_x2": 184.873, + "r_y2": 567.587, + "r_x3": 181.876, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1647, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.873, + "r_y0": 559.261, + "r_x1": 186.871, + "r_y1": 559.261, + "r_x2": 186.871, + "r_y2": 567.587, + "r_x3": 184.873, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1648, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.871, + "r_y0": 559.261, + "r_x1": 191.875, + "r_y1": 559.261, + "r_x2": 191.875, + "r_y2": 567.587, + "r_x3": 186.871, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1649, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.875, + "r_y0": 559.261, + "r_x1": 196.375, + "r_y1": 559.261, + "r_x2": 196.375, + "r_y2": 567.587, + "r_x3": 191.875, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1650, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.375, + "r_y0": 559.261, + "r_x1": 201.379, + "r_y1": 559.261, + "r_x2": 201.379, + "r_y2": 567.587, + "r_x3": 196.375, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1651, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.379, + "r_y0": 559.261, + "r_x1": 203.881, + "r_y1": 559.261, + "r_x2": 203.881, + "r_y2": 567.587, + "r_x3": 201.379, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1652, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.881, + "r_y0": 559.261, + "r_x1": 206.383, + "r_y1": 559.261, + "r_x2": 206.383, + "r_y2": 567.587, + "r_x3": 203.881, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1653, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.383, + "r_y0": 559.261, + "r_x1": 212.386, + "r_y1": 559.261, + "r_x2": 212.386, + "r_y2": 567.587, + "r_x3": 206.383, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "V", + "orig": "V", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1654, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.386, + "r_y0": 559.261, + "r_x1": 217.39, + "r_y1": 559.261, + "r_x2": 217.39, + "r_y2": 567.587, + "r_x3": 212.386, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1655, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.39, + "r_y0": 559.261, + "r_x1": 222.394, + "r_y1": 559.261, + "r_x2": 222.394, + "r_y2": 567.587, + "r_x3": 217.39, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "u", + "orig": "u", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1656, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.394, + "r_y0": 559.261, + "r_x1": 229.891, + "r_y1": 559.261, + "r_x2": 229.891, + "r_y2": 567.587, + "r_x3": 222.394, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1657, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.891, + "r_y0": 559.261, + "r_x1": 232.393, + "r_y1": 559.261, + "r_x2": 232.393, + "r_y2": 567.587, + "r_x3": 229.891, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1658, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.393, + "r_y0": 559.261, + "r_x1": 237.397, + "r_y1": 559.261, + "r_x2": 237.397, + "r_y2": 567.587, + "r_x3": 232.393, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1659, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.397, + "r_y0": 559.261, + "r_x1": 242.401, + "r_y1": 559.261, + "r_x2": 242.401, + "r_y2": 567.587, + "r_x3": 237.397, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1660, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.401, + "r_y0": 559.261, + "r_x1": 247.405, + "r_y1": 559.261, + "r_x2": 247.405, + "r_y2": 567.587, + "r_x3": 242.401, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1661, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.405, + "r_y0": 559.261, + "r_x1": 249.907, + "r_y1": 559.261, + "r_x2": 249.907, + "r_y2": 567.587, + "r_x3": 247.405, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1662, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.907, + "r_y0": 559.261, + "r_x1": 256.405, + "r_y1": 559.261, + "r_x2": 256.405, + "r_y2": 567.587, + "r_x3": 249.907, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1663, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.405, + "r_y0": 559.261, + "r_x1": 259.402, + "r_y1": 559.261, + "r_x2": 259.402, + "r_y2": 567.587, + "r_x3": 256.405, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1664, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.402, + "r_y0": 559.261, + "r_x1": 261.4, + "r_y1": 559.261, + "r_x2": 261.4, + "r_y2": 567.587, + "r_x3": 259.402, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1665, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.4, + "r_y0": 559.261, + "r_x1": 265.9, + "r_y1": 559.261, + "r_x2": 265.9, + "r_y2": 567.587, + "r_x3": 261.4, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1666, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.9, + "r_y0": 559.261, + "r_x1": 268.402, + "r_y1": 559.261, + "r_x2": 268.402, + "r_y2": 567.587, + "r_x3": 265.9, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1667, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 539.988, + "r_x1": 175.873, + "r_y1": 539.988, + "r_x2": 175.873, + "r_y2": 548.313, + "r_x3": 170.869, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1668, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.873, + "r_y0": 539.988, + "r_x1": 180.877, + "r_y1": 539.988, + "r_x2": 180.877, + "r_y2": 548.313, + "r_x3": 175.873, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1669, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.877, + "r_y0": 539.988, + "r_x1": 185.881, + "r_y1": 539.988, + "r_x2": 185.881, + "r_y2": 548.313, + "r_x3": 180.877, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1670, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.881, + "r_y0": 539.988, + "r_x1": 190.885, + "r_y1": 539.988, + "r_x2": 190.885, + "r_y2": 548.313, + "r_x3": 185.881, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1671, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.885, + "r_y0": 539.988, + "r_x1": 193.387, + "r_y1": 539.988, + "r_x2": 193.387, + "r_y2": 548.313, + "r_x3": 190.885, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1672, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 539.988, + "r_x1": 201.883, + "r_y1": 539.988, + "r_x2": 201.883, + "r_y2": 548.313, + "r_x3": 193.387, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "W", + "orig": "W", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1673, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.883, + "r_y0": 539.988, + "r_x1": 204.385, + "r_y1": 539.988, + "r_x2": 204.385, + "r_y2": 548.313, + "r_x3": 201.883, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1674, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.385, + "r_y0": 539.988, + "r_x1": 210.883, + "r_y1": 539.988, + "r_x2": 210.883, + "r_y2": 548.313, + "r_x3": 204.385, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1675, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.883, + "r_y0": 539.988, + "r_x1": 215.887, + "r_y1": 539.988, + "r_x2": 215.887, + "r_y2": 548.313, + "r_x3": 210.883, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1676, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.887, + "r_y0": 539.988, + "r_x1": 217.885, + "r_y1": 539.988, + "r_x2": 217.885, + "r_y2": 548.313, + "r_x3": 215.887, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1677, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.885, + "r_y0": 539.988, + "r_x1": 222.889, + "r_y1": 539.988, + "r_x2": 222.889, + "r_y2": 548.313, + "r_x3": 217.885, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1678, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 222.889, + "r_y0": 539.988, + "r_x1": 225.391, + "r_y1": 539.988, + "r_x2": 225.391, + "r_y2": 548.313, + "r_x3": 222.889, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1679, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.391, + "r_y0": 539.988, + "r_x1": 231.889, + "r_y1": 539.988, + "r_x2": 231.889, + "r_y2": 548.313, + "r_x3": 225.391, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1680, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.889, + "r_y0": 539.988, + "r_x1": 236.893, + "r_y1": 539.988, + "r_x2": 236.893, + "r_y2": 548.313, + "r_x3": 231.889, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1681, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.893, + "r_y0": 539.988, + "r_x1": 239.395, + "r_y1": 539.988, + "r_x2": 239.395, + "r_y2": 548.313, + "r_x3": 236.893, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1682, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.395, + "r_y0": 539.988, + "r_x1": 244.894, + "r_y1": 539.988, + "r_x2": 244.894, + "r_y2": 548.313, + "r_x3": 239.395, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1683, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.894, + "r_y0": 539.988, + "r_x1": 247.891, + "r_y1": 539.988, + "r_x2": 247.891, + "r_y2": 548.313, + "r_x3": 244.894, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1684, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.891, + "r_y0": 539.988, + "r_x1": 252.895, + "r_y1": 539.988, + "r_x2": 252.895, + "r_y2": 548.313, + "r_x3": 247.891, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1685, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.895, + "r_y0": 539.988, + "r_x1": 260.392, + "r_y1": 539.988, + "r_x2": 260.392, + "r_y2": 548.313, + "r_x3": 252.895, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1686, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.392, + "r_y0": 539.988, + "r_x1": 265.396, + "r_y1": 539.988, + "r_x2": 265.396, + "r_y2": 548.313, + "r_x3": 260.392, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1687, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 265.396, + "r_y0": 539.988, + "r_x1": 270.4, + "r_y1": 539.988, + "r_x2": 270.4, + "r_y2": 548.313, + "r_x3": 265.396, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1688, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 270.4, + "r_y0": 539.988, + "r_x1": 272.902, + "r_y1": 539.988, + "r_x2": 272.902, + "r_y2": 548.313, + "r_x3": 270.4, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1689, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 272.902, + "r_y0": 539.988, + "r_x1": 275.404, + "r_y1": 539.988, + "r_x2": 275.404, + "r_y2": 548.313, + "r_x3": 272.902, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1690, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.404, + "r_y0": 539.988, + "r_x1": 277.906, + "r_y1": 539.988, + "r_x2": 277.906, + "r_y2": 548.313, + "r_x3": 275.404, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1691, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.906, + "r_y0": 539.988, + "r_x1": 284.908, + "r_y1": 539.988, + "r_x2": 284.908, + "r_y2": 548.313, + "r_x3": 277.906, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1692, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 284.908, + "r_y0": 539.988, + "r_x1": 289.912, + "r_y1": 539.988, + "r_x2": 289.912, + "r_y2": 548.313, + "r_x3": 284.908, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1693, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 289.912, + "r_y0": 539.988, + "r_x1": 291.91, + "r_y1": 539.988, + "r_x2": 291.91, + "r_y2": 548.313, + "r_x3": 289.912, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1694, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 291.91, + "r_y0": 539.988, + "r_x1": 296.914, + "r_y1": 539.988, + "r_x2": 296.914, + "r_y2": 548.313, + "r_x3": 291.91, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1695, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 296.914, + "r_y0": 539.988, + "r_x1": 299.911, + "r_y1": 539.988, + "r_x2": 299.911, + "r_y2": 548.313, + "r_x3": 296.914, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1696, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 299.911, + "r_y0": 539.988, + "r_x1": 306.913, + "r_y1": 539.988, + "r_x2": 306.913, + "r_y2": 548.313, + "r_x3": 299.911, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1697, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 306.913, + "r_y0": 539.988, + "r_x1": 313.411, + "r_y1": 539.988, + "r_x2": 313.411, + "r_y2": 548.313, + "r_x3": 306.913, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1698, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 313.411, + "r_y0": 539.988, + "r_x1": 316.408, + "r_y1": 539.988, + "r_x2": 316.408, + "r_y2": 548.313, + "r_x3": 313.411, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1699, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 316.408, + "r_y0": 539.988, + "r_x1": 318.91, + "r_y1": 539.988, + "r_x2": 318.91, + "r_y2": 548.313, + "r_x3": 316.408, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1700, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 318.91, + "r_y0": 539.988, + "r_x1": 321.412, + "r_y1": 539.988, + "r_x2": 321.412, + "r_y2": 548.313, + "r_x3": 318.91, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1701, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 321.412, + "r_y0": 539.988, + "r_x1": 326.416, + "r_y1": 539.988, + "r_x2": 326.416, + "r_y2": 548.313, + "r_x3": 321.412, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1702, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.416, + "r_y0": 539.988, + "r_x1": 331.42, + "r_y1": 539.988, + "r_x2": 331.42, + "r_y2": 548.313, + "r_x3": 326.416, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1703, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 331.42, + "r_y0": 539.988, + "r_x1": 336.424, + "r_y1": 539.988, + "r_x2": 336.424, + "r_y2": 548.313, + "r_x3": 331.42, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1704, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 336.424, + "r_y0": 539.988, + "r_x1": 341.428, + "r_y1": 539.988, + "r_x2": 341.428, + "r_y2": 548.313, + "r_x3": 336.424, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1705, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 341.428, + "r_y0": 539.988, + "r_x1": 346.432, + "r_y1": 539.988, + "r_x2": 346.432, + "r_y2": 548.313, + "r_x3": 341.428, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1706, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 521.154, + "r_x1": 144.664, + "r_y1": 521.154, + "r_x2": 144.664, + "r_y2": 529.48, + "r_x3": 138.166, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "N", + "orig": "N", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1707, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.664, + "r_y0": 521.154, + "r_x1": 149.668, + "r_y1": 521.154, + "r_x2": 149.668, + "r_y2": 529.48, + "r_x3": 144.664, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1708, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.668, + "r_y0": 521.154, + "r_x1": 156.166, + "r_y1": 521.154, + "r_x2": 156.166, + "r_y2": 529.48, + "r_x3": 149.668, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1709, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 156.166, + "r_y0": 521.154, + "r_x1": 158.668, + "r_y1": 521.154, + "r_x2": 158.668, + "r_y2": 529.48, + "r_x3": 156.166, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1710, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.668, + "r_y0": 521.154, + "r_x1": 164.671, + "r_y1": 521.154, + "r_x2": 164.671, + "r_y2": 529.48, + "r_x3": 158.668, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Y", + "orig": "Y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1711, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.671, + "r_y0": 521.154, + "r_x1": 169.675, + "r_y1": 521.154, + "r_x2": 169.675, + "r_y2": 529.48, + "r_x3": 164.671, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1712, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.675, + "r_y0": 521.154, + "r_x1": 172.672, + "r_y1": 521.154, + "r_x2": 172.672, + "r_y2": 529.48, + "r_x3": 169.675, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1713, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.672, + "r_y0": 521.154, + "r_x1": 177.172, + "r_y1": 521.154, + "r_x2": 177.172, + "r_y2": 529.48, + "r_x3": 172.672, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1714, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.172, + "r_y0": 521.154, + "r_x1": 179.674, + "r_y1": 521.154, + "r_x2": 179.674, + "r_y2": 529.48, + "r_x3": 177.172, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1715, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.674, + "r_y0": 521.154, + "r_x1": 186.172, + "r_y1": 521.154, + "r_x2": 186.172, + "r_y2": 529.48, + "r_x3": 179.674, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1716, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.172, + "r_y0": 521.154, + "r_x1": 191.176, + "r_y1": 521.154, + "r_x2": 191.176, + "r_y2": 529.48, + "r_x3": 186.172, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1717, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.176, + "r_y0": 521.154, + "r_x1": 194.173, + "r_y1": 521.154, + "r_x2": 194.173, + "r_y2": 529.48, + "r_x3": 191.176, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1718, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.173, + "r_y0": 521.154, + "r_x1": 199.177, + "r_y1": 521.154, + "r_x2": 199.177, + "r_y2": 529.48, + "r_x3": 194.173, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1719, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.177, + "r_y0": 521.154, + "r_x1": 204.181, + "r_y1": 521.154, + "r_x2": 204.181, + "r_y2": 529.48, + "r_x3": 199.177, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1720, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.181, + "r_y0": 521.154, + "r_x1": 207.178, + "r_y1": 521.154, + "r_x2": 207.178, + "r_y2": 529.48, + "r_x3": 204.181, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1721, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 505.901, + "r_x1": 144.664, + "r_y1": 505.901, + "r_x2": 144.664, + "r_y2": 514.226, + "r_x3": 138.166, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1722, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.664, + "r_y0": 505.901, + "r_x1": 150.667, + "r_y1": 505.901, + "r_x2": 150.667, + "r_y2": 514.226, + "r_x3": 144.664, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1723, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.667, + "r_y0": 505.901, + "r_x1": 156.67, + "r_y1": 505.901, + "r_x2": 156.67, + "r_y2": 514.226, + "r_x3": 150.667, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1724, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 489.904, + "r_x1": 144.664, + "r_y1": 489.904, + "r_x2": 144.664, + "r_y2": 498.228, + "r_x3": 138.166, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1725, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.664, + "r_y0": 489.904, + "r_x1": 146.662, + "r_y1": 489.904, + "r_x2": 146.662, + "r_y2": 498.228, + "r_x3": 144.664, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1726, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 146.662, + "r_y0": 489.904, + "r_x1": 151.666, + "r_y1": 489.904, + "r_x2": 151.666, + "r_y2": 498.228, + "r_x3": 146.662, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1727, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 151.666, + "r_y0": 489.904, + "r_x1": 154.168, + "r_y1": 489.904, + "r_x2": 154.168, + "r_y2": 498.228, + "r_x3": 151.666, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1728, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.168, + "r_y0": 489.904, + "r_x1": 158.668, + "r_y1": 489.904, + "r_x2": 158.668, + "r_y2": 498.228, + "r_x3": 154.168, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "z", + "orig": "z", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1729, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.668, + "r_y0": 489.904, + "r_x1": 161.665, + "r_y1": 489.904, + "r_x2": 161.665, + "r_y2": 498.228, + "r_x3": 158.668, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1730, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.665, + "r_y0": 489.904, + "r_x1": 168.163, + "r_y1": 489.904, + "r_x2": 168.163, + "r_y2": 498.228, + "r_x3": 161.665, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1731, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 168.163, + "r_y0": 489.904, + "r_x1": 173.167, + "r_y1": 489.904, + "r_x2": 173.167, + "r_y2": 498.228, + "r_x3": 168.163, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1732, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.167, + "r_y0": 489.904, + "r_x1": 177.667, + "r_y1": 489.904, + "r_x2": 177.667, + "r_y2": 498.228, + "r_x3": 173.167, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1733, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.667, + "r_y0": 489.904, + "r_x1": 182.671, + "r_y1": 489.904, + "r_x2": 182.671, + "r_y2": 498.228, + "r_x3": 177.667, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1734, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.671, + "r_y0": 489.904, + "r_x1": 187.675, + "r_y1": 489.904, + "r_x2": 187.675, + "r_y2": 498.228, + "r_x3": 182.671, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1735, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.675, + "r_y0": 489.904, + "r_x1": 190.672, + "r_y1": 489.904, + "r_x2": 190.672, + "r_y2": 498.228, + "r_x3": 187.675, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1736, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 442.468, + "r_x1": 144.169, + "r_y1": 442.468, + "r_x2": 144.169, + "r_y2": 450.793, + "r_x3": 138.166, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "P", + "orig": "P", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1737, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.169, + "r_y0": 442.468, + "r_x1": 149.173, + "r_y1": 442.468, + "r_x2": 149.173, + "r_y2": 450.793, + "r_x3": 144.169, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1738, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 149.173, + "r_y0": 442.468, + "r_x1": 153.673, + "r_y1": 442.468, + "r_x2": 153.673, + "r_y2": 450.793, + "r_x3": 149.173, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "y", + "orig": "y", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1739, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.673, + "r_y0": 442.468, + "r_x1": 161.17, + "r_y1": 442.468, + "r_x2": 161.17, + "r_y2": 450.793, + "r_x3": 153.673, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "m", + "orig": "m", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1740, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.17, + "r_y0": 442.468, + "r_x1": 166.174, + "r_y1": 442.468, + "r_x2": 166.174, + "r_y2": 450.793, + "r_x3": 161.17, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1741, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.174, + "r_y0": 442.468, + "r_x1": 171.178, + "r_y1": 442.468, + "r_x2": 171.178, + "r_y2": 450.793, + "r_x3": 166.174, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1742, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.178, + "r_y0": 442.468, + "r_x1": 173.68, + "r_y1": 442.468, + "r_x2": 173.68, + "r_y2": 450.793, + "r_x3": 171.178, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1743, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.68, + "r_y0": 442.468, + "r_x1": 176.182, + "r_y1": 442.468, + "r_x2": 176.182, + "r_y2": 450.793, + "r_x3": 173.68, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1744, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.182, + "r_y0": 442.468, + "r_x1": 178.18, + "r_y1": 442.468, + "r_x2": 178.18, + "r_y2": 450.793, + "r_x3": 176.182, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1745, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.18, + "r_y0": 442.468, + "r_x1": 183.184, + "r_y1": 442.468, + "r_x2": 183.184, + "r_y2": 450.793, + "r_x3": 178.18, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1746, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.184, + "r_y0": 442.468, + "r_x1": 185.686, + "r_y1": 442.468, + "r_x2": 185.686, + "r_y2": 450.793, + "r_x3": 183.184, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1747, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.686, + "r_y0": 442.468, + "r_x1": 191.689, + "r_y1": 442.468, + "r_x2": 191.689, + "r_y2": 450.793, + "r_x3": 185.686, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1748, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 191.689, + "r_y0": 442.468, + "r_x1": 196.693, + "r_y1": 442.468, + "r_x2": 196.693, + "r_y2": 450.793, + "r_x3": 191.689, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1749, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 196.693, + "r_y0": 442.468, + "r_x1": 201.193, + "r_y1": 442.468, + "r_x2": 201.193, + "r_y2": 450.793, + "r_x3": 196.693, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1750, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 201.193, + "r_y0": 442.468, + "r_x1": 206.197, + "r_y1": 442.468, + "r_x2": 206.197, + "r_y2": 450.793, + "r_x3": 201.193, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1751, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.197, + "r_y0": 442.468, + "r_x1": 211.201, + "r_y1": 442.468, + "r_x2": 211.201, + "r_y2": 450.793, + "r_x3": 206.197, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1752, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 211.201, + "r_y0": 442.468, + "r_x1": 215.701, + "r_y1": 442.468, + "r_x2": 215.701, + "r_y2": 450.793, + "r_x3": 211.201, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1753, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.701, + "r_y0": 442.468, + "r_x1": 220.705, + "r_y1": 442.468, + "r_x2": 220.705, + "r_y2": 450.793, + "r_x3": 215.701, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1754, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 426.33, + "r_x1": 144.664, + "r_y1": 426.33, + "r_x2": 144.664, + "r_y2": 434.655, + "r_x3": 138.166, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1755, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.664, + "r_y0": 426.33, + "r_x1": 150.667, + "r_y1": 426.33, + "r_x2": 150.667, + "r_y2": 434.655, + "r_x3": 144.664, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1756, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.667, + "r_y0": 426.33, + "r_x1": 153.169, + "r_y1": 426.33, + "r_x2": 153.169, + "r_y2": 434.655, + "r_x3": 150.667, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1757, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.169, + "r_y0": 426.33, + "r_x1": 159.667, + "r_y1": 426.33, + "r_x2": 159.667, + "r_y2": 434.655, + "r_x3": 153.169, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1758, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 159.667, + "r_y0": 426.33, + "r_x1": 166.669, + "r_y1": 426.33, + "r_x2": 166.669, + "r_y2": 434.655, + "r_x3": 159.667, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1759, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.669, + "r_y0": 426.33, + "r_x1": 171.673, + "r_y1": 426.33, + "r_x2": 171.673, + "r_y2": 434.655, + "r_x3": 166.669, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1760, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.673, + "r_y0": 426.33, + "r_x1": 176.677, + "r_y1": 426.33, + "r_x2": 176.677, + "r_y2": 434.655, + "r_x3": 171.673, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1761, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.677, + "r_y0": 426.33, + "r_x1": 182.68, + "r_y1": 426.33, + "r_x2": 182.68, + "r_y2": 434.655, + "r_x3": 176.677, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1762, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 182.68, + "r_y0": 426.33, + "r_x1": 189.178, + "r_y1": 426.33, + "r_x2": 189.178, + "r_y2": 434.655, + "r_x3": 182.68, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1763, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 521.154, + "r_x1": 400.992, + "r_y1": 521.154, + "r_x2": 400.992, + "r_y2": 529.48, + "r_x3": 395.988, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1764, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.992, + "r_y0": 521.154, + "r_x1": 405.996, + "r_y1": 521.154, + "r_x2": 405.996, + "r_y2": 529.48, + "r_x3": 400.992, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1765, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 405.996, + "r_y0": 521.154, + "r_x1": 411.0, + "r_y1": 521.154, + "r_x2": 411.0, + "r_y2": 529.48, + "r_x3": 405.996, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1766, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 505.901, + "r_x1": 400.992, + "r_y1": 505.901, + "r_x2": 400.992, + "r_y2": 514.226, + "r_x3": 395.988, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1767, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.992, + "r_y0": 505.901, + "r_x1": 405.996, + "r_y1": 505.901, + "r_x2": 405.996, + "r_y2": 514.226, + "r_x3": 400.992, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "6", + "orig": "6", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1768, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 405.996, + "r_y0": 505.901, + "r_x1": 411.0, + "r_y1": 505.901, + "r_x2": 411.0, + "r_y2": 514.226, + "r_x3": 405.996, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1769, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 411.0, + "r_y0": 505.901, + "r_x1": 416.004, + "r_y1": 505.901, + "r_x2": 416.004, + "r_y2": 514.226, + "r_x3": 411.0, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1770, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 416.004, + "r_y0": 505.901, + "r_x1": 420.504, + "r_y1": 505.901, + "r_x2": 420.504, + "r_y2": 514.226, + "r_x3": 416.004, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1771, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 420.504, + "r_y0": 505.901, + "r_x1": 425.508, + "r_y1": 505.901, + "r_x2": 425.508, + "r_y2": 514.226, + "r_x3": 420.504, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1772, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 425.508, + "r_y0": 505.901, + "r_x1": 430.008, + "r_y1": 505.901, + "r_x2": 430.008, + "r_y2": 514.226, + "r_x3": 425.508, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1773, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 489.904, + "r_x1": 400.992, + "r_y1": 489.904, + "r_x2": 400.992, + "r_y2": 498.228, + "r_x3": 395.988, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1774, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.992, + "r_y0": 489.904, + "r_x1": 405.996, + "r_y1": 489.904, + "r_x2": 405.996, + "r_y2": 498.228, + "r_x3": 400.992, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7", + "orig": "7", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1775, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 405.996, + "r_y0": 489.904, + "r_x1": 411.0, + "r_y1": 489.904, + "r_x2": 411.0, + "r_y2": 498.228, + "r_x3": 405.996, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1776, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 411.0, + "r_y0": 489.904, + "r_x1": 413.502, + "r_y1": 489.904, + "r_x2": 413.502, + "r_y2": 498.228, + "r_x3": 411.0, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1777, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 413.502, + "r_y0": 489.904, + "r_x1": 418.506, + "r_y1": 489.904, + "r_x2": 418.506, + "r_y2": 498.228, + "r_x3": 413.502, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1778, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 418.506, + "r_y0": 489.904, + "r_x1": 423.51, + "r_y1": 489.904, + "r_x2": 423.51, + "r_y2": 498.228, + "r_x3": 418.506, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1779, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 376.083, + "r_x1": 59.003, + "r_y1": 376.083, + "r_x2": 59.003, + "r_y2": 384.408, + "r_x3": 52.001, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1780, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.003, + "r_y0": 376.083, + "r_x1": 62.0, + "r_y1": 376.083, + "r_x2": 62.0, + "r_y2": 384.408, + "r_x3": 59.003, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1781, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.0, + "r_y0": 376.083, + "r_x1": 63.998, + "r_y1": 376.083, + "r_x2": 63.998, + "r_y2": 384.408, + "r_x3": 62.0, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1782, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.998, + "r_y0": 376.083, + "r_x1": 69.002, + "r_y1": 376.083, + "r_x2": 69.002, + "r_y2": 384.408, + "r_x3": 63.998, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1783, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.002, + "r_y0": 376.083, + "r_x1": 71.0, + "r_y1": 376.083, + "r_x2": 71.0, + "r_y2": 384.408, + "r_x3": 69.002, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1784, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.0, + "r_y0": 376.083, + "r_x1": 76.004, + "r_y1": 376.083, + "r_x2": 76.004, + "r_y2": 384.408, + "r_x3": 71.0, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1785, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.004, + "r_y0": 376.083, + "r_x1": 81.008, + "r_y1": 376.083, + "r_x2": 81.008, + "r_y2": 384.408, + "r_x3": 76.004, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1786, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.008, + "r_y0": 376.083, + "r_x1": 83.006, + "r_y1": 376.083, + "r_x2": 83.006, + "r_y2": 384.408, + "r_x3": 81.008, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1787, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.006, + "r_y0": 376.083, + "r_x1": 85.508, + "r_y1": 376.083, + "r_x2": 85.508, + "r_y2": 384.408, + "r_x3": 83.006, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1788, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 376.083, + "r_x1": 92.006, + "r_y1": 376.083, + "r_x2": 92.006, + "r_y2": 384.408, + "r_x3": 85.508, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1789, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.006, + "r_y0": 376.083, + "r_x1": 97.01, + "r_y1": 376.083, + "r_x2": 97.01, + "r_y2": 384.408, + "r_x3": 92.006, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1790, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.01, + "r_y0": 376.083, + "r_x1": 102.014, + "r_y1": 376.083, + "r_x2": 102.014, + "r_y2": 384.408, + "r_x3": 97.01, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1791, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.014, + "r_y0": 376.083, + "r_x1": 107.018, + "r_y1": 376.083, + "r_x2": 107.018, + "r_y2": 384.408, + "r_x3": 102.014, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1792, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 376.083, + "r_x1": 112.022, + "r_y1": 376.083, + "r_x2": 112.022, + "r_y2": 384.408, + "r_x3": 107.018, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1793, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.022, + "r_y0": 376.083, + "r_x1": 114.524, + "r_y1": 376.083, + "r_x2": 114.524, + "r_y2": 384.408, + "r_x3": 112.022, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1794, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 376.083, + "r_x1": 121.022, + "r_y1": 376.083, + "r_x2": 121.022, + "r_y2": 384.408, + "r_x3": 114.524, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1795, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.022, + "r_y0": 376.083, + "r_x1": 126.026, + "r_y1": 376.083, + "r_x2": 126.026, + "r_y2": 384.408, + "r_x3": 121.022, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1796, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.026, + "r_y0": 376.083, + "r_x1": 130.526, + "r_y1": 376.083, + "r_x2": 130.526, + "r_y2": 384.408, + "r_x3": 126.026, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1797, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.526, + "r_y0": 376.083, + "r_x1": 135.53, + "r_y1": 376.083, + "r_x2": 135.53, + "r_y2": 384.408, + "r_x3": 130.526, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1798, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.53, + "r_y0": 376.083, + "r_x1": 138.527, + "r_y1": 376.083, + "r_x2": 138.527, + "r_y2": 384.408, + "r_x3": 135.53, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1799, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.527, + "r_y0": 376.083, + "r_x1": 141.029, + "r_y1": 376.083, + "r_x2": 141.029, + "r_y2": 384.408, + "r_x3": 138.527, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1800, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 376.083, + "r_x1": 147.032, + "r_y1": 376.083, + "r_x2": 147.032, + "r_y2": 384.408, + "r_x3": 141.029, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1801, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.032, + "r_y0": 376.083, + "r_x1": 152.036, + "r_y1": 376.083, + "r_x2": 152.036, + "r_y2": 384.408, + "r_x3": 147.032, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1802, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.036, + "r_y0": 376.083, + "r_x1": 154.538, + "r_y1": 376.083, + "r_x2": 154.538, + "r_y2": 384.408, + "r_x3": 152.036, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1803, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.538, + "r_y0": 376.083, + "r_x1": 157.04, + "r_y1": 376.083, + "r_x2": 157.04, + "r_y2": 384.408, + "r_x3": 154.538, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1804, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.04, + "r_y0": 376.083, + "r_x1": 162.044, + "r_y1": 376.083, + "r_x2": 162.044, + "r_y2": 384.408, + "r_x3": 157.04, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1805, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.044, + "r_y0": 376.083, + "r_x1": 167.048, + "r_y1": 376.083, + "r_x2": 167.048, + "r_y2": 384.408, + "r_x3": 162.044, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1806, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.048, + "r_y0": 376.083, + "r_x1": 169.55, + "r_y1": 376.083, + "r_x2": 169.55, + "r_y2": 384.408, + "r_x3": 167.048, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1807, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.55, + "r_y0": 376.083, + "r_x1": 172.052, + "r_y1": 376.083, + "r_x2": 172.052, + "r_y2": 384.408, + "r_x3": 169.55, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1808, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.052, + "r_y0": 376.083, + "r_x1": 174.554, + "r_y1": 376.083, + "r_x2": 174.554, + "r_y2": 384.408, + "r_x3": 172.052, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1809, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.554, + "r_y0": 376.083, + "r_x1": 179.558, + "r_y1": 376.083, + "r_x2": 179.558, + "r_y2": 384.408, + "r_x3": 174.554, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1810, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.558, + "r_y0": 376.083, + "r_x1": 184.562, + "r_y1": 376.083, + "r_x2": 184.562, + "r_y2": 384.408, + "r_x3": 179.558, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1811, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.562, + "r_y0": 376.083, + "r_x1": 189.566, + "r_y1": 376.083, + "r_x2": 189.566, + "r_y2": 384.408, + "r_x3": 184.562, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1812, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 189.566, + "r_y0": 376.083, + "r_x1": 192.068, + "r_y1": 376.083, + "r_x2": 192.068, + "r_y2": 384.408, + "r_x3": 189.566, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1813, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.068, + "r_y0": 376.083, + "r_x1": 198.566, + "r_y1": 376.083, + "r_x2": 198.566, + "r_y2": 384.408, + "r_x3": 192.068, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1814, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.566, + "r_y0": 376.083, + "r_x1": 200.564, + "r_y1": 376.083, + "r_x2": 200.564, + "r_y2": 384.408, + "r_x3": 198.566, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1815, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.564, + "r_y0": 376.083, + "r_x1": 205.568, + "r_y1": 376.083, + "r_x2": 205.568, + "r_y2": 384.408, + "r_x3": 200.564, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1816, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.568, + "r_y0": 376.083, + "r_x1": 210.572, + "r_y1": 376.083, + "r_x2": 210.572, + "r_y2": 384.408, + "r_x3": 205.568, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1817, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.572, + "r_y0": 376.083, + "r_x1": 213.074, + "r_y1": 376.083, + "r_x2": 213.074, + "r_y2": 384.408, + "r_x3": 210.572, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1818, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.074, + "r_y0": 376.083, + "r_x1": 215.576, + "r_y1": 376.083, + "r_x2": 215.576, + "r_y2": 384.408, + "r_x3": 213.074, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1819, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.576, + "r_y0": 376.083, + "r_x1": 221.075, + "r_y1": 376.083, + "r_x2": 221.075, + "r_y2": 384.408, + "r_x3": 215.576, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1820, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.075, + "r_y0": 376.083, + "r_x1": 226.079, + "r_y1": 376.083, + "r_x2": 226.079, + "r_y2": 384.408, + "r_x3": 221.075, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1821, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 226.079, + "r_y0": 376.083, + "r_x1": 229.076, + "r_y1": 376.083, + "r_x2": 229.076, + "r_y2": 384.408, + "r_x3": 226.079, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1822, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.076, + "r_y0": 376.083, + "r_x1": 231.578, + "r_y1": 376.083, + "r_x2": 231.578, + "r_y2": 384.408, + "r_x3": 229.076, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1823, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.578, + "r_y0": 376.083, + "r_x1": 237.581, + "r_y1": 376.083, + "r_x2": 237.581, + "r_y2": 384.408, + "r_x3": 231.578, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "X", + "orig": "X", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1824, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.581, + "r_y0": 376.083, + "r_x1": 244.079, + "r_y1": 376.083, + "r_x2": 244.079, + "r_y2": 384.408, + "r_x3": 237.581, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1825, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.079, + "r_y0": 376.083, + "r_x1": 251.576, + "r_y1": 376.083, + "r_x2": 251.576, + "r_y2": 384.408, + "r_x3": 244.079, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1826, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.576, + "r_y0": 376.083, + "r_x1": 254.078, + "r_y1": 376.083, + "r_x2": 254.078, + "r_y2": 384.408, + "r_x3": 251.576, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1827, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.078, + "r_y0": 376.083, + "r_x1": 259.082, + "r_y1": 376.083, + "r_x2": 259.082, + "r_y2": 384.408, + "r_x3": 254.078, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1828, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.082, + "r_y0": 376.083, + "r_x1": 264.086, + "r_y1": 376.083, + "r_x2": 264.086, + "r_y2": 384.408, + "r_x3": 259.082, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1829, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.086, + "r_y0": 376.083, + "r_x1": 269.09, + "r_y1": 376.083, + "r_x2": 269.09, + "r_y2": 384.408, + "r_x3": 264.086, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1830, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.09, + "r_y0": 376.083, + "r_x1": 271.592, + "r_y1": 376.083, + "r_x2": 271.592, + "r_y2": 384.408, + "r_x3": 269.09, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1831, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.592, + "r_y0": 376.083, + "r_x1": 280.592, + "r_y1": 376.083, + "r_x2": 280.592, + "r_y2": 384.408, + "r_x3": 271.592, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u0152", + "orig": "\u0152", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1832, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 280.592, + "r_y0": 376.083, + "r_x1": 283.094, + "r_y1": 376.083, + "r_x2": 283.094, + "r_y2": 384.408, + "r_x3": 280.592, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1833, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 279.098, + "r_y0": 376.083, + "r_x1": 285.596, + "r_y1": 376.083, + "r_x2": 285.596, + "r_y2": 384.408, + "r_x3": 279.098, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1834, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 285.596, + "r_y0": 376.083, + "r_x1": 290.6, + "r_y1": 376.083, + "r_x2": 290.6, + "r_y2": 384.408, + "r_x3": 285.596, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1835, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 290.6, + "r_y0": 376.083, + "r_x1": 295.604, + "r_y1": 376.083, + "r_x2": 295.604, + "r_y2": 384.408, + "r_x3": 290.6, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1836, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 373.672, + "r_x1": 345.236, + "r_y1": 373.672, + "r_x2": 345.236, + "r_y2": 381.997, + "r_x3": 338.738, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1837, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.236, + "r_y0": 373.672, + "r_x1": 351.238, + "r_y1": 373.672, + "r_x2": 351.238, + "r_y2": 381.997, + "r_x3": 345.236, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1838, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 351.238, + "r_y0": 373.672, + "r_x1": 357.241, + "r_y1": 373.672, + "r_x2": 357.241, + "r_y2": 381.997, + "r_x3": 351.238, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1839, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 373.672, + "r_x1": 419.171, + "r_y1": 373.672, + "r_x2": 419.171, + "r_y2": 381.997, + "r_x3": 414.167, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1840, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.171, + "r_y0": 373.672, + "r_x1": 424.175, + "r_y1": 373.672, + "r_x2": 424.175, + "r_y2": 381.997, + "r_x3": 419.171, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1841, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 373.728, + "r_x1": 473.122, + "r_y1": 373.728, + "r_x2": 473.122, + "r_y2": 382.053, + "r_x3": 468.118, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1842, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 373.728, + "r_x1": 478.126, + "r_y1": 373.728, + "r_x2": 478.126, + "r_y2": 382.053, + "r_x3": 473.122, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1843, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 478.126, + "r_y0": 373.728, + "r_x1": 483.13, + "r_y1": 373.728, + "r_x2": 483.13, + "r_y2": 382.053, + "r_x3": 478.126, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1844, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 483.13, + "r_y0": 373.728, + "r_x1": 488.134, + "r_y1": 373.728, + "r_x2": 488.134, + "r_y2": 382.053, + "r_x3": 483.13, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1845, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 488.134, + "r_y0": 373.728, + "r_x1": 490.636, + "r_y1": 373.728, + "r_x2": 490.636, + "r_y2": 382.053, + "r_x3": 488.134, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1846, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 490.636, + "r_y0": 373.728, + "r_x1": 495.64, + "r_y1": 373.728, + "r_x2": 495.64, + "r_y2": 382.053, + "r_x3": 490.636, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1847, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 495.64, + "r_y0": 373.728, + "r_x1": 500.644, + "r_y1": 373.728, + "r_x2": 500.644, + "r_y2": 382.053, + "r_x3": 495.64, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1848, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 373.728, + "r_x1": 522.824, + "r_y1": 373.728, + "r_x2": 522.824, + "r_y2": 382.053, + "r_x3": 517.82, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1849, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 522.824, + "r_y0": 373.728, + "r_x1": 527.828, + "r_y1": 373.728, + "r_x2": 527.828, + "r_y2": 382.053, + "r_x3": 522.824, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1850, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 527.828, + "r_y0": 373.728, + "r_x1": 530.33, + "r_y1": 373.728, + "r_x2": 530.33, + "r_y2": 382.053, + "r_x3": 527.828, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1851, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.33, + "r_y0": 373.728, + "r_x1": 535.334, + "r_y1": 373.728, + "r_x2": 535.334, + "r_y2": 382.053, + "r_x3": 530.33, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1852, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.334, + "r_y0": 373.728, + "r_x1": 540.338, + "r_y1": 373.728, + "r_x2": 540.338, + "r_y2": 382.053, + "r_x3": 535.334, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1853, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.338, + "r_y0": 373.728, + "r_x1": 545.342, + "r_y1": 373.728, + "r_x2": 545.342, + "r_y2": 382.053, + "r_x3": 540.338, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1854, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.342, + "r_y0": 373.728, + "r_x1": 547.844, + "r_y1": 373.728, + "r_x2": 547.844, + "r_y2": 382.053, + "r_x3": 545.342, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1855, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.844, + "r_y0": 373.728, + "r_x1": 552.848, + "r_y1": 373.728, + "r_x2": 552.848, + "r_y2": 382.053, + "r_x3": 547.844, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1856, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.848, + "r_y0": 373.728, + "r_x1": 557.852, + "r_y1": 373.728, + "r_x2": 557.852, + "r_y2": 382.053, + "r_x3": 552.848, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1857, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 340.151, + "r_x1": 59.003, + "r_y1": 340.151, + "r_x2": 59.003, + "r_y2": 348.476, + "r_x3": 52.001, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1858, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.003, + "r_y0": 340.151, + "r_x1": 62.0, + "r_y1": 340.151, + "r_x2": 62.0, + "r_y2": 348.476, + "r_x3": 59.003, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1859, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.0, + "r_y0": 340.151, + "r_x1": 63.998, + "r_y1": 340.151, + "r_x2": 63.998, + "r_y2": 348.476, + "r_x3": 62.0, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1860, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.998, + "r_y0": 340.151, + "r_x1": 69.002, + "r_y1": 340.151, + "r_x2": 69.002, + "r_y2": 348.476, + "r_x3": 63.998, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1861, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.002, + "r_y0": 340.151, + "r_x1": 71.0, + "r_y1": 340.151, + "r_x2": 71.0, + "r_y2": 348.476, + "r_x3": 69.002, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1862, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.0, + "r_y0": 340.151, + "r_x1": 76.004, + "r_y1": 340.151, + "r_x2": 76.004, + "r_y2": 348.476, + "r_x3": 71.0, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1863, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.004, + "r_y0": 340.151, + "r_x1": 81.008, + "r_y1": 340.151, + "r_x2": 81.008, + "r_y2": 348.476, + "r_x3": 76.004, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1864, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.008, + "r_y0": 340.151, + "r_x1": 83.006, + "r_y1": 340.151, + "r_x2": 83.006, + "r_y2": 348.476, + "r_x3": 81.008, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1865, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.006, + "r_y0": 340.151, + "r_x1": 85.508, + "r_y1": 340.151, + "r_x2": 85.508, + "r_y2": 348.476, + "r_x3": 83.006, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1866, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 340.151, + "r_x1": 92.006, + "r_y1": 340.151, + "r_x2": 92.006, + "r_y2": 348.476, + "r_x3": 85.508, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1867, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.006, + "r_y0": 340.151, + "r_x1": 97.01, + "r_y1": 340.151, + "r_x2": 97.01, + "r_y2": 348.476, + "r_x3": 92.006, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1868, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.01, + "r_y0": 340.151, + "r_x1": 102.014, + "r_y1": 340.151, + "r_x2": 102.014, + "r_y2": 348.476, + "r_x3": 97.01, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1869, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.014, + "r_y0": 340.151, + "r_x1": 107.018, + "r_y1": 340.151, + "r_x2": 107.018, + "r_y2": 348.476, + "r_x3": 102.014, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1870, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 340.151, + "r_x1": 112.022, + "r_y1": 340.151, + "r_x2": 112.022, + "r_y2": 348.476, + "r_x3": 107.018, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1871, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.022, + "r_y0": 340.151, + "r_x1": 114.524, + "r_y1": 340.151, + "r_x2": 114.524, + "r_y2": 348.476, + "r_x3": 112.022, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1872, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 340.151, + "r_x1": 121.022, + "r_y1": 340.151, + "r_x2": 121.022, + "r_y2": 348.476, + "r_x3": 114.524, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1873, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.022, + "r_y0": 340.151, + "r_x1": 126.026, + "r_y1": 340.151, + "r_x2": 126.026, + "r_y2": 348.476, + "r_x3": 121.022, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1874, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.026, + "r_y0": 340.151, + "r_x1": 130.526, + "r_y1": 340.151, + "r_x2": 130.526, + "r_y2": 348.476, + "r_x3": 126.026, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1875, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.526, + "r_y0": 340.151, + "r_x1": 135.53, + "r_y1": 340.151, + "r_x2": 135.53, + "r_y2": 348.476, + "r_x3": 130.526, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1876, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.53, + "r_y0": 340.151, + "r_x1": 138.527, + "r_y1": 340.151, + "r_x2": 138.527, + "r_y2": 348.476, + "r_x3": 135.53, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1877, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.527, + "r_y0": 340.151, + "r_x1": 141.029, + "r_y1": 340.151, + "r_x2": 141.029, + "r_y2": 348.476, + "r_x3": 138.527, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1878, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 340.151, + "r_x1": 147.527, + "r_y1": 340.151, + "r_x2": 147.527, + "r_y2": 348.476, + "r_x3": 141.029, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1879, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.527, + "r_y0": 340.151, + "r_x1": 152.531, + "r_y1": 340.151, + "r_x2": 152.531, + "r_y2": 348.476, + "r_x3": 147.527, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1880, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.531, + "r_y0": 340.151, + "r_x1": 157.535, + "r_y1": 340.151, + "r_x2": 157.535, + "r_y2": 348.476, + "r_x3": 152.531, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1881, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.535, + "r_y0": 340.151, + "r_x1": 162.539, + "r_y1": 340.151, + "r_x2": 162.539, + "r_y2": 348.476, + "r_x3": 157.535, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1882, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.539, + "r_y0": 340.151, + "r_x1": 164.537, + "r_y1": 340.151, + "r_x2": 164.537, + "r_y2": 348.476, + "r_x3": 162.539, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1883, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.537, + "r_y0": 340.151, + "r_x1": 169.541, + "r_y1": 340.151, + "r_x2": 169.541, + "r_y2": 348.476, + "r_x3": 164.537, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1884, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.541, + "r_y0": 340.151, + "r_x1": 172.043, + "r_y1": 340.151, + "r_x2": 172.043, + "r_y2": 348.476, + "r_x3": 169.541, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1885, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.043, + "r_y0": 340.151, + "r_x1": 177.542, + "r_y1": 340.151, + "r_x2": 177.542, + "r_y2": 348.476, + "r_x3": 172.043, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1886, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.542, + "r_y0": 340.151, + "r_x1": 180.539, + "r_y1": 340.151, + "r_x2": 180.539, + "r_y2": 348.476, + "r_x3": 177.542, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1887, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 180.539, + "r_y0": 340.151, + "r_x1": 185.543, + "r_y1": 340.151, + "r_x2": 185.543, + "r_y2": 348.476, + "r_x3": 180.539, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1888, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.543, + "r_y0": 340.151, + "r_x1": 190.547, + "r_y1": 340.151, + "r_x2": 190.547, + "r_y2": 348.476, + "r_x3": 185.543, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1889, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.547, + "r_y0": 340.151, + "r_x1": 193.049, + "r_y1": 340.151, + "r_x2": 193.049, + "r_y2": 348.476, + "r_x3": 190.547, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1890, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.049, + "r_y0": 340.151, + "r_x1": 195.551, + "r_y1": 340.151, + "r_x2": 195.551, + "r_y2": 348.476, + "r_x3": 193.049, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1891, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.551, + "r_y0": 340.151, + "r_x1": 198.548, + "r_y1": 340.151, + "r_x2": 198.548, + "r_y2": 348.476, + "r_x3": 195.551, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1892, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.548, + "r_y0": 340.151, + "r_x1": 205.046, + "r_y1": 340.151, + "r_x2": 205.046, + "r_y2": 348.476, + "r_x3": 198.548, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "D", + "orig": "D", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1893, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.046, + "r_y0": 340.151, + "r_x1": 207.044, + "r_y1": 340.151, + "r_x2": 207.044, + "r_y2": 348.476, + "r_x3": 205.046, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1894, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 207.044, + "r_y0": 340.151, + "r_x1": 211.544, + "r_y1": 340.151, + "r_x2": 211.544, + "r_y2": 348.476, + "r_x3": 207.044, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1895, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 211.544, + "r_y0": 340.151, + "r_x1": 216.044, + "r_y1": 340.151, + "r_x2": 216.044, + "r_y2": 348.476, + "r_x3": 211.544, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1896, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.044, + "r_y0": 340.151, + "r_x1": 218.546, + "r_y1": 340.151, + "r_x2": 218.546, + "r_y2": 348.476, + "r_x3": 216.044, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1897, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 218.546, + "r_y0": 340.151, + "r_x1": 224.549, + "r_y1": 340.151, + "r_x2": 224.549, + "r_y2": 348.476, + "r_x3": 218.546, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B", + "orig": "B", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1898, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.549, + "r_y0": 340.151, + "r_x1": 227.546, + "r_y1": 340.151, + "r_x2": 227.546, + "r_y2": 348.476, + "r_x3": 224.549, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1899, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.546, + "r_y0": 340.151, + "r_x1": 232.55, + "r_y1": 340.151, + "r_x2": 232.55, + "r_y2": 348.476, + "r_x3": 227.546, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1900, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.55, + "r_y0": 340.151, + "r_x1": 237.05, + "r_y1": 340.151, + "r_x2": 237.05, + "r_y2": 348.476, + "r_x3": 232.55, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1901, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.05, + "r_y0": 340.151, + "r_x1": 242.054, + "r_y1": 340.151, + "r_x2": 242.054, + "r_y2": 348.476, + "r_x3": 237.05, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1902, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.054, + "r_y0": 340.151, + "r_x1": 245.051, + "r_y1": 340.151, + "r_x2": 245.051, + "r_y2": 348.476, + "r_x3": 242.054, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1903, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 245.051, + "r_y0": 340.151, + "r_x1": 247.553, + "r_y1": 340.151, + "r_x2": 247.553, + "r_y2": 348.476, + "r_x3": 245.051, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1904, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.553, + "r_y0": 340.151, + "r_x1": 253.052, + "r_y1": 340.151, + "r_x2": 253.052, + "r_y2": 348.476, + "r_x3": 247.553, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1905, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.052, + "r_y0": 340.151, + "r_x1": 258.056, + "r_y1": 340.151, + "r_x2": 258.056, + "r_y2": 348.476, + "r_x3": 253.052, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1906, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 258.056, + "r_y0": 340.151, + "r_x1": 261.053, + "r_y1": 340.151, + "r_x2": 261.053, + "r_y2": 348.476, + "r_x3": 258.056, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1907, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.053, + "r_y0": 340.151, + "r_x1": 263.555, + "r_y1": 340.151, + "r_x2": 263.555, + "r_y2": 348.476, + "r_x3": 261.053, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1908, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.555, + "r_y0": 340.151, + "r_x1": 269.558, + "r_y1": 340.151, + "r_x2": 269.558, + "r_y2": 348.476, + "r_x3": 263.555, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B", + "orig": "B", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1909, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.558, + "r_y0": 340.151, + "r_x1": 274.562, + "r_y1": 340.151, + "r_x2": 274.562, + "r_y2": 348.476, + "r_x3": 269.558, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1910, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.562, + "r_y0": 340.151, + "r_x1": 279.566, + "r_y1": 340.151, + "r_x2": 279.566, + "r_y2": 348.476, + "r_x3": 274.562, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1911, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 279.566, + "r_y0": 340.151, + "r_x1": 282.068, + "r_y1": 340.151, + "r_x2": 282.068, + "r_y2": 348.476, + "r_x3": 279.566, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1912, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.068, + "r_y0": 340.151, + "r_x1": 284.57, + "r_y1": 340.151, + "r_x2": 284.57, + "r_y2": 348.476, + "r_x3": 282.068, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1913, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 331.826, + "r_x1": 58.499, + "r_y1": 331.826, + "r_x2": 58.499, + "r_y2": 340.151, + "r_x3": 52.001, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1914, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.499, + "r_y0": 331.826, + "r_x1": 63.503, + "r_y1": 331.826, + "r_x2": 63.503, + "r_y2": 340.151, + "r_x3": 58.499, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1915, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.503, + "r_y0": 331.826, + "r_x1": 66.5, + "r_y1": 331.826, + "r_x2": 66.5, + "r_y2": 340.151, + "r_x3": 63.503, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1916, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 66.5, + "r_y0": 331.826, + "r_x1": 71.504, + "r_y1": 331.826, + "r_x2": 71.504, + "r_y2": 340.151, + "r_x3": 66.5, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "b", + "orig": "b", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1917, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.504, + "r_y0": 331.826, + "r_x1": 74.006, + "r_y1": 331.826, + "r_x2": 74.006, + "r_y2": 340.151, + "r_x3": 71.504, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1918, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.006, + "r_y0": 331.826, + "r_x1": 80.009, + "r_y1": 331.826, + "r_x2": 80.009, + "r_y2": 340.151, + "r_x3": 74.006, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "V", + "orig": "V", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1919, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.009, + "r_y0": 331.826, + "r_x1": 85.013, + "r_y1": 331.826, + "r_x2": 85.013, + "r_y2": 340.151, + "r_x3": 80.009, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1920, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.013, + "r_y0": 331.826, + "r_x1": 88.01, + "r_y1": 331.826, + "r_x2": 88.01, + "r_y2": 340.151, + "r_x3": 85.013, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1921, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 88.01, + "r_y0": 331.826, + "r_x1": 92.51, + "r_y1": 331.826, + "r_x2": 92.51, + "r_y2": 340.151, + "r_x3": 88.01, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1922, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.51, + "r_y0": 331.826, + "r_x1": 94.508, + "r_y1": 331.826, + "r_x2": 94.508, + "r_y2": 340.151, + "r_x3": 92.51, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1923, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.508, + "r_y0": 331.826, + "r_x1": 99.512, + "r_y1": 331.826, + "r_x2": 99.512, + "r_y2": 340.151, + "r_x3": 94.508, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1924, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.512, + "r_y0": 331.826, + "r_x1": 104.516, + "r_y1": 331.826, + "r_x2": 104.516, + "r_y2": 340.151, + "r_x3": 99.512, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1925, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 104.516, + "r_y0": 331.826, + "r_x1": 107.018, + "r_y1": 331.826, + "r_x2": 107.018, + "r_y2": 340.151, + "r_x3": 104.516, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1926, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 331.826, + "r_x1": 112.022, + "r_y1": 331.826, + "r_x2": 112.022, + "r_y2": 340.151, + "r_x3": 107.018, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1927, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 339.852, + "r_x1": 345.236, + "r_y1": 339.852, + "r_x2": 345.236, + "r_y2": 348.177, + "r_x3": 338.738, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1928, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.236, + "r_y0": 339.852, + "r_x1": 351.238, + "r_y1": 339.852, + "r_x2": 351.238, + "r_y2": 348.177, + "r_x3": 345.236, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1929, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 351.238, + "r_y0": 339.852, + "r_x1": 357.241, + "r_y1": 339.852, + "r_x2": 357.241, + "r_y2": 348.177, + "r_x3": 351.238, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1930, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 339.852, + "r_x1": 419.171, + "r_y1": 339.852, + "r_x2": 419.171, + "r_y2": 348.177, + "r_x3": 414.167, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1931, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.171, + "r_y0": 339.852, + "r_x1": 424.175, + "r_y1": 339.852, + "r_x2": 424.175, + "r_y2": 348.177, + "r_x3": 419.171, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1932, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 339.796, + "r_x1": 473.122, + "r_y1": 339.796, + "r_x2": 473.122, + "r_y2": 348.121, + "r_x3": 468.118, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1933, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 339.796, + "r_x1": 478.126, + "r_y1": 339.796, + "r_x2": 478.126, + "r_y2": 348.121, + "r_x3": 473.122, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1934, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 478.126, + "r_y0": 339.796, + "r_x1": 483.13, + "r_y1": 339.796, + "r_x2": 483.13, + "r_y2": 348.121, + "r_x3": 478.126, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1935, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 483.13, + "r_y0": 339.796, + "r_x1": 488.134, + "r_y1": 339.796, + "r_x2": 488.134, + "r_y2": 348.121, + "r_x3": 483.13, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1936, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 488.134, + "r_y0": 339.796, + "r_x1": 490.636, + "r_y1": 339.796, + "r_x2": 490.636, + "r_y2": 348.121, + "r_x3": 488.134, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1937, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 490.636, + "r_y0": 339.796, + "r_x1": 495.64, + "r_y1": 339.796, + "r_x2": 495.64, + "r_y2": 348.121, + "r_x3": 490.636, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1938, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 495.64, + "r_y0": 339.796, + "r_x1": 500.644, + "r_y1": 339.796, + "r_x2": 500.644, + "r_y2": 348.121, + "r_x3": 495.64, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1939, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 339.796, + "r_x1": 522.824, + "r_y1": 339.796, + "r_x2": 522.824, + "r_y2": 348.121, + "r_x3": 517.82, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1940, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 522.824, + "r_y0": 339.796, + "r_x1": 527.828, + "r_y1": 339.796, + "r_x2": 527.828, + "r_y2": 348.121, + "r_x3": 522.824, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1941, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 527.828, + "r_y0": 339.796, + "r_x1": 530.33, + "r_y1": 339.796, + "r_x2": 530.33, + "r_y2": 348.121, + "r_x3": 527.828, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1942, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.33, + "r_y0": 339.796, + "r_x1": 535.334, + "r_y1": 339.796, + "r_x2": 535.334, + "r_y2": 348.121, + "r_x3": 530.33, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1943, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.334, + "r_y0": 339.796, + "r_x1": 540.338, + "r_y1": 339.796, + "r_x2": 540.338, + "r_y2": 348.121, + "r_x3": 535.334, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1944, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.338, + "r_y0": 339.796, + "r_x1": 545.342, + "r_y1": 339.796, + "r_x2": 545.342, + "r_y2": 348.121, + "r_x3": 540.338, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5", + "orig": "5", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1945, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.342, + "r_y0": 339.796, + "r_x1": 547.844, + "r_y1": 339.796, + "r_x2": 547.844, + "r_y2": 348.121, + "r_x3": 545.342, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1946, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.844, + "r_y0": 339.796, + "r_x1": 552.848, + "r_y1": 339.796, + "r_x2": 552.848, + "r_y2": 348.121, + "r_x3": 547.844, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1947, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.848, + "r_y0": 339.796, + "r_x1": 557.852, + "r_y1": 339.796, + "r_x2": 557.852, + "r_y2": 348.121, + "r_x3": 552.848, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "4", + "orig": "4", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1948, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 304.22, + "r_x1": 59.003, + "r_y1": 304.22, + "r_x2": 59.003, + "r_y2": 312.545, + "r_x3": 52.001, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1949, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.003, + "r_y0": 304.22, + "r_x1": 62.0, + "r_y1": 304.22, + "r_x2": 62.0, + "r_y2": 312.545, + "r_x3": 59.003, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1950, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.0, + "r_y0": 304.22, + "r_x1": 63.998, + "r_y1": 304.22, + "r_x2": 63.998, + "r_y2": 312.545, + "r_x3": 62.0, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1951, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.998, + "r_y0": 304.22, + "r_x1": 69.002, + "r_y1": 304.22, + "r_x2": 69.002, + "r_y2": 312.545, + "r_x3": 63.998, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1952, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.002, + "r_y0": 304.22, + "r_x1": 71.0, + "r_y1": 304.22, + "r_x2": 71.0, + "r_y2": 312.545, + "r_x3": 69.002, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1953, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.0, + "r_y0": 304.22, + "r_x1": 76.004, + "r_y1": 304.22, + "r_x2": 76.004, + "r_y2": 312.545, + "r_x3": 71.0, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1954, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.004, + "r_y0": 304.22, + "r_x1": 81.008, + "r_y1": 304.22, + "r_x2": 81.008, + "r_y2": 312.545, + "r_x3": 76.004, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1955, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.008, + "r_y0": 304.22, + "r_x1": 83.006, + "r_y1": 304.22, + "r_x2": 83.006, + "r_y2": 312.545, + "r_x3": 81.008, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1956, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.006, + "r_y0": 304.22, + "r_x1": 85.508, + "r_y1": 304.22, + "r_x2": 85.508, + "r_y2": 312.545, + "r_x3": 83.006, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1957, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 304.22, + "r_x1": 92.006, + "r_y1": 304.22, + "r_x2": 92.006, + "r_y2": 312.545, + "r_x3": 85.508, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1958, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.006, + "r_y0": 304.22, + "r_x1": 97.01, + "r_y1": 304.22, + "r_x2": 97.01, + "r_y2": 312.545, + "r_x3": 92.006, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1959, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.01, + "r_y0": 304.22, + "r_x1": 102.014, + "r_y1": 304.22, + "r_x2": 102.014, + "r_y2": 312.545, + "r_x3": 97.01, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1960, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.014, + "r_y0": 304.22, + "r_x1": 107.018, + "r_y1": 304.22, + "r_x2": 107.018, + "r_y2": 312.545, + "r_x3": 102.014, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1961, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 304.22, + "r_x1": 112.022, + "r_y1": 304.22, + "r_x2": 112.022, + "r_y2": 312.545, + "r_x3": 107.018, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1962, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.022, + "r_y0": 304.22, + "r_x1": 114.524, + "r_y1": 304.22, + "r_x2": 114.524, + "r_y2": 312.545, + "r_x3": 112.022, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1963, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 304.22, + "r_x1": 121.022, + "r_y1": 304.22, + "r_x2": 121.022, + "r_y2": 312.545, + "r_x3": 114.524, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1964, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.022, + "r_y0": 304.22, + "r_x1": 126.026, + "r_y1": 304.22, + "r_x2": 126.026, + "r_y2": 312.545, + "r_x3": 121.022, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1965, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.026, + "r_y0": 304.22, + "r_x1": 132.524, + "r_y1": 304.22, + "r_x2": 132.524, + "r_y2": 312.545, + "r_x3": 126.026, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "w", + "orig": "w", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1966, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.524, + "r_y0": 304.22, + "r_x1": 134.522, + "r_y1": 304.22, + "r_x2": 134.522, + "r_y2": 312.545, + "r_x3": 132.524, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1967, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.522, + "r_y0": 304.22, + "r_x1": 137.024, + "r_y1": 304.22, + "r_x2": 137.024, + "r_y2": 312.545, + "r_x3": 134.522, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1968, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.024, + "r_y0": 304.22, + "r_x1": 143.522, + "r_y1": 304.22, + "r_x2": 143.522, + "r_y2": 312.545, + "r_x3": 137.024, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1969, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 143.522, + "r_y0": 304.22, + "r_x1": 148.526, + "r_y1": 304.22, + "r_x2": 148.526, + "r_y2": 312.545, + "r_x3": 143.522, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1970, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 148.526, + "r_y0": 304.22, + "r_x1": 153.53, + "r_y1": 304.22, + "r_x2": 153.53, + "r_y2": 312.545, + "r_x3": 148.526, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1971, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.53, + "r_y0": 304.22, + "r_x1": 158.534, + "r_y1": 304.22, + "r_x2": 158.534, + "r_y2": 312.545, + "r_x3": 153.53, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1972, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.534, + "r_y0": 304.22, + "r_x1": 161.531, + "r_y1": 304.22, + "r_x2": 161.531, + "r_y2": 312.545, + "r_x3": 158.534, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1973, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.531, + "r_y0": 304.22, + "r_x1": 164.033, + "r_y1": 304.22, + "r_x2": 164.033, + "r_y2": 312.545, + "r_x3": 161.531, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1974, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.033, + "r_y0": 304.22, + "r_x1": 167.03, + "r_y1": 304.22, + "r_x2": 167.03, + "r_y2": 312.545, + "r_x3": 164.033, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(", + "orig": "(", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1975, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.03, + "r_y0": 304.22, + "r_x1": 173.033, + "r_y1": 304.22, + "r_x2": 173.033, + "r_y2": 312.545, + "r_x3": 167.03, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "E", + "orig": "E", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1976, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 173.033, + "r_y0": 304.22, + "r_x1": 178.037, + "r_y1": 304.22, + "r_x2": 178.037, + "r_y2": 312.545, + "r_x3": 173.033, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1977, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.037, + "r_y0": 304.22, + "r_x1": 183.041, + "r_y1": 304.22, + "r_x2": 183.041, + "r_y2": 312.545, + "r_x3": 178.037, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1978, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 183.041, + "r_y0": 304.22, + "r_x1": 185.039, + "r_y1": 304.22, + "r_x2": 185.039, + "r_y2": 312.545, + "r_x3": 183.041, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1979, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.039, + "r_y0": 304.22, + "r_x1": 190.043, + "r_y1": 304.22, + "r_x2": 190.043, + "r_y2": 312.545, + "r_x3": 185.039, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1980, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 190.043, + "r_y0": 304.22, + "r_x1": 195.047, + "r_y1": 304.22, + "r_x2": 195.047, + "r_y2": 312.545, + "r_x3": 190.043, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1981, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.047, + "r_y0": 304.22, + "r_x1": 197.549, + "r_y1": 304.22, + "r_x2": 197.549, + "r_y2": 312.545, + "r_x3": 195.047, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1982, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 197.549, + "r_y0": 304.22, + "r_x1": 204.047, + "r_y1": 304.22, + "r_x2": 204.047, + "r_y2": 312.545, + "r_x3": 197.549, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1983, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 204.047, + "r_y0": 304.22, + "r_x1": 209.051, + "r_y1": 304.22, + "r_x2": 209.051, + "r_y2": 312.545, + "r_x3": 204.047, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1984, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 209.051, + "r_y0": 304.22, + "r_x1": 213.551, + "r_y1": 304.22, + "r_x2": 213.551, + "r_y2": 312.545, + "r_x3": 209.051, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1985, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.551, + "r_y0": 304.22, + "r_x1": 218.555, + "r_y1": 304.22, + "r_x2": 218.555, + "r_y2": 312.545, + "r_x3": 213.551, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1986, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 218.555, + "r_y0": 304.22, + "r_x1": 221.552, + "r_y1": 304.22, + "r_x2": 221.552, + "r_y2": 312.545, + "r_x3": 218.555, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1987, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.552, + "r_y0": 304.22, + "r_x1": 224.549, + "r_y1": 304.22, + "r_x2": 224.549, + "r_y2": 312.545, + "r_x3": 221.552, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": ")", + "orig": ")", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1988, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 224.549, + "r_y0": 304.22, + "r_x1": 227.051, + "r_y1": 304.22, + "r_x2": 227.051, + "r_y2": 312.545, + "r_x3": 224.549, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1989, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.051, + "r_y0": 304.22, + "r_x1": 232.55, + "r_y1": 304.22, + "r_x2": 232.55, + "r_y2": 312.545, + "r_x3": 227.051, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1990, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.55, + "r_y0": 304.22, + "r_x1": 237.554, + "r_y1": 304.22, + "r_x2": 237.554, + "r_y2": 312.545, + "r_x3": 232.55, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1991, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.554, + "r_y0": 304.22, + "r_x1": 240.551, + "r_y1": 304.22, + "r_x2": 240.551, + "r_y2": 312.545, + "r_x3": 237.554, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1992, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.551, + "r_y0": 304.22, + "r_x1": 243.053, + "r_y1": 304.22, + "r_x2": 243.053, + "r_y2": 312.545, + "r_x3": 240.551, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1993, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.053, + "r_y0": 304.22, + "r_x1": 249.551, + "r_y1": 304.22, + "r_x2": 249.551, + "r_y2": 312.545, + "r_x3": 243.053, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1994, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.551, + "r_y0": 304.22, + "r_x1": 254.051, + "r_y1": 304.22, + "r_x2": 254.051, + "r_y2": 312.545, + "r_x3": 249.551, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1995, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.051, + "r_y0": 304.22, + "r_x1": 256.553, + "r_y1": 304.22, + "r_x2": 256.553, + "r_y2": 312.545, + "r_x3": 254.051, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1996, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.553, + "r_y0": 304.22, + "r_x1": 261.557, + "r_y1": 304.22, + "r_x2": 261.557, + "r_y2": 312.545, + "r_x3": 256.553, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1997, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.557, + "r_y0": 304.22, + "r_x1": 266.561, + "r_y1": 304.22, + "r_x2": 266.561, + "r_y2": 312.545, + "r_x3": 261.557, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1998, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.561, + "r_y0": 304.22, + "r_x1": 271.565, + "r_y1": 304.22, + "r_x2": 271.565, + "r_y2": 312.545, + "r_x3": 266.561, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5", + "orig": "5", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 1999, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.565, + "r_y0": 304.22, + "r_x1": 274.067, + "r_y1": 304.22, + "r_x2": 274.067, + "r_y2": 312.545, + "r_x3": 271.565, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2000, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.067, + "r_y0": 304.22, + "r_x1": 283.067, + "r_y1": 304.22, + "r_x2": 283.067, + "r_y2": 312.545, + "r_x3": 274.067, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u0152", + "orig": "\u0152", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2001, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 283.067, + "r_y0": 304.22, + "r_x1": 285.569, + "r_y1": 304.22, + "r_x2": 285.569, + "r_y2": 312.545, + "r_x3": 283.067, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2002, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 295.895, + "r_x1": 58.004, + "r_y1": 295.895, + "r_x2": 58.004, + "r_y2": 304.22, + "r_x3": 52.001, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "B", + "orig": "B", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2003, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 58.004, + "r_y0": 295.895, + "r_x1": 60.002, + "r_y1": 295.895, + "r_x2": 60.002, + "r_y2": 304.22, + "r_x3": 58.004, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2004, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 60.002, + "r_y0": 295.895, + "r_x1": 65.006, + "r_y1": 295.895, + "r_x2": 65.006, + "r_y2": 304.22, + "r_x3": 60.002, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2005, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.006, + "r_y0": 295.895, + "r_x1": 69.506, + "r_y1": 295.895, + "r_x2": 69.506, + "r_y2": 304.22, + "r_x3": 65.006, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "c", + "orig": "c", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2006, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.506, + "r_y0": 295.895, + "r_x1": 74.006, + "r_y1": 295.895, + "r_x2": 74.006, + "r_y2": 304.22, + "r_x3": 69.506, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "k", + "orig": "k", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2007, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 303.946, + "r_x1": 345.236, + "r_y1": 303.946, + "r_x2": 345.236, + "r_y2": 312.271, + "r_x3": 338.738, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2008, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.236, + "r_y0": 303.946, + "r_x1": 351.238, + "r_y1": 303.946, + "r_x2": 351.238, + "r_y2": 312.271, + "r_x3": 345.236, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2009, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 351.238, + "r_y0": 303.946, + "r_x1": 357.241, + "r_y1": 303.946, + "r_x2": 357.241, + "r_y2": 312.271, + "r_x3": 351.238, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2010, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 303.946, + "r_x1": 419.171, + "r_y1": 303.946, + "r_x2": 419.171, + "r_y2": 312.271, + "r_x3": 414.167, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2011, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.171, + "r_y0": 303.946, + "r_x1": 424.175, + "r_y1": 303.946, + "r_x2": 424.175, + "r_y2": 312.271, + "r_x3": 419.171, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2012, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 303.865, + "r_x1": 473.122, + "r_y1": 303.865, + "r_x2": 473.122, + "r_y2": 312.19, + "r_x3": 468.118, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2013, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 303.865, + "r_x1": 478.126, + "r_y1": 303.865, + "r_x2": 478.126, + "r_y2": 312.19, + "r_x3": 473.122, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2014, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 478.126, + "r_y0": 303.865, + "r_x1": 483.13, + "r_y1": 303.865, + "r_x2": 483.13, + "r_y2": 312.19, + "r_x3": 478.126, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2015, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 483.13, + "r_y0": 303.865, + "r_x1": 488.134, + "r_y1": 303.865, + "r_x2": 488.134, + "r_y2": 312.19, + "r_x3": 483.13, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2016, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 488.134, + "r_y0": 303.865, + "r_x1": 490.636, + "r_y1": 303.865, + "r_x2": 490.636, + "r_y2": 312.19, + "r_x3": 488.134, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2017, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 490.636, + "r_y0": 303.865, + "r_x1": 495.64, + "r_y1": 303.865, + "r_x2": 495.64, + "r_y2": 312.19, + "r_x3": 490.636, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2018, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 495.64, + "r_y0": 303.865, + "r_x1": 500.644, + "r_y1": 303.865, + "r_x2": 500.644, + "r_y2": 312.19, + "r_x3": 495.64, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2019, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 303.865, + "r_x1": 522.824, + "r_y1": 303.865, + "r_x2": 522.824, + "r_y2": 312.19, + "r_x3": 517.82, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2020, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 522.824, + "r_y0": 303.865, + "r_x1": 527.828, + "r_y1": 303.865, + "r_x2": 527.828, + "r_y2": 312.19, + "r_x3": 522.824, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2021, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 527.828, + "r_y0": 303.865, + "r_x1": 530.33, + "r_y1": 303.865, + "r_x2": 530.33, + "r_y2": 312.19, + "r_x3": 527.828, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2022, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.33, + "r_y0": 303.865, + "r_x1": 535.334, + "r_y1": 303.865, + "r_x2": 535.334, + "r_y2": 312.19, + "r_x3": 530.33, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2023, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.334, + "r_y0": 303.865, + "r_x1": 540.338, + "r_y1": 303.865, + "r_x2": 540.338, + "r_y2": 312.19, + "r_x3": 535.334, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2024, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.338, + "r_y0": 303.865, + "r_x1": 545.342, + "r_y1": 303.865, + "r_x2": 545.342, + "r_y2": 312.19, + "r_x3": 540.338, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2025, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.342, + "r_y0": 303.865, + "r_x1": 547.844, + "r_y1": 303.865, + "r_x2": 547.844, + "r_y2": 312.19, + "r_x3": 545.342, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2026, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.844, + "r_y0": 303.865, + "r_x1": 552.848, + "r_y1": 303.865, + "r_x2": 552.848, + "r_y2": 312.19, + "r_x3": 547.844, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2027, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.848, + "r_y0": 303.865, + "r_x1": 557.852, + "r_y1": 303.865, + "r_x2": 557.852, + "r_y2": 312.19, + "r_x3": 552.848, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2028, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 267.288, + "r_x1": 59.003, + "r_y1": 267.288, + "r_x2": 59.003, + "r_y2": 275.613, + "r_x3": 52.001, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "O", + "orig": "O", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2029, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.003, + "r_y0": 267.288, + "r_x1": 62.0, + "r_y1": 267.288, + "r_x2": 62.0, + "r_y2": 275.613, + "r_x3": 59.003, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2030, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.0, + "r_y0": 267.288, + "r_x1": 63.998, + "r_y1": 267.288, + "r_x2": 63.998, + "r_y2": 275.613, + "r_x3": 62.0, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2031, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.998, + "r_y0": 267.288, + "r_x1": 69.002, + "r_y1": 267.288, + "r_x2": 69.002, + "r_y2": 275.613, + "r_x3": 63.998, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2032, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.002, + "r_y0": 267.288, + "r_x1": 71.0, + "r_y1": 267.288, + "r_x2": 71.0, + "r_y2": 275.613, + "r_x3": 69.002, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2033, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 71.0, + "r_y0": 267.288, + "r_x1": 76.004, + "r_y1": 267.288, + "r_x2": 76.004, + "r_y2": 275.613, + "r_x3": 71.0, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2034, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.004, + "r_y0": 267.288, + "r_x1": 81.008, + "r_y1": 267.288, + "r_x2": 81.008, + "r_y2": 275.613, + "r_x3": 76.004, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2035, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.008, + "r_y0": 267.288, + "r_x1": 83.006, + "r_y1": 267.288, + "r_x2": 83.006, + "r_y2": 275.613, + "r_x3": 81.008, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "l", + "orig": "l", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2036, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 83.006, + "r_y0": 267.288, + "r_x1": 85.508, + "r_y1": 267.288, + "r_x2": 85.508, + "r_y2": 275.613, + "r_x3": 83.006, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2037, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 267.288, + "r_x1": 92.006, + "r_y1": 267.288, + "r_x2": 92.006, + "r_y2": 275.613, + "r_x3": 85.508, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "H", + "orig": "H", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2038, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.006, + "r_y0": 267.288, + "r_x1": 97.01, + "r_y1": 267.288, + "r_x2": 97.01, + "r_y2": 275.613, + "r_x3": 92.006, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2039, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.01, + "r_y0": 267.288, + "r_x1": 102.014, + "r_y1": 267.288, + "r_x2": 102.014, + "r_y2": 275.613, + "r_x3": 97.01, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2040, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 102.014, + "r_y0": 267.288, + "r_x1": 107.018, + "r_y1": 267.288, + "r_x2": 107.018, + "r_y2": 275.613, + "r_x3": 102.014, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2041, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 267.288, + "r_x1": 112.022, + "r_y1": 267.288, + "r_x2": 112.022, + "r_y2": 275.613, + "r_x3": 107.018, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2042, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.022, + "r_y0": 267.288, + "r_x1": 114.524, + "r_y1": 267.288, + "r_x2": 114.524, + "r_y2": 275.613, + "r_x3": 112.022, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2043, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 267.288, + "r_x1": 121.022, + "r_y1": 267.288, + "r_x2": 121.022, + "r_y2": 275.613, + "r_x3": 114.524, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "C", + "orig": "C", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2044, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 121.022, + "r_y0": 267.288, + "r_x1": 126.026, + "r_y1": 267.288, + "r_x2": 126.026, + "r_y2": 275.613, + "r_x3": 121.022, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2045, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.026, + "r_y0": 267.288, + "r_x1": 130.526, + "r_y1": 267.288, + "r_x2": 130.526, + "r_y2": 275.613, + "r_x3": 126.026, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "v", + "orig": "v", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2046, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 130.526, + "r_y0": 267.288, + "r_x1": 135.53, + "r_y1": 267.288, + "r_x2": 135.53, + "r_y2": 275.613, + "r_x3": 130.526, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2047, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.53, + "r_y0": 267.288, + "r_x1": 138.527, + "r_y1": 267.288, + "r_x2": 138.527, + "r_y2": 275.613, + "r_x3": 135.53, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2048, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.527, + "r_y0": 267.288, + "r_x1": 141.029, + "r_y1": 267.288, + "r_x2": 141.029, + "r_y2": 275.613, + "r_x3": 138.527, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2049, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 267.288, + "r_x1": 147.032, + "r_y1": 267.288, + "r_x2": 147.032, + "r_y2": 275.613, + "r_x3": 141.029, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2050, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 147.032, + "r_y0": 267.288, + "r_x1": 152.036, + "r_y1": 267.288, + "r_x2": 152.036, + "r_y2": 275.613, + "r_x3": 147.032, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2051, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.036, + "r_y0": 267.288, + "r_x1": 154.538, + "r_y1": 267.288, + "r_x2": 154.538, + "r_y2": 275.613, + "r_x3": 152.036, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2052, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.538, + "r_y0": 267.288, + "r_x1": 157.04, + "r_y1": 267.288, + "r_x2": 157.04, + "r_y2": 275.613, + "r_x3": 154.538, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2053, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.04, + "r_y0": 267.288, + "r_x1": 162.044, + "r_y1": 267.288, + "r_x2": 162.044, + "r_y2": 275.613, + "r_x3": 157.04, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2054, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 162.044, + "r_y0": 267.288, + "r_x1": 167.048, + "r_y1": 267.288, + "r_x2": 167.048, + "r_y2": 275.613, + "r_x3": 162.044, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2055, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 167.048, + "r_y0": 267.288, + "r_x1": 169.55, + "r_y1": 267.288, + "r_x2": 169.55, + "r_y2": 275.613, + "r_x3": 167.048, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "f", + "orig": "f", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2056, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 169.55, + "r_y0": 267.288, + "r_x1": 172.052, + "r_y1": 267.288, + "r_x2": 172.052, + "r_y2": 275.613, + "r_x3": 169.55, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2057, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.052, + "r_y0": 267.288, + "r_x1": 174.554, + "r_y1": 267.288, + "r_x2": 174.554, + "r_y2": 275.613, + "r_x3": 172.052, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2058, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.554, + "r_y0": 267.288, + "r_x1": 179.558, + "r_y1": 267.288, + "r_x2": 179.558, + "r_y2": 275.613, + "r_x3": 174.554, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2059, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.558, + "r_y0": 267.288, + "r_x1": 184.562, + "r_y1": 267.288, + "r_x2": 184.562, + "r_y2": 275.613, + "r_x3": 179.558, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "n", + "orig": "n", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2060, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.562, + "r_y0": 267.288, + "r_x1": 189.566, + "r_y1": 267.288, + "r_x2": 189.566, + "r_y2": 275.613, + "r_x3": 184.562, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2061, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 189.566, + "r_y0": 267.288, + "r_x1": 192.068, + "r_y1": 267.288, + "r_x2": 192.068, + "r_y2": 275.613, + "r_x3": 189.566, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2062, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.068, + "r_y0": 267.288, + "r_x1": 198.566, + "r_y1": 267.288, + "r_x2": 198.566, + "r_y2": 275.613, + "r_x3": 192.068, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2063, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 198.566, + "r_y0": 267.288, + "r_x1": 200.564, + "r_y1": 267.288, + "r_x2": 200.564, + "r_y2": 275.613, + "r_x3": 198.566, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "i", + "orig": "i", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2064, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 200.564, + "r_y0": 267.288, + "r_x1": 205.568, + "r_y1": 267.288, + "r_x2": 205.568, + "r_y2": 275.613, + "r_x3": 200.564, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "g", + "orig": "g", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2065, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 205.568, + "r_y0": 267.288, + "r_x1": 210.572, + "r_y1": 267.288, + "r_x2": 210.572, + "r_y2": 275.613, + "r_x3": 205.568, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "h", + "orig": "h", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2066, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 210.572, + "r_y0": 267.288, + "r_x1": 213.074, + "r_y1": 267.288, + "r_x2": 213.074, + "r_y2": 275.613, + "r_x3": 210.572, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "t", + "orig": "t", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2067, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 213.074, + "r_y0": 267.288, + "r_x1": 215.576, + "r_y1": 267.288, + "r_x2": 215.576, + "r_y2": 275.613, + "r_x3": 213.074, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2068, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.576, + "r_y0": 267.288, + "r_x1": 221.075, + "r_y1": 267.288, + "r_x2": 221.075, + "r_y2": 275.613, + "r_x3": 215.576, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "F", + "orig": "F", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2069, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.075, + "r_y0": 267.288, + "r_x1": 226.079, + "r_y1": 267.288, + "r_x2": 226.079, + "r_y2": 275.613, + "r_x3": 221.075, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2070, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 226.079, + "r_y0": 267.288, + "r_x1": 229.076, + "r_y1": 267.288, + "r_x2": 229.076, + "r_y2": 275.613, + "r_x3": 226.079, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2071, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.076, + "r_y0": 267.288, + "r_x1": 231.578, + "r_y1": 267.288, + "r_x2": 231.578, + "r_y2": 275.613, + "r_x3": 229.076, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2072, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.578, + "r_y0": 267.288, + "r_x1": 237.581, + "r_y1": 267.288, + "r_x2": 237.581, + "r_y2": 275.613, + "r_x3": 231.578, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "X", + "orig": "X", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2073, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.581, + "r_y0": 267.288, + "r_x1": 244.079, + "r_y1": 267.288, + "r_x2": 244.079, + "r_y2": 275.613, + "r_x3": 237.581, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2074, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.079, + "r_y0": 267.288, + "r_x1": 251.576, + "r_y1": 267.288, + "r_x2": 251.576, + "r_y2": 275.613, + "r_x3": 244.079, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "M", + "orig": "M", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2075, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 251.576, + "r_y0": 267.288, + "r_x1": 254.078, + "r_y1": 267.288, + "r_x2": 254.078, + "r_y2": 275.613, + "r_x3": 251.576, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2076, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.078, + "r_y0": 267.288, + "r_x1": 259.082, + "r_y1": 267.288, + "r_x2": 259.082, + "r_y2": 275.613, + "r_x3": 254.078, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2077, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 259.082, + "r_y0": 267.288, + "r_x1": 264.086, + "r_y1": 267.288, + "r_x2": 264.086, + "r_y2": 275.613, + "r_x3": 259.082, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2078, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.086, + "r_y0": 267.288, + "r_x1": 269.09, + "r_y1": 267.288, + "r_x2": 269.09, + "r_y2": 275.613, + "r_x3": 264.086, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2079, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.09, + "r_y0": 267.288, + "r_x1": 271.592, + "r_y1": 267.288, + "r_x2": 271.592, + "r_y2": 275.613, + "r_x3": 269.09, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2080, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.592, + "r_y0": 267.288, + "r_x1": 280.592, + "r_y1": 267.288, + "r_x2": 280.592, + "r_y2": 275.613, + "r_x3": 271.592, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u0152", + "orig": "\u0152", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2081, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 280.592, + "r_y0": 267.288, + "r_x1": 283.094, + "r_y1": 267.288, + "r_x2": 283.094, + "r_y2": 275.613, + "r_x3": 280.592, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2082, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 279.098, + "r_y0": 267.288, + "r_x1": 285.596, + "r_y1": 267.288, + "r_x2": 285.596, + "r_y2": 275.613, + "r_x3": 279.098, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "R", + "orig": "R", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2083, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 285.596, + "r_y0": 267.288, + "r_x1": 290.6, + "r_y1": 267.288, + "r_x2": 290.6, + "r_y2": 275.613, + "r_x3": 285.596, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2084, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 290.6, + "r_y0": 267.288, + "r_x1": 295.604, + "r_y1": 267.288, + "r_x2": 295.604, + "r_y2": 275.613, + "r_x3": 290.6, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "d", + "orig": "d", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2085, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 266.849, + "r_x1": 345.236, + "r_y1": 266.849, + "r_x2": 345.236, + "r_y2": 275.174, + "r_x3": 338.738, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U", + "orig": "U", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2086, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.236, + "r_y0": 266.849, + "r_x1": 351.238, + "r_y1": 266.849, + "r_x2": 351.238, + "r_y2": 275.174, + "r_x3": 345.236, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2087, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 351.238, + "r_y0": 266.849, + "r_x1": 357.241, + "r_y1": 266.849, + "r_x2": 357.241, + "r_y2": 275.174, + "r_x3": 351.238, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "A", + "orig": "A", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2088, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 266.849, + "r_x1": 419.171, + "r_y1": 266.849, + "r_x2": 419.171, + "r_y2": 275.174, + "r_x3": 414.167, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2089, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.171, + "r_y0": 266.849, + "r_x1": 424.175, + "r_y1": 266.849, + "r_x2": 424.175, + "r_y2": 275.174, + "r_x3": 419.171, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2090, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 266.933, + "r_x1": 478.126, + "r_y1": 266.933, + "r_x2": 478.126, + "r_y2": 275.258, + "r_x3": 473.122, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2091, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 478.126, + "r_y0": 266.933, + "r_x1": 483.13, + "r_y1": 266.933, + "r_x2": 483.13, + "r_y2": 275.258, + "r_x3": 478.126, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2092, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 483.13, + "r_y0": 266.933, + "r_x1": 488.134, + "r_y1": 266.933, + "r_x2": 488.134, + "r_y2": 275.258, + "r_x3": 483.13, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2093, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 488.134, + "r_y0": 266.933, + "r_x1": 490.636, + "r_y1": 266.933, + "r_x2": 490.636, + "r_y2": 275.258, + "r_x3": 488.134, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2094, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 490.636, + "r_y0": 266.933, + "r_x1": 495.64, + "r_y1": 266.933, + "r_x2": 495.64, + "r_y2": 275.258, + "r_x3": 490.636, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7", + "orig": "7", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2095, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 495.64, + "r_y0": 266.933, + "r_x1": 500.644, + "r_y1": 266.933, + "r_x2": 500.644, + "r_y2": 275.258, + "r_x3": 495.64, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2096, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 525.326, + "r_y0": 266.933, + "r_x1": 530.33, + "r_y1": 266.933, + "r_x2": 530.33, + "r_y2": 275.258, + "r_x3": 525.326, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2097, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.33, + "r_y0": 266.933, + "r_x1": 535.334, + "r_y1": 266.933, + "r_x2": 535.334, + "r_y2": 275.258, + "r_x3": 530.33, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2098, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.334, + "r_y0": 266.933, + "r_x1": 540.338, + "r_y1": 266.933, + "r_x2": 540.338, + "r_y2": 275.258, + "r_x3": 535.334, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2099, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.338, + "r_y0": 266.933, + "r_x1": 545.342, + "r_y1": 266.933, + "r_x2": 545.342, + "r_y2": 275.258, + "r_x3": 540.338, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7", + "orig": "7", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2100, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.342, + "r_y0": 266.933, + "r_x1": 547.844, + "r_y1": 266.933, + "r_x2": 547.844, + "r_y2": 275.258, + "r_x3": 545.342, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2101, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.844, + "r_y0": 266.933, + "r_x1": 552.848, + "r_y1": 266.933, + "r_x2": 552.848, + "r_y2": 275.258, + "r_x3": 547.844, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2102, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.848, + "r_y0": 266.933, + "r_x1": 557.852, + "r_y1": 266.933, + "r_x2": 557.852, + "r_y2": 275.258, + "r_x3": 552.848, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2103, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 82.585, + "r_x1": 56.383, + "r_y1": 82.585, + "r_x2": 56.383, + "r_y2": 90.693, + "r_x3": 52.001, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "J", + "orig": "J", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2104, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 56.383, + "r_y0": 82.585, + "r_x1": 61.256, + "r_y1": 82.585, + "r_x2": 61.256, + "r_y2": 90.693, + "r_x3": 56.383, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "o", + "orig": "o", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2105, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 61.256, + "r_y0": 82.585, + "r_x1": 65.639, + "r_y1": 82.585, + "r_x2": 65.639, + "r_y2": 90.693, + "r_x3": 61.256, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2106, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.639, + "r_y0": 82.585, + "r_x1": 70.512, + "r_y1": 82.585, + "r_x2": 70.512, + "r_y2": 90.693, + "r_x3": 65.639, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2107, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.512, + "r_y0": 82.585, + "r_x1": 72.949, + "r_y1": 82.585, + "r_x2": 72.949, + "r_y2": 90.693, + "r_x3": 70.512, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2108, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.949, + "r_y0": 82.585, + "r_x1": 78.795, + "r_y1": 82.585, + "r_x2": 78.795, + "r_y2": 90.693, + "r_x3": 72.949, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2109, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.795, + "r_y0": 82.585, + "r_x1": 81.232, + "r_y1": 82.585, + "r_x2": 81.232, + "r_y2": 90.693, + "r_x3": 78.795, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2110, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.232, + "r_y0": 82.585, + "r_x1": 86.105, + "r_y1": 82.585, + "r_x2": 86.105, + "r_y2": 90.693, + "r_x3": 81.232, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "L", + "orig": "L", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2111, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.105, + "r_y0": 82.585, + "r_x1": 90.978, + "r_y1": 82.585, + "r_x2": 90.978, + "r_y2": 90.693, + "r_x3": 86.105, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2112, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.978, + "r_y0": 82.585, + "r_x1": 93.897, + "r_y1": 82.585, + "r_x2": 93.897, + "r_y2": 90.693, + "r_x3": 90.978, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "r", + "orig": "r", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2113, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.897, + "r_y0": 82.585, + "r_x1": 98.77, + "r_y1": 82.585, + "r_x2": 98.77, + "r_y2": 90.693, + "r_x3": 93.897, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "e", + "orig": "e", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2114, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.77, + "r_y0": 82.585, + "r_x1": 103.153, + "r_y1": 82.585, + "r_x2": 103.153, + "r_y2": 90.693, + "r_x3": 98.77, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "s", + "orig": "s", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2115, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.243, + "r_y0": 82.585, + "r_x1": 254.116, + "r_y1": 82.585, + "r_x2": 254.116, + "r_y2": 90.693, + "r_x3": 249.243, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2116, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.116, + "r_y0": 82.585, + "r_x1": 258.99, + "r_y1": 82.585, + "r_x2": 258.99, + "r_y2": 90.693, + "r_x3": 254.116, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2117, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 258.99, + "r_y0": 82.585, + "r_x1": 261.426, + "r_y1": 82.585, + "r_x2": 261.426, + "r_y2": 90.693, + "r_x3": 258.99, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2118, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.426, + "r_y0": 82.585, + "r_x1": 266.299, + "r_y1": 82.585, + "r_x2": 266.299, + "r_y2": 90.693, + "r_x3": 261.426, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2119, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 266.299, + "r_y0": 82.585, + "r_x1": 271.173, + "r_y1": 82.585, + "r_x2": 271.173, + "r_y2": 90.693, + "r_x3": 266.299, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2120, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.173, + "r_y0": 82.585, + "r_x1": 273.609, + "r_y1": 82.585, + "r_x2": 273.609, + "r_y2": 90.693, + "r_x3": 271.173, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "/", + "orig": "/", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2121, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 273.609, + "r_y0": 82.585, + "r_x1": 278.483, + "r_y1": 82.585, + "r_x2": 278.483, + "r_y2": 90.693, + "r_x3": 273.609, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2122, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.483, + "r_y0": 82.585, + "r_x1": 283.356, + "r_y1": 82.585, + "r_x2": 283.356, + "r_y2": 90.693, + "r_x3": 278.483, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2123, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 193.537, + "r_x1": 540.385, + "r_y1": 193.537, + "r_x2": 540.385, + "r_y2": 201.862, + "r_x3": 535.381, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2124, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 193.537, + "r_x1": 545.389, + "r_y1": 193.537, + "r_x2": 545.389, + "r_y2": 201.862, + "r_x3": 540.385, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2125, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 193.537, + "r_x1": 547.891, + "r_y1": 193.537, + "r_x2": 547.891, + "r_y2": 201.862, + "r_x3": 545.389, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2126, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 193.537, + "r_x1": 552.895, + "r_y1": 193.537, + "r_x2": 552.895, + "r_y2": 201.862, + "r_x3": 547.891, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2127, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 193.537, + "r_x1": 557.899, + "r_y1": 193.537, + "r_x2": 557.899, + "r_y2": 201.862, + "r_x3": 552.895, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2128, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.377, + "r_y0": 177.593, + "r_x1": 535.381, + "r_y1": 177.593, + "r_x2": 535.381, + "r_y2": 185.918, + "r_x3": 530.377, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2129, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 177.593, + "r_x1": 540.385, + "r_y1": 177.593, + "r_x2": 540.385, + "r_y2": 185.918, + "r_x3": 535.381, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2130, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 177.593, + "r_x1": 545.389, + "r_y1": 177.593, + "r_x2": 545.389, + "r_y2": 185.918, + "r_x3": 540.385, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2131, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 177.593, + "r_x1": 547.891, + "r_y1": 177.593, + "r_x2": 547.891, + "r_y2": 185.918, + "r_x3": 545.389, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2132, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 177.593, + "r_x1": 552.895, + "r_y1": 177.593, + "r_x2": 552.895, + "r_y2": 185.918, + "r_x3": 547.891, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2133, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 177.593, + "r_x1": 557.899, + "r_y1": 177.593, + "r_x2": 557.899, + "r_y2": 185.918, + "r_x3": 552.895, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2134, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 161.649, + "r_x1": 545.389, + "r_y1": 161.649, + "r_x2": 545.389, + "r_y2": 169.974, + "r_x3": 540.385, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2135, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 161.649, + "r_x1": 547.891, + "r_y1": 161.649, + "r_x2": 547.891, + "r_y2": 169.974, + "r_x3": 545.389, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2136, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 161.649, + "r_x1": 552.895, + "r_y1": 161.649, + "r_x2": 552.895, + "r_y2": 169.974, + "r_x3": 547.891, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2137, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 161.649, + "r_x1": 557.899, + "r_y1": 161.649, + "r_x2": 557.899, + "r_y2": 169.974, + "r_x3": 552.895, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2138, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 145.704, + "r_x1": 545.389, + "r_y1": 145.704, + "r_x2": 545.389, + "r_y2": 154.029, + "r_x3": 540.385, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2139, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 145.704, + "r_x1": 547.891, + "r_y1": 145.704, + "r_x2": 547.891, + "r_y2": 154.029, + "r_x3": 545.389, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2140, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 145.704, + "r_x1": 552.895, + "r_y1": 145.704, + "r_x2": 552.895, + "r_y2": 154.029, + "r_x3": 547.891, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2141, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 145.704, + "r_x1": 557.899, + "r_y1": 145.704, + "r_x2": 557.899, + "r_y2": 154.029, + "r_x3": 552.895, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2142, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 129.76, + "r_x1": 540.385, + "r_y1": 129.76, + "r_x2": 540.385, + "r_y2": 138.085, + "r_x3": 535.381, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2143, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 129.76, + "r_x1": 545.389, + "r_y1": 129.76, + "r_x2": 545.389, + "r_y2": 138.085, + "r_x3": 540.385, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2144, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 129.76, + "r_x1": 547.891, + "r_y1": 129.76, + "r_x2": 547.891, + "r_y2": 138.085, + "r_x3": 545.389, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2145, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 129.76, + "r_x1": 552.895, + "r_y1": 129.76, + "r_x2": 552.895, + "r_y2": 138.085, + "r_x3": 547.891, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2146, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 129.76, + "r_x1": 557.899, + "r_y1": 129.76, + "r_x2": 557.899, + "r_y2": 138.085, + "r_x3": 552.895, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2147, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 113.816, + "r_x1": 545.389, + "r_y1": 113.816, + "r_x2": 545.389, + "r_y2": 122.141, + "r_x3": 540.385, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2148, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 113.816, + "r_x1": 547.891, + "r_y1": 113.816, + "r_x2": 547.891, + "r_y2": 122.141, + "r_x3": 545.389, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2149, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 113.816, + "r_x1": 552.895, + "r_y1": 113.816, + "r_x2": 552.895, + "r_y2": 122.141, + "r_x3": 547.891, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2150, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 113.816, + "r_x1": 557.899, + "r_y1": 113.816, + "r_x2": 557.899, + "r_y2": 122.141, + "r_x3": 552.895, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2151, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 97.872, + "r_x1": 540.385, + "r_y1": 97.872, + "r_x2": 540.385, + "r_y2": 106.197, + "r_x3": 535.381, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2152, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 97.872, + "r_x1": 545.389, + "r_y1": 97.872, + "r_x2": 545.389, + "r_y2": 106.197, + "r_x3": 540.385, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8", + "orig": "8", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2153, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 97.872, + "r_x1": 547.891, + "r_y1": 97.872, + "r_x2": 547.891, + "r_y2": 106.197, + "r_x3": 545.389, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2154, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 97.872, + "r_x1": 552.895, + "r_y1": 97.872, + "r_x2": 552.895, + "r_y2": 106.197, + "r_x3": 547.891, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2155, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 97.872, + "r_x1": 557.899, + "r_y1": 97.872, + "r_x2": 557.899, + "r_y2": 106.197, + "r_x3": 552.895, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2156, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 81.927, + "r_x1": 540.385, + "r_y1": 81.927, + "r_x2": 540.385, + "r_y2": 90.252, + "r_x3": 535.381, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "7", + "orig": "7", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2157, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 81.927, + "r_x1": 545.389, + "r_y1": 81.927, + "r_x2": 545.389, + "r_y2": 90.252, + "r_x3": 540.385, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "3", + "orig": "3", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2158, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 81.927, + "r_x1": 547.891, + "r_y1": 81.927, + "r_x2": 547.891, + "r_y2": 90.252, + "r_x3": 545.389, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2159, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 81.927, + "r_x1": 552.895, + "r_y1": 81.927, + "r_x2": 552.895, + "r_y2": 90.252, + "r_x3": 547.891, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2160, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 81.927, + "r_x1": 557.899, + "r_y1": 81.927, + "r_x2": 557.899, + "r_y2": 90.252, + "r_x3": 552.895, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0", + "orig": "0", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 2161, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 512.863, + "r_y0": 80.021, + "r_x1": 517.867, + "r_y1": 80.021, + "r_x2": 517.867, + "r_y2": 88.346, + "r_x3": 512.863, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$", + "orig": "$", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2162, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.867, + "r_y0": 80.021, + "r_x1": 522.871, + "r_y1": 80.021, + "r_x2": 522.871, + "r_y2": 88.346, + "r_x3": 517.867, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2163, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 522.871, + "r_y0": 80.021, + "r_x1": 527.875, + "r_y1": 80.021, + "r_x2": 527.875, + "r_y2": 88.346, + "r_x3": 522.871, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "5", + "orig": "5", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2164, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 527.875, + "r_y0": 80.021, + "r_x1": 530.377, + "r_y1": 80.021, + "r_x2": 530.377, + "r_y2": 88.346, + "r_x3": 527.875, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": ",", + "orig": ",", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2165, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.377, + "r_y0": 80.021, + "r_x1": 535.381, + "r_y1": 80.021, + "r_x2": 535.381, + "r_y2": 88.346, + "r_x3": 530.377, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9", + "orig": "9", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2166, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 80.021, + "r_x1": 540.385, + "r_y1": 80.021, + "r_x2": 540.385, + "r_y2": 88.346, + "r_x3": 535.381, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2167, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 80.021, + "r_x1": 545.389, + "r_y1": 80.021, + "r_x2": 545.389, + "r_y2": 88.346, + "r_x3": 540.385, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "2", + "orig": "2", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2168, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 545.389, + "r_y0": 80.021, + "r_x1": 547.891, + "r_y1": 80.021, + "r_x2": 547.891, + "r_y2": 88.346, + "r_x3": 545.389, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": ".", + "orig": ".", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2169, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 547.891, + "r_y0": 80.021, + "r_x1": 552.895, + "r_y1": 80.021, + "r_x2": 552.895, + "r_y2": 88.346, + "r_x3": 547.891, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + }, + { + "index": 2170, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 552.895, + "r_y0": 80.021, + "r_x1": 557.899, + "r_y1": 80.021, + "r_x2": 557.899, + "r_y2": 88.346, + "r_x3": 552.895, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + } + ], + "word_cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.41, + "r_y0": 711.075, + "r_x1": 85.284, + "r_y1": 711.075, + "r_x2": 85.284, + "r_y2": 717.89, + "r_x3": 63.41, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Invoice", + "orig": "Invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.51, + "r_y0": 711.075, + "r_x1": 102.091, + "r_y1": 711.075, + "r_x2": 102.091, + "r_y2": 717.89, + "r_x3": 87.51, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Date", + "orig": "Date", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.541, + "r_y0": 711.075, + "r_x1": 175.417, + "r_y1": 711.075, + "r_x2": 175.417, + "r_y2": 717.89, + "r_x3": 153.541, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Invoice", + "orig": "Invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.643, + "r_y0": 711.075, + "r_x1": 181.955, + "r_y1": 711.075, + "r_x2": 181.955, + "r_y2": 717.89, + "r_x3": 177.643, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "#", + "orig": "#", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.011, + "r_y0": 711.075, + "r_x1": 278.94, + "r_y1": 711.075, + "r_x2": 278.94, + "r_y2": 717.89, + "r_x3": 260.011, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Order", + "orig": "Order", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 281.166, + "r_y0": 711.075, + "r_x1": 285.478, + "r_y1": 711.075, + "r_x2": 285.478, + "r_y2": 717.89, + "r_x3": 281.166, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "#", + "orig": "#", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 416.601, + "r_y0": 711.075, + "r_x1": 434.647, + "r_y1": 711.075, + "r_x2": 434.647, + "r_y2": 717.89, + "r_x3": 416.601, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Other", + "orig": "Other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 436.873, + "r_y0": 711.075, + "r_x1": 470.396, + "r_y1": 711.075, + "r_x2": 470.396, + "r_y2": 717.89, + "r_x3": 436.873, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "References", + "orig": "References", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 658.219, + "r_x1": 123.376, + "r_y1": 658.219, + "r_x2": 123.376, + "r_y2": 665.782, + "r_x3": 54.0, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Seller/Shipper", + "orig": "Seller/Shipper", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 658.213, + "r_x1": 160.364, + "r_y1": 658.213, + "r_x2": 160.364, + "r_y2": 665.028, + "r_x3": 139.0, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 638.214, + "r_x1": 166.349, + "r_y1": 638.214, + "r_x2": 166.349, + "r_y2": 645.029, + "r_x3": 139.0, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 618.219, + "r_x1": 95.152, + "r_y1": 618.219, + "r_x2": 95.152, + "r_y2": 625.782, + "r_x3": 54.0, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 618.213, + "r_x1": 160.364, + "r_y1": 618.213, + "r_x2": 160.364, + "r_y2": 625.028, + "r_x3": 139.0, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 607.619, + "r_x1": 105.952, + "r_y1": 607.619, + "r_x2": 105.952, + "r_y2": 615.182, + "r_x3": 54.0, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "conSignee", + "orig": "conSignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 598.213, + "r_x1": 166.349, + "r_y1": 598.213, + "r_x2": 166.349, + "r_y2": 605.028, + "r_x3": 139.0, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 578.214, + "r_x1": 155.667, + "r_y1": 578.214, + "r_x2": 155.667, + "r_y2": 585.029, + "r_x3": 139.0, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Type:", + "orig": "Type:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 558.215, + "r_x1": 160.364, + "r_y1": 558.215, + "r_x2": 160.364, + "r_y2": 565.03, + "r_x3": 139.0, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 558.219, + "r_x1": 81.192, + "r_y1": 558.219, + "r_x2": 81.192, + "r_y2": 565.782, + "r_x3": 54.0, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Buyer", + "orig": "Buyer", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 548.705, + "r_x1": 57.583, + "r_y1": 548.705, + "r_x2": 57.583, + "r_y2": 555.558, + "r_x3": 53.999, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If", + "orig": "If", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 59.676, + "r_y0": 548.705, + "r_x1": 74.81, + "r_y1": 548.705, + "r_x2": 74.81, + "r_y2": 555.558, + "r_x3": 59.676, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "other", + "orig": "other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.903, + "r_y0": 548.705, + "r_x1": 89.902, + "r_y1": 548.705, + "r_x2": 89.902, + "r_y2": 555.558, + "r_x3": 76.903, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "than", + "orig": "than", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.995, + "r_y0": 548.643, + "r_x1": 115.662, + "r_y1": 548.643, + "r_x2": 115.662, + "r_y2": 554.837, + "r_x3": 91.995, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 538.842, + "r_x1": 83.651, + "r_y1": 538.842, + "r_x2": 83.651, + "r_y2": 545.695, + "r_x3": 53.999, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "consignee", + "orig": "consignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 538.214, + "r_x1": 166.349, + "r_y1": 538.214, + "r_x2": 166.349, + "r_y2": 545.029, + "r_x3": 139.0, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 520.713, + "r_x1": 65.795, + "r_y1": 520.713, + "r_x2": 65.795, + "r_y2": 527.528, + "r_x3": 54.0, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Port", + "orig": "Port", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 68.021, + "r_y0": 520.713, + "r_x1": 73.985, + "r_y1": 520.713, + "r_x2": 73.985, + "r_y2": 527.528, + "r_x3": 68.021, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 76.211, + "r_y0": 520.713, + "r_x1": 97.043, + "r_y1": 520.713, + "r_x2": 97.043, + "r_y2": 527.528, + "r_x3": 76.211, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Lading", + "orig": "Lading", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 520.713, + "r_x1": 324.711, + "r_y1": 520.713, + "r_x2": 324.711, + "r_y2": 527.528, + "r_x3": 309.997, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total", + "orig": "Total", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.937, + "r_y0": 520.713, + "r_x1": 338.984, + "r_y1": 520.713, + "r_x2": 338.984, + "r_y2": 527.528, + "r_x3": 326.937, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "No.", + "orig": "No.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 341.21, + "r_y0": 520.713, + "r_x1": 370.582, + "r_y1": 520.713, + "r_x2": 370.582, + "r_y2": 527.528, + "r_x3": 341.21, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Packages", + "orig": "Packages", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 504.711, + "r_x1": 324.711, + "r_y1": 504.711, + "r_x2": 324.711, + "r_y2": 511.526, + "r_x3": 309.997, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total", + "orig": "Total", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 326.937, + "r_y0": 504.711, + "r_x1": 344.983, + "r_y1": 504.711, + "r_x2": 344.983, + "r_y2": 511.526, + "r_x3": 326.937, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Gross", + "orig": "Gross", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 347.209, + "r_y0": 504.711, + "r_x1": 369.896, + "r_y1": 504.711, + "r_x2": 369.896, + "r_y2": 511.526, + "r_x3": 347.209, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Weight", + "orig": "Weight", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 372.122, + "r_y0": 504.711, + "r_x1": 387.109, + "r_y1": 504.711, + "r_x2": 387.109, + "r_y2": 511.526, + "r_x3": 372.122, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(KG)", + "orig": "(KG)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 488.709, + "r_x1": 84.079, + "r_y1": 488.709, + "r_x2": 84.079, + "r_y2": 495.524, + "r_x3": 54.0, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Exporting", + "orig": "Exporting", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.305, + "r_y0": 488.709, + "r_x1": 108.523, + "r_y1": 488.709, + "r_x2": 108.523, + "r_y2": 495.524, + "r_x3": 86.305, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Carrier", + "orig": "Carrier", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 488.709, + "r_x1": 328.071, + "r_y1": 488.709, + "r_x2": 328.071, + "r_y2": 495.524, + "r_x3": 309.997, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cubic", + "orig": "Cubic", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 330.297, + "r_y0": 488.709, + "r_x1": 351.423, + "r_y1": 488.709, + "r_x2": 351.423, + "r_y2": 495.524, + "r_x3": 330.297, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Meters", + "orig": "Meters", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 472.707, + "r_x1": 89.294, + "r_y1": 472.707, + "r_x2": 89.294, + "r_y2": 479.522, + "r_x3": 54.0, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Incoterms\u00ae", + "orig": "Incoterms\u00ae", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 474.933, + "r_x1": 329.324, + "r_y1": 474.933, + "r_x2": 329.324, + "r_y2": 481.748, + "r_x3": 309.997, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Marks", + "orig": "Marks", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 331.55, + "r_y0": 474.933, + "r_x1": 336.415, + "r_y1": 474.933, + "r_x2": 336.415, + "r_y2": 481.748, + "r_x3": 331.55, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.641, + "r_y0": 474.933, + "r_x1": 367.019, + "r_y1": 474.933, + "r_x2": 367.019, + "r_y2": 481.748, + "r_x3": 338.641, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Numbers", + "orig": "Numbers", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 456.705, + "r_x1": 77.534, + "r_y1": 456.705, + "r_x2": 77.534, + "r_y2": 463.52, + "r_x3": 54.0, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Named", + "orig": "Named", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.76, + "r_y0": 456.705, + "r_x1": 94.53, + "r_y1": 456.705, + "r_x2": 94.53, + "r_y2": 463.52, + "r_x3": 79.76, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Point", + "orig": "Point", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 440.703, + "r_x1": 71.605, + "r_y1": 440.703, + "r_x2": 71.605, + "r_y2": 447.518, + "r_x3": 54.0, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Terms", + "orig": "Terms", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 73.831, + "r_y0": 440.703, + "r_x1": 79.795, + "r_y1": 440.703, + "r_x2": 79.795, + "r_y2": 447.518, + "r_x3": 73.831, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 82.021, + "r_y0": 440.703, + "r_x1": 95.657, + "r_y1": 440.703, + "r_x2": 95.657, + "r_y2": 447.518, + "r_x3": 82.021, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Sale", + "orig": "Sale", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 424.701, + "r_x1": 82.217, + "r_y1": 424.701, + "r_x2": 82.217, + "r_y2": 431.516, + "r_x3": 54.0, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Currency", + "orig": "Currency", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.443, + "r_y0": 424.701, + "r_x1": 90.407, + "r_y1": 424.701, + "r_x2": 90.407, + "r_y2": 431.516, + "r_x3": 84.443, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 92.633, + "r_y0": 424.701, + "r_x1": 106.269, + "r_y1": 424.701, + "r_x2": 106.269, + "r_y2": 431.516, + "r_x3": 92.633, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Sale", + "orig": "Sale", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.311, + "r_y0": 406.582, + "r_x1": 99.509, + "r_y1": 406.582, + "r_x2": 99.509, + "r_y2": 413.16, + "r_x3": 69.311, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Complete", + "orig": "Complete", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.525, + "r_y0": 406.582, + "r_x1": 106.194, + "r_y1": 406.582, + "r_x2": 106.194, + "r_y2": 413.16, + "r_x3": 101.525, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.21, + "r_y0": 406.582, + "r_x1": 136.077, + "r_y1": 406.582, + "r_x2": 136.077, + "r_y2": 413.16, + "r_x3": 108.21, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Accurate", + "orig": "Accurate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.093, + "r_y0": 406.582, + "r_x1": 173.765, + "r_y1": 406.582, + "r_x2": 173.765, + "r_y2": 413.16, + "r_x3": 138.093, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Commodity", + "orig": "Commodity", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 175.797, + "r_y0": 406.582, + "r_x1": 213.135, + "r_y1": 406.582, + "r_x2": 213.135, + "r_y2": 413.16, + "r_x3": 175.797, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Description,", + "orig": "Description,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.151, + "r_y0": 406.582, + "r_x1": 234.702, + "r_y1": 406.582, + "r_x2": 234.702, + "r_y2": 413.16, + "r_x3": 215.151, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USML", + "orig": "USML", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.718, + "r_y0": 406.582, + "r_x1": 265.372, + "r_y1": 406.582, + "r_x2": 265.372, + "r_y2": 413.16, + "r_x3": 236.718, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Category", + "orig": "Category", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 267.388, + "r_y0": 406.582, + "r_x1": 273.646, + "r_y1": 406.582, + "r_x2": 273.646, + "r_y2": 413.16, + "r_x3": 267.388, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.662, + "r_y0": 406.582, + "r_x1": 297.579, + "r_y1": 406.582, + "r_x2": 297.579, + "r_y2": 413.16, + "r_x3": 275.662, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ECCN,", + "orig": "ECCN,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.635, + "r_y0": 397.58, + "r_x1": 109.464, + "r_y1": 397.58, + "r_x2": 109.464, + "r_y2": 404.158, + "r_x3": 77.635, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "applicable", + "orig": "applicable", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 111.441, + "r_y0": 397.58, + "r_x1": 142.717, + "r_y1": 397.58, + "r_x2": 142.717, + "r_y2": 404.158, + "r_x3": 111.441, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(including", + "orig": "(including", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 61, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 144.739, + "r_y0": 397.58, + "r_x1": 184.086, + "r_y1": 397.58, + "r_x2": 184.086, + "r_y2": 404.158, + "r_x3": 144.739, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "model/serial", + "orig": "model/serial", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 62, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.108, + "r_y0": 397.58, + "r_x1": 255.212, + "r_y1": 397.58, + "r_x2": 255.212, + "r_y2": 404.158, + "r_x3": 186.108, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "number/ECCN/USML", + "orig": "number/ECCN/USML", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 63, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.345, + "r_y0": 397.58, + "r_x1": 289.251, + "r_y1": 397.58, + "r_x2": 289.251, + "r_y2": 404.158, + "r_x3": 257.345, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Category)", + "orig": "Category)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 64, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 311.173, + "r_y0": 401.44, + "r_x1": 335.89, + "r_y1": 401.44, + "r_x2": 335.89, + "r_y2": 408.018, + "r_x3": 311.173, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Country", + "orig": "Country", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 65, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 337.906, + "r_y0": 401.44, + "r_x1": 343.779, + "r_y1": 401.44, + "r_x2": 343.779, + "r_y2": 408.018, + "r_x3": 337.906, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 66, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 345.795, + "r_y0": 401.44, + "r_x1": 385.051, + "r_y1": 401.44, + "r_x2": 385.051, + "r_y2": 408.018, + "r_x3": 345.795, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Manufacture", + "orig": "Manufacture", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 67, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.085, + "r_y0": 405.941, + "r_x1": 439.385, + "r_y1": 405.941, + "r_x2": 439.385, + "r_y2": 412.519, + "r_x3": 398.085, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Quantity/Unit", + "orig": "Quantity/Unit", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 68, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 401.984, + "r_y0": 396.939, + "r_x1": 407.857, + "r_y1": 396.939, + "r_x2": 407.857, + "r_y2": 403.517, + "r_x3": 401.984, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 69, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 409.873, + "r_y0": 396.939, + "r_x1": 437.313, + "r_y1": 396.939, + "r_x2": 437.313, + "r_y2": 403.517, + "r_x3": 409.873, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Measure", + "orig": "Measure", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 70, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 461.603, + "r_y0": 401.44, + "r_x1": 474.133, + "r_y1": 401.44, + "r_x2": 474.133, + "r_y2": 408.018, + "r_x3": 461.603, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Unit", + "orig": "Unit", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 71, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 476.162, + "r_y0": 401.44, + "r_x1": 492.208, + "r_y1": 401.439, + "r_x2": 492.208, + "r_y2": 408.017, + "r_x3": 476.162, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Price", + "orig": "Price", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 72, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 521.222, + "r_y0": 401.44, + "r_x1": 537.371, + "r_y1": 401.44, + "r_x2": 537.371, + "r_y2": 408.018, + "r_x3": 521.222, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total", + "orig": "Total", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 73, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.815, + "r_y0": 192.953, + "r_x1": 425.105, + "r_y1": 192.953, + "r_x2": 425.105, + "r_y2": 199.768, + "r_x3": 400.815, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Packing", + "orig": "Packing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 74, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.331, + "r_y0": 192.953, + "r_x1": 444.005, + "r_y1": 192.953, + "r_x2": 444.005, + "r_y2": 199.768, + "r_x3": 427.331, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Costs", + "orig": "Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 75, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.154, + "r_y0": 176.951, + "r_x1": 425.105, + "r_y1": 176.951, + "r_x2": 425.105, + "r_y2": 183.766, + "r_x3": 404.154, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Freight", + "orig": "Freight", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 76, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.331, + "r_y0": 176.951, + "r_x1": 444.005, + "r_y1": 176.951, + "r_x2": 444.005, + "r_y2": 183.766, + "r_x3": 427.331, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Costs", + "orig": "Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 77, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 360.131, + "r_y0": 160.949, + "r_x1": 378.177, + "r_y1": 160.949, + "r_x2": 378.177, + "r_y2": 167.764, + "r_x3": 360.131, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Other", + "orig": "Other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 78, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 380.403, + "r_y0": 160.949, + "r_x1": 425.091, + "r_y1": 160.949, + "r_x2": 425.091, + "r_y2": 167.764, + "r_x3": 380.403, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Transportation", + "orig": "Transportation", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 79, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.317, + "r_y0": 160.949, + "r_x1": 443.991, + "r_y1": 160.949, + "r_x2": 443.991, + "r_y2": 167.764, + "r_x3": 427.317, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Costs", + "orig": "Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 80, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 145.156, + "r_x1": 53.531, + "r_y1": 145.156, + "r_x2": 53.531, + "r_y2": 151.986, + "r_x3": 50.003, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It", + "orig": "It", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 81, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 55.757, + "r_y0": 145.156, + "r_x1": 60.398, + "r_y1": 145.156, + "r_x2": 60.398, + "r_y2": 151.986, + "r_x3": 55.757, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "is", + "orig": "is", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 82, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 62.624, + "r_y0": 145.156, + "r_x1": 83.785, + "r_y1": 145.156, + "r_x2": 83.785, + "r_y2": 151.986, + "r_x3": 62.624, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "hereby", + "orig": "hereby", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 83, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.011, + "r_y0": 145.156, + "r_x1": 110.938, + "r_y1": 145.156, + "r_x2": 110.938, + "r_y2": 151.986, + "r_x3": 86.011, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "certified", + "orig": "certified", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 84, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 113.164, + "r_y0": 145.156, + "r_x1": 124.616, + "r_y1": 145.156, + "r_x2": 124.616, + "r_y2": 151.986, + "r_x3": 113.164, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "that", + "orig": "that", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 85, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.842, + "r_y0": 145.156, + "r_x1": 137.02, + "r_y1": 145.156, + "r_x2": 137.02, + "r_y2": 151.986, + "r_x3": 126.842, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "this", + "orig": "this", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 86, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.246, + "r_y0": 145.156, + "r_x1": 161.093, + "r_y1": 145.156, + "r_x2": 161.093, + "r_y2": 151.986, + "r_x3": 139.246, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "invoice", + "orig": "invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 87, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 163.319, + "r_y0": 145.156, + "r_x1": 182.037, + "r_y1": 145.156, + "r_x2": 182.037, + "r_y2": 151.986, + "r_x3": 163.319, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "shows", + "orig": "shows", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 88, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 184.263, + "r_y0": 145.156, + "r_x1": 193.517, + "r_y1": 145.156, + "r_x2": 193.517, + "r_y2": 151.986, + "r_x3": 184.263, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 89, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.743, + "r_y0": 145.156, + "r_x1": 214.664, + "r_y1": 145.156, + "r_x2": 214.664, + "r_y2": 151.986, + "r_x3": 195.743, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "actual", + "orig": "actual", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 90, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.89, + "r_y0": 145.156, + "r_x1": 232.339, + "r_y1": 145.156, + "r_x2": 232.339, + "r_y2": 151.986, + "r_x3": 216.89, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "price", + "orig": "price", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 91, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.565, + "r_y0": 145.156, + "r_x1": 240.543, + "r_y1": 145.156, + "r_x2": 240.543, + "r_y2": 151.986, + "r_x3": 234.565, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 92, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.769, + "r_y0": 145.156, + "r_x1": 252.023, + "r_y1": 145.156, + "r_x2": 252.023, + "r_y2": 151.986, + "r_x3": 242.769, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 93, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.249, + "r_y0": 145.156, + "r_x1": 273.471, + "r_y1": 145.156, + "r_x2": 273.471, + "r_y2": 151.986, + "r_x3": 254.249, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "goods", + "orig": "goods", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 94, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 135.153, + "r_x1": 82.567, + "r_y1": 135.153, + "r_x2": 82.567, + "r_y2": 141.983, + "r_x3": 50.003, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "described,", + "orig": "described,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 95, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.793, + "r_y0": 135.153, + "r_x1": 96.245, + "r_y1": 135.153, + "r_x2": 96.245, + "r_y2": 141.983, + "r_x3": 84.793, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "that", + "orig": "that", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 96, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 98.471, + "r_y0": 135.153, + "r_x1": 106.185, + "r_y1": 135.153, + "r_x2": 106.185, + "r_y2": 141.983, + "r_x3": 98.471, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "no", + "orig": "no", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 97, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.411, + "r_y0": 135.153, + "r_x1": 124.231, + "r_y1": 135.153, + "r_x2": 124.231, + "r_y2": 141.983, + "r_x3": 108.411, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "other", + "orig": "other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 98, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.457, + "r_y0": 135.153, + "r_x1": 148.304, + "r_y1": 135.153, + "r_x2": 148.304, + "r_y2": 141.983, + "r_x3": 126.457, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "invoice", + "orig": "invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 99, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 150.53, + "r_y0": 135.153, + "r_x1": 161.233, + "r_y1": 135.153, + "r_x2": 161.233, + "r_y2": 141.983, + "r_x3": 150.53, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "has", + "orig": "has", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 100, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 163.459, + "r_y0": 135.153, + "r_x1": 178.929, + "r_y1": 135.153, + "r_x2": 178.929, + "r_y2": 141.983, + "r_x3": 163.459, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "been", + "orig": "been", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 101, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.155, + "r_y0": 135.153, + "r_x1": 187.574, + "r_y1": 135.153, + "r_x2": 187.574, + "r_y2": 141.983, + "r_x3": 181.155, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 102, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 189.8, + "r_y0": 135.153, + "r_x1": 200.265, + "r_y1": 135.153, + "r_x2": 200.265, + "r_y2": 141.983, + "r_x3": 189.8, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "will", + "orig": "will", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 103, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 202.491, + "r_y0": 135.153, + "r_x1": 210.324, + "r_y1": 135.153, + "r_x2": 210.324, + "r_y2": 141.983, + "r_x3": 202.491, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "be", + "orig": "be", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 104, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.55, + "r_y0": 135.153, + "r_x1": 233.718, + "r_y1": 135.153, + "r_x2": 233.718, + "r_y2": 141.983, + "r_x3": 212.55, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "issued,", + "orig": "issued,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 105, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 235.944, + "r_y0": 135.153, + "r_x1": 247.914, + "r_y1": 135.153, + "r_x2": 247.914, + "r_y2": 141.983, + "r_x3": 235.944, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 106, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 250.14, + "r_y0": 135.153, + "r_x1": 261.592, + "r_y1": 135.153, + "r_x2": 261.592, + "r_y2": 141.983, + "r_x3": 250.14, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "that", + "orig": "that", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 107, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.818, + "r_y0": 135.153, + "r_x1": 271.252, + "r_y1": 135.153, + "r_x2": 271.252, + "r_y2": 141.983, + "r_x3": 263.818, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "all", + "orig": "all", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 108, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 125.15, + "r_x1": 82.532, + "r_y1": 125.15, + "r_x2": 82.532, + "r_y2": 131.98, + "r_x3": 50.003, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "particulars", + "orig": "particulars", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 109, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 84.758, + "r_y0": 125.15, + "r_x1": 94.789, + "r_y1": 125.15, + "r_x2": 94.789, + "r_y2": 131.98, + "r_x3": 84.758, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "are", + "orig": "are", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 110, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.015, + "r_y0": 125.15, + "r_x1": 108.523, + "r_y1": 125.15, + "r_x2": 108.523, + "r_y2": 131.98, + "r_x3": 97.015, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "true", + "orig": "true", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 111, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 110.749, + "r_y0": 125.15, + "r_x1": 122.719, + "r_y1": 125.15, + "r_x2": 122.719, + "r_y2": 131.98, + "r_x3": 110.749, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 112, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.945, + "r_y0": 125.15, + "r_x1": 148.108, + "r_y1": 125.15, + "r_x2": 148.108, + "r_y2": 131.98, + "r_x3": 124.945, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "correct.", + "orig": "correct.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 113, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.277, + "r_y0": 144.94, + "r_x1": 444.005, + "r_y1": 144.94, + "r_x2": 444.005, + "r_y2": 151.755, + "r_x3": 415.277, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "handling", + "orig": "handling", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 114, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.453, + "r_y0": 128.938, + "r_x1": 425.091, + "r_y1": 128.938, + "r_x2": 425.091, + "r_y2": 135.754, + "r_x3": 395.453, + "r_y3": 135.753, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Insurance", + "orig": "Insurance", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 115, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 427.317, + "r_y0": 128.938, + "r_x1": 443.991, + "r_y1": 128.938, + "r_x2": 443.991, + "r_y2": 135.754, + "r_x3": 427.317, + "r_y3": 135.754, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Costs", + "orig": "Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 116, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 423.74, + "r_y0": 112.936, + "r_x1": 443.998, + "r_y1": 112.936, + "r_x2": 443.998, + "r_y2": 119.752, + "r_x3": 423.74, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Assists", + "orig": "Assists", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 117, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 98.159, + "r_x1": 88.531, + "r_y1": 98.159, + "r_x2": 88.531, + "r_y2": 104.975, + "r_x3": 50.003, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "SIGNATURE", + "orig": "SIGNATURE", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 118, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.757, + "r_y0": 98.159, + "r_x1": 95.622, + "r_y1": 98.159, + "r_x2": 95.622, + "r_y2": 104.975, + "r_x3": 90.757, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 119, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.848, + "r_y0": 98.159, + "r_x1": 121.879, + "r_y1": 98.159, + "r_x2": 121.879, + "r_y2": 104.975, + "r_x3": 97.848, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "STATUS", + "orig": "STATUS", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 120, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 124.105, + "r_y0": 98.159, + "r_x1": 133.688, + "r_y1": 98.159, + "r_x2": 133.688, + "r_y2": 104.975, + "r_x3": 124.105, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "OF", + "orig": "OF", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 121, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 135.914, + "r_y0": 98.159, + "r_x1": 178.936, + "r_y1": 98.159, + "r_x2": 178.936, + "r_y2": 104.975, + "r_x3": 135.914, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "AUThORIzED", + "orig": "AUThORIzED", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 122, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 181.162, + "r_y0": 98.159, + "r_x1": 208.413, + "r_y1": 98.159, + "r_x2": 208.413, + "r_y2": 104.975, + "r_x3": 181.162, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "PERSON", + "orig": "PERSON", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 123, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.502, + "r_y0": 96.934, + "r_x1": 428.031, + "r_y1": 96.934, + "r_x2": 428.031, + "r_y2": 103.75, + "r_x3": 395.502, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Additional", + "orig": "Additional", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 124, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 430.257, + "r_y0": 96.934, + "r_x1": 443.998, + "r_y1": 96.934, + "r_x2": 443.998, + "r_y2": 103.75, + "r_x3": 430.257, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Fees", + "orig": "Fees", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 125, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.379, + "r_y0": 80.932, + "r_x1": 417.293, + "r_y1": 80.932, + "r_x2": 417.293, + "r_y2": 87.748, + "r_x3": 398.379, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Duties", + "orig": "Duties", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 126, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 419.519, + "r_y0": 80.932, + "r_x1": 424.384, + "r_y1": 80.932, + "r_x2": 424.384, + "r_y2": 87.748, + "r_x3": 419.519, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "&", + "orig": "&", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 127, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 426.61, + "r_y0": 80.932, + "r_x1": 443.998, + "r_y1": 80.932, + "r_x2": 443.998, + "r_y2": 87.748, + "r_x3": 426.61, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Taxes", + "orig": "Taxes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 128, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.01, + "r_y0": 66.155, + "r_x1": 68.602, + "r_y1": 66.155, + "r_x2": 68.602, + "r_y2": 72.971, + "r_x3": 50.01, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "PRINT", + "orig": "PRINT", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 129, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.828, + "r_y0": 66.155, + "r_x1": 92.262, + "r_y1": 66.155, + "r_x2": 92.262, + "r_y2": 72.971, + "r_x3": 70.828, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "NAME", + "orig": "NAME", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 130, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.006, + "r_y0": 66.155, + "r_x1": 265.498, + "r_y1": 66.155, + "r_x2": 265.498, + "r_y2": 72.971, + "r_x3": 249.006, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "DATE", + "orig": "DATE", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 131, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 361.258, + "r_y0": 65.128, + "r_x1": 383.931, + "r_y1": 65.128, + "r_x2": 383.931, + "r_y2": 71.746, + "r_x3": 361.258, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "total", + "orig": "total", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 132, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 386.402, + "r_y0": 65.128, + "r_x1": 417.895, + "r_y1": 65.128, + "r_x2": 417.895, + "r_y2": 71.746, + "r_x3": 386.402, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "invoice", + "orig": "invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 133, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 420.366, + "r_y0": 65.128, + "r_x1": 444.005, + "r_y1": 65.128, + "r_x2": 444.005, + "r_y2": 71.746, + "r_x3": 420.366, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "value", + "orig": "value", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 134, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 48.757, + "r_y0": 46.041, + "r_x1": 84.212, + "r_y1": 46.041, + "r_x2": 84.212, + "r_y2": 52.895, + "r_x3": 48.757, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\"Incoterms\"", + "orig": "\"Incoterms\"", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 135, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 86.585, + "r_y0": 46.041, + "r_x1": 91.142, + "r_y1": 46.041, + "r_x2": 91.142, + "r_y2": 52.895, + "r_x3": 86.585, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "is", + "orig": "is", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 136, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 93.515, + "r_y0": 46.041, + "r_x1": 97.407, + "r_y1": 46.041, + "r_x2": 97.407, + "r_y2": 52.895, + "r_x3": 93.515, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "a", + "orig": "a", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 137, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.78, + "r_y0": 46.041, + "r_x1": 131.651, + "r_y1": 46.041, + "r_x2": 131.651, + "r_y2": 52.895, + "r_x3": 99.78, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "trademark", + "orig": "trademark", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 138, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 134.024, + "r_y0": 46.041, + "r_x1": 139.939, + "r_y1": 46.041, + "r_x2": 139.939, + "r_y2": 52.895, + "r_x3": 134.024, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 139, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.312, + "r_y0": 46.041, + "r_x1": 151.538, + "r_y1": 46.041, + "r_x2": 151.538, + "r_y2": 52.895, + "r_x3": 142.312, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 140, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.911, + "r_y0": 46.041, + "r_x1": 193.146, + "r_y1": 46.041, + "r_x2": 193.146, + "r_y2": 52.895, + "r_x3": 153.911, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "International", + "orig": "International", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 141, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.519, + "r_y0": 46.041, + "r_x1": 224.058, + "r_y1": 46.041, + "r_x2": 224.058, + "r_y2": 52.895, + "r_x3": 195.519, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Chamber", + "orig": "Chamber", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 142, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 226.431, + "r_y0": 46.041, + "r_x1": 232.346, + "r_y1": 46.041, + "r_x2": 232.346, + "r_y2": 52.895, + "r_x3": 226.431, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 143, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 234.719, + "r_y0": 46.041, + "r_x1": 269.565, + "r_y1": 46.041, + "r_x2": 269.565, + "r_y2": 52.895, + "r_x3": 234.719, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Commerce.", + "orig": "Commerce.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 144, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.0, + "r_y0": 731.606, + "r_x1": 227.192, + "r_y1": 731.606, + "r_x2": 227.192, + "r_y2": 754.296, + "r_x3": 50.0, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "commercial", + "orig": "commercial", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 145, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.824, + "r_y0": 731.606, + "r_x1": 348.944, + "r_y1": 731.606, + "r_x2": 348.944, + "r_y2": 754.296, + "r_x3": 237.824, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "invoice", + "orig": "invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 146, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 196.895, + "r_x1": 67.561, + "r_y1": 196.895, + "r_x2": 67.561, + "r_y2": 202.534, + "r_x3": 50.887, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "These", + "orig": "These", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 147, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.229, + "r_y0": 196.895, + "r_x1": 83.563, + "r_y1": 196.895, + "r_x2": 83.563, + "r_y2": 202.534, + "r_x3": 69.229, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "items", + "orig": "items", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 148, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.231, + "r_y0": 196.895, + "r_x1": 93.901, + "r_y1": 196.895, + "r_x2": 93.901, + "r_y2": 202.534, + "r_x3": 85.231, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "are", + "orig": "are", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 149, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 95.569, + "r_y0": 196.895, + "r_x1": 121.579, + "r_y1": 196.895, + "r_x2": 121.579, + "r_y2": 202.534, + "r_x3": 95.569, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "controlled", + "orig": "controlled", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 150, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 123.247, + "r_y0": 196.895, + "r_x1": 129.583, + "r_y1": 196.895, + "r_x2": 129.583, + "r_y2": 202.534, + "r_x3": 123.247, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "by", + "orig": "by", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 151, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 131.251, + "r_y0": 196.895, + "r_x1": 139.591, + "r_y1": 196.895, + "r_x2": 139.591, + "r_y2": 202.534, + "r_x3": 131.251, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 152, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.259, + "r_y0": 196.895, + "r_x1": 152.943, + "r_y1": 196.895, + "r_x2": 152.943, + "r_y2": 202.534, + "r_x3": 141.259, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U.S.", + "orig": "U.S.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 153, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 154.611, + "r_y0": 196.895, + "r_x1": 186.291, + "r_y1": 196.895, + "r_x2": 186.291, + "r_y2": 202.534, + "r_x3": 154.611, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "government", + "orig": "government", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 154, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 187.959, + "r_y0": 196.895, + "r_x1": 197.967, + "r_y1": 196.895, + "r_x2": 197.967, + "r_y2": 202.534, + "r_x3": 187.959, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 155, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 199.635, + "r_y0": 196.895, + "r_x1": 227.649, + "r_y1": 196.895, + "r_x2": 227.649, + "r_y2": 202.534, + "r_x3": 199.635, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "authorized", + "orig": "authorized", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 156, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.317, + "r_y0": 196.895, + "r_x1": 236.319, + "r_y1": 196.895, + "r_x2": 236.319, + "r_y2": 202.534, + "r_x3": 229.317, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "for", + "orig": "for", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 157, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.987, + "r_y0": 196.895, + "r_x1": 254.661, + "r_y1": 196.895, + "r_x2": 254.661, + "r_y2": 202.534, + "r_x3": 237.987, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "export", + "orig": "export", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 158, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.342, + "r_y0": 196.895, + "r_x1": 267.346, + "r_y1": 196.895, + "r_x2": 267.346, + "r_y2": 202.534, + "r_x3": 256.342, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "only", + "orig": "only", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 159, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.014, + "r_y0": 196.895, + "r_x1": 274.018, + "r_y1": 196.895, + "r_x2": 274.018, + "r_y2": 202.534, + "r_x3": 269.014, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "to", + "orig": "to", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 160, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 275.686, + "r_y0": 196.895, + "r_x1": 284.026, + "r_y1": 196.895, + "r_x2": 284.026, + "r_y2": 202.534, + "r_x3": 275.686, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 161, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 189.696, + "r_x1": 70.561, + "r_y1": 189.696, + "r_x2": 70.561, + "r_y2": 195.334, + "r_x3": 50.887, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "country", + "orig": "country", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 162, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.229, + "r_y0": 189.696, + "r_x1": 77.233, + "r_y1": 189.696, + "r_x2": 77.233, + "r_y2": 195.334, + "r_x3": 72.229, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 163, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 78.901, + "r_y0": 189.696, + "r_x1": 99.907, + "r_y1": 189.696, + "r_x2": 99.907, + "r_y2": 195.334, + "r_x3": 78.901, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 164, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 101.575, + "r_y0": 189.696, + "r_x1": 130.591, + "r_y1": 189.696, + "r_x2": 130.591, + "r_y2": 195.334, + "r_x3": 101.575, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "destination", + "orig": "destination", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 165, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.259, + "r_y0": 189.696, + "r_x1": 139.261, + "r_y1": 189.696, + "r_x2": 139.261, + "r_y2": 195.334, + "r_x3": 132.259, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "for", + "orig": "for", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 166, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 140.929, + "r_y0": 189.696, + "r_x1": 150.601, + "r_y1": 189.696, + "r_x2": 150.601, + "r_y2": 195.334, + "r_x3": 140.929, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "use", + "orig": "use", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 167, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.269, + "r_y0": 189.696, + "r_x1": 158.605, + "r_y1": 189.696, + "r_x2": 158.605, + "r_y2": 195.334, + "r_x3": 152.269, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "by", + "orig": "by", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 168, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.273, + "r_y0": 189.696, + "r_x1": 168.613, + "r_y1": 189.696, + "r_x2": 168.613, + "r_y2": 195.334, + "r_x3": 160.273, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 169, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.281, + "r_y0": 189.696, + "r_x1": 191.287, + "r_y1": 189.696, + "r_x2": 191.287, + "r_y2": 195.334, + "r_x3": 170.281, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 170, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.955, + "r_y0": 189.696, + "r_x1": 220.303, + "r_y1": 189.696, + "r_x2": 220.303, + "r_y2": 195.334, + "r_x3": 192.955, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "consignee", + "orig": "consignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 171, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.998, + "r_y0": 189.696, + "r_x1": 227.332, + "r_y1": 189.696, + "r_x2": 227.332, + "r_y2": 195.334, + "r_x3": 221.998, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 172, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 229.0, + "r_y0": 189.696, + "r_x1": 259.672, + "r_y1": 189.696, + "r_x2": 259.672, + "r_y2": 195.334, + "r_x3": 229.0, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "end-user(s)", + "orig": "end-user(s)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 173, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.34, + "r_y0": 189.696, + "r_x1": 278.014, + "r_y1": 189.696, + "r_x2": 278.014, + "r_y2": 195.334, + "r_x3": 261.34, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "herein", + "orig": "herein", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 174, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 182.496, + "r_x1": 76.567, + "r_y1": 182.496, + "r_x2": 76.567, + "r_y2": 188.134, + "r_x3": 50.887, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "identified.", + "orig": "identified.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 175, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.903, + "r_y0": 182.496, + "r_x1": 93.241, + "r_y1": 182.496, + "r_x2": 93.241, + "r_y2": 188.134, + "r_x3": 79.903, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "They", + "orig": "They", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 176, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 94.909, + "r_y0": 182.496, + "r_x1": 106.243, + "r_y1": 182.496, + "r_x2": 106.243, + "r_y2": 188.134, + "r_x3": 94.909, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "may", + "orig": "may", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 177, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.911, + "r_y0": 182.496, + "r_x1": 116.251, + "r_y1": 182.496, + "r_x2": 116.251, + "r_y2": 188.134, + "r_x3": 107.911, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "not", + "orig": "not", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 178, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.919, + "r_y0": 182.496, + "r_x1": 124.591, + "r_y1": 182.496, + "r_x2": 124.591, + "r_y2": 188.134, + "r_x3": 117.919, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "be", + "orig": "be", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 179, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 126.259, + "r_y0": 182.496, + "r_x1": 144.265, + "r_y1": 182.496, + "r_x2": 144.265, + "r_y2": 188.134, + "r_x3": 126.259, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "resold,", + "orig": "resold,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 180, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.933, + "r_y0": 182.496, + "r_x1": 176.611, + "r_y1": 182.496, + "r_x2": 176.611, + "r_y2": 188.134, + "r_x3": 145.933, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "transferred,", + "orig": "transferred,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 181, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 178.279, + "r_y0": 182.496, + "r_x1": 183.613, + "r_y1": 182.496, + "r_x2": 183.613, + "r_y2": 188.134, + "r_x3": 178.279, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 182, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.281, + "r_y0": 182.496, + "r_x1": 210.955, + "r_y1": 182.496, + "r_x2": 210.955, + "r_y2": 188.134, + "r_x3": 185.281, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "otherwise", + "orig": "otherwise", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 183, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 212.623, + "r_y0": 182.496, + "r_x1": 236.635, + "r_y1": 182.496, + "r_x2": 236.635, + "r_y2": 188.134, + "r_x3": 212.623, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "disposed", + "orig": "disposed", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 184, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 238.303, + "r_y0": 182.496, + "r_x1": 244.975, + "r_y1": 182.496, + "r_x2": 244.975, + "r_y2": 188.134, + "r_x3": 238.303, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of,", + "orig": "of,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 185, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 246.643, + "r_y0": 182.496, + "r_x1": 251.647, + "r_y1": 182.496, + "r_x2": 251.647, + "r_y2": 188.134, + "r_x3": 246.643, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "to", + "orig": "to", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 186, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.315, + "r_y0": 182.496, + "r_x1": 262.987, + "r_y1": 182.496, + "r_x2": 262.987, + "r_y2": 188.134, + "r_x3": 253.315, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "any", + "orig": "any", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 187, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 264.655, + "r_y0": 182.496, + "r_x1": 278.329, + "r_y1": 182.496, + "r_x2": 278.329, + "r_y2": 188.134, + "r_x3": 264.655, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "other", + "orig": "other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 188, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 175.296, + "r_x1": 70.561, + "r_y1": 175.296, + "r_x2": 70.561, + "r_y2": 180.934, + "r_x3": 50.887, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "country", + "orig": "country", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 189, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.229, + "r_y0": 175.296, + "r_x1": 77.563, + "r_y1": 175.296, + "r_x2": 77.563, + "r_y2": 180.934, + "r_x3": 72.229, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 190, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 79.231, + "r_y0": 175.296, + "r_x1": 84.235, + "r_y1": 175.296, + "r_x2": 84.235, + "r_y2": 180.934, + "r_x3": 79.231, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "to", + "orig": "to", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 191, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.903, + "r_y0": 175.296, + "r_x1": 95.575, + "r_y1": 175.296, + "r_x2": 95.575, + "r_y2": 180.934, + "r_x3": 85.903, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "any", + "orig": "any", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 192, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 97.243, + "r_y0": 175.296, + "r_x1": 115.585, + "r_y1": 175.296, + "r_x2": 115.585, + "r_y2": 180.934, + "r_x3": 97.243, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "person", + "orig": "person", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 193, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 117.253, + "r_y0": 175.296, + "r_x1": 130.927, + "r_y1": 175.296, + "r_x2": 130.927, + "r_y2": 180.934, + "r_x3": 117.253, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "other", + "orig": "other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 194, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 132.595, + "r_y0": 175.296, + "r_x1": 144.271, + "r_y1": 175.296, + "r_x2": 144.271, + "r_y2": 180.934, + "r_x3": 132.595, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "than", + "orig": "than", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 195, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.939, + "r_y0": 175.296, + "r_x1": 154.279, + "r_y1": 175.296, + "r_x2": 154.279, + "r_y2": 180.934, + "r_x3": 145.939, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 196, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 155.947, + "r_y0": 175.296, + "r_x1": 183.961, + "r_y1": 175.296, + "r_x2": 183.961, + "r_y2": 180.934, + "r_x3": 155.947, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "authorized", + "orig": "authorized", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 197, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.629, + "r_y0": 175.296, + "r_x1": 206.635, + "r_y1": 175.296, + "r_x2": 206.635, + "r_y2": 180.934, + "r_x3": 185.629, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 198, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.303, + "r_y0": 175.296, + "r_x1": 235.651, + "r_y1": 175.296, + "r_x2": 235.651, + "r_y2": 180.934, + "r_x3": 208.303, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "consignee", + "orig": "consignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 199, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 237.319, + "r_y0": 175.296, + "r_x1": 242.653, + "r_y1": 175.296, + "r_x2": 242.653, + "r_y2": 180.934, + "r_x3": 237.319, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 200, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 244.321, + "r_y0": 175.296, + "r_x1": 276.679, + "r_y1": 175.296, + "r_x2": 276.679, + "r_y2": 180.934, + "r_x3": 244.321, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "end-user(s),", + "orig": "end-user(s),", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 201, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 278.366, + "r_y0": 175.296, + "r_x1": 293.372, + "r_y1": 175.296, + "r_x2": 293.372, + "r_y2": 180.934, + "r_x3": 278.366, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "either", + "orig": "either", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 202, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 168.096, + "r_x1": 55.555, + "r_y1": 168.096, + "r_x2": 55.555, + "r_y2": 173.734, + "r_x3": 50.887, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "in", + "orig": "in", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 203, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 57.223, + "r_y0": 168.096, + "r_x1": 68.893, + "r_y1": 168.096, + "r_x2": 68.893, + "r_y2": 173.734, + "r_x3": 57.223, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "their", + "orig": "their", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 204, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 70.561, + "r_y0": 168.096, + "r_x1": 89.899, + "r_y1": 168.096, + "r_x2": 89.899, + "r_y2": 173.734, + "r_x3": 70.561, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "original", + "orig": "original", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 205, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.567, + "r_y0": 168.096, + "r_x1": 103.567, + "r_y1": 168.096, + "r_x2": 103.567, + "r_y2": 173.734, + "r_x3": 91.567, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "form", + "orig": "form", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 206, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 105.235, + "r_y0": 168.096, + "r_x1": 110.569, + "r_y1": 168.096, + "r_x2": 110.569, + "r_y2": 173.734, + "r_x3": 105.235, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 207, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.237, + "r_y0": 168.096, + "r_x1": 124.243, + "r_y1": 168.096, + "r_x2": 124.243, + "r_y2": 173.734, + "r_x3": 112.237, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "after", + "orig": "after", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 208, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 125.911, + "r_y0": 168.096, + "r_x1": 140.587, + "r_y1": 168.096, + "r_x2": 140.587, + "r_y2": 173.734, + "r_x3": 125.911, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "being", + "orig": "being", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 209, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 142.255, + "r_y0": 168.096, + "r_x1": 175.603, + "r_y1": 168.096, + "r_x2": 175.603, + "r_y2": 173.734, + "r_x3": 142.255, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "incorporated", + "orig": "incorporated", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 210, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 177.271, + "r_y0": 168.096, + "r_x1": 186.943, + "r_y1": 168.096, + "r_x2": 186.943, + "r_y2": 173.734, + "r_x3": 177.271, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "into", + "orig": "into", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 211, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.611, + "r_y0": 168.096, + "r_x1": 202.285, + "r_y1": 168.096, + "r_x2": 202.285, + "r_y2": 173.734, + "r_x3": 188.611, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "other", + "orig": "other", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 212, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 203.953, + "r_y0": 168.096, + "r_x1": 219.955, + "r_y1": 168.096, + "r_x2": 219.955, + "r_y2": 173.734, + "r_x3": 203.953, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "items,", + "orig": "items,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 213, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.623, + "r_y0": 168.096, + "r_x1": 240.631, + "r_y1": 168.096, + "r_x2": 240.631, + "r_y2": 173.734, + "r_x3": 221.623, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "without", + "orig": "without", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 214, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 242.299, + "r_y0": 168.096, + "r_x1": 251.965, + "r_y1": 168.096, + "r_x2": 251.965, + "r_y2": 173.734, + "r_x3": 242.299, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "first", + "orig": "first", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 215, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 253.633, + "r_y0": 168.096, + "r_x1": 277.981, + "r_y1": 168.096, + "r_x2": 277.981, + "r_y2": 173.734, + "r_x3": 253.633, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "obtaining", + "orig": "obtaining", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 216, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 160.896, + "r_x1": 73.897, + "r_y1": 160.896, + "r_x2": 73.897, + "r_y2": 166.534, + "r_x3": 50.887, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "approval", + "orig": "approval", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 217, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 75.565, + "r_y0": 160.896, + "r_x1": 87.565, + "r_y1": 160.896, + "r_x2": 87.565, + "r_y2": 166.534, + "r_x3": 75.565, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "from", + "orig": "from", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 218, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 89.233, + "r_y0": 160.896, + "r_x1": 97.573, + "r_y1": 160.896, + "r_x2": 97.573, + "r_y2": 166.534, + "r_x3": 89.233, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "the", + "orig": "the", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 219, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 99.241, + "r_y0": 160.896, + "r_x1": 110.911, + "r_y1": 160.896, + "r_x2": 110.911, + "r_y2": 166.534, + "r_x3": 99.241, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U.S.", + "orig": "U.S.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 220, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 112.579, + "r_y0": 160.896, + "r_x1": 144.259, + "r_y1": 160.896, + "r_x2": 144.259, + "r_y2": 166.534, + "r_x3": 112.579, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "government", + "orig": "government", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 221, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 145.927, + "r_y0": 160.896, + "r_x1": 151.261, + "r_y1": 160.896, + "r_x2": 151.261, + "r_y2": 166.534, + "r_x3": 145.927, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "or", + "orig": "or", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 222, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 152.929, + "r_y0": 160.896, + "r_x1": 159.265, + "r_y1": 160.896, + "r_x2": 159.265, + "r_y2": 166.534, + "r_x3": 152.929, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "as", + "orig": "as", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 223, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.933, + "r_y0": 160.896, + "r_x1": 186.607, + "r_y1": 160.896, + "r_x2": 186.607, + "r_y2": 166.534, + "r_x3": 160.933, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "otherwise", + "orig": "otherwise", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 224, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 188.275, + "r_y0": 160.896, + "r_x1": 216.289, + "r_y1": 160.896, + "r_x2": 216.289, + "r_y2": 166.534, + "r_x3": 188.275, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "authorized", + "orig": "authorized", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 225, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 217.957, + "r_y0": 160.896, + "r_x1": 224.293, + "r_y1": 160.896, + "r_x2": 224.293, + "r_y2": 166.534, + "r_x3": 217.957, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "by", + "orig": "by", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 226, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.961, + "r_y0": 160.896, + "r_x1": 237.631, + "r_y1": 160.896, + "r_x2": 237.631, + "r_y2": 166.534, + "r_x3": 225.961, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "U.S.", + "orig": "U.S.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 227, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.299, + "r_y0": 160.896, + "r_x1": 248.299, + "r_y1": 160.896, + "r_x2": 248.299, + "r_y2": 166.534, + "r_x3": 239.299, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "law", + "orig": "law", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 228, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.967, + "r_y0": 160.896, + "r_x1": 259.975, + "r_y1": 160.896, + "r_x2": 259.975, + "r_y2": 166.534, + "r_x3": 249.967, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 229, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 261.643, + "r_y0": 160.896, + "r_x1": 292.678, + "r_y1": 160.895, + "r_x2": 292.678, + "r_y2": 166.534, + "r_x3": 261.643, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "regulations.", + "orig": "regulations.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 230, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 510.119, + "r_x1": 78.108, + "r_y1": 510.119, + "r_x2": 78.108, + "r_y2": 516.697, + "r_x3": 53.601, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Country", + "orig": "Country", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 231, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 80.054, + "r_y0": 510.119, + "r_x1": 85.892, + "r_y1": 510.119, + "r_x2": 85.892, + "r_y2": 516.697, + "r_x3": 80.054, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of", + "orig": "of", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 232, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 87.838, + "r_y0": 510.119, + "r_x1": 113.507, + "r_y1": 510.119, + "r_x2": 113.507, + "r_y2": 516.697, + "r_x3": 87.838, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Ultimate", + "orig": "Ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 233, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 501.719, + "r_x1": 88.615, + "r_y1": 501.719, + "r_x2": 88.615, + "r_y2": 508.297, + "r_x3": 53.601, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Destination", + "orig": "Destination", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 234, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.265, + "r_y0": 693.036, + "r_x1": 100.293, + "r_y1": 693.036, + "r_x2": 100.293, + "r_y2": 701.361, + "r_x3": 65.265, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01/20/20", + "orig": "01/20/20", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 235, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.469, + "r_y0": 693.036, + "r_x1": 175.481, + "r_y1": 693.036, + "r_x2": 175.481, + "r_y2": 701.361, + "r_x3": 160.469, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "002", + "orig": "002", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 236, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.878, + "r_y0": 693.036, + "r_x1": 287.902, + "r_y1": 693.036, + "r_x2": 287.902, + "r_y2": 701.361, + "r_x3": 257.878, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "882991", + "orig": "882991", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 237, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 442.715, + "r_y0": 693.036, + "r_x1": 445.712, + "r_y1": 693.036, + "r_x2": 445.712, + "r_y2": 701.361, + "r_x3": 442.715, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 238, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 659.697, + "r_x1": 206.383, + "r_y1": 659.697, + "r_x2": 206.383, + "r_y2": 668.023, + "r_x3": 170.869, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Goodwin", + "orig": "Goodwin", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 239, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.885, + "r_y0": 659.697, + "r_x1": 233.896, + "r_y1": 659.697, + "r_x2": 233.896, + "r_y2": 668.023, + "r_x3": 208.885, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Group", + "orig": "Group", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 240, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 640.298, + "r_x1": 190.885, + "r_y1": 640.298, + "r_x2": 190.885, + "r_y2": 648.623, + "r_x3": 170.869, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9189", + "orig": "9189", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 241, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 640.298, + "r_x1": 230.395, + "r_y1": 640.298, + "r_x2": 230.395, + "r_y2": 648.623, + "r_x3": 193.387, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Elmwood", + "orig": "Elmwood", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 242, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.897, + "r_y0": 640.298, + "r_x1": 243.904, + "r_y1": 640.298, + "r_x2": 243.904, + "r_y2": 648.623, + "r_x3": 232.897, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "St.", + "orig": "St.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 243, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 246.406, + "r_y0": 640.298, + "r_x1": 272.416, + "r_y1": 640.298, + "r_x2": 272.416, + "r_y2": 648.623, + "r_x3": 246.406, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Bronx,", + "orig": "Bronx,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 244, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 274.918, + "r_y0": 640.298, + "r_x1": 287.419, + "r_y1": 640.298, + "r_x2": 287.419, + "r_y2": 648.623, + "r_x3": 274.918, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "NY", + "orig": "NY", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 245, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 289.921, + "r_y0": 640.298, + "r_x1": 314.941, + "r_y1": 640.298, + "r_x2": 314.941, + "r_y2": 648.623, + "r_x3": 289.921, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10465", + "orig": "10465", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 246, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 619.952, + "r_x1": 203.881, + "r_y1": 619.952, + "r_x2": 203.881, + "r_y2": 628.278, + "r_x3": 170.869, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Kerluke,", + "orig": "Kerluke,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 247, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.383, + "r_y0": 619.952, + "r_x1": 229.891, + "r_y1": 619.952, + "r_x2": 229.891, + "r_y2": 628.278, + "r_x3": 206.383, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Veum", + "orig": "Veum", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 248, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.393, + "r_y0": 619.952, + "r_x1": 247.405, + "r_y1": 619.952, + "r_x2": 247.405, + "r_y2": 628.278, + "r_x3": 232.393, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 249, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.907, + "r_y0": 619.952, + "r_x1": 268.402, + "r_y1": 619.952, + "r_x2": 268.402, + "r_y2": 628.278, + "r_x3": 249.907, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Crist", + "orig": "Crist", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 250, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 599.553, + "r_x1": 190.885, + "r_y1": 599.553, + "r_x2": 190.885, + "r_y2": 607.878, + "r_x3": 170.869, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1499", + "orig": "1499", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 251, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 599.553, + "r_x1": 222.889, + "r_y1": 599.553, + "r_x2": 222.889, + "r_y2": 607.878, + "r_x3": 193.387, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "WCole", + "orig": "WCole", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 252, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.391, + "r_y0": 599.553, + "r_x1": 236.893, + "r_y1": 599.553, + "r_x2": 236.893, + "r_y2": 607.878, + "r_x3": 225.391, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Rd", + "orig": "Rd", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 253, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.395, + "r_y0": 599.553, + "r_x1": 275.404, + "r_y1": 599.553, + "r_x2": 275.404, + "r_y2": 607.878, + "r_x3": 239.395, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Fremont,", + "orig": "Fremont,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 254, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.906, + "r_y0": 599.553, + "r_x1": 318.91, + "r_y1": 599.553, + "r_x2": 318.91, + "r_y2": 607.878, + "r_x3": 277.906, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Ohio(OH),", + "orig": "Ohio(OH),", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 255, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 321.412, + "r_y0": 599.553, + "r_x1": 346.432, + "r_y1": 599.553, + "r_x2": 346.432, + "r_y2": 607.878, + "r_x3": 321.412, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "43420", + "orig": "43420", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 256, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 559.261, + "r_x1": 203.881, + "r_y1": 559.261, + "r_x2": 203.881, + "r_y2": 567.587, + "r_x3": 170.869, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Kerluke,", + "orig": "Kerluke,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 257, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.383, + "r_y0": 559.261, + "r_x1": 229.891, + "r_y1": 559.261, + "r_x2": 229.891, + "r_y2": 567.587, + "r_x3": 206.383, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Veum", + "orig": "Veum", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 258, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 232.393, + "r_y0": 559.261, + "r_x1": 247.405, + "r_y1": 559.261, + "r_x2": 247.405, + "r_y2": 567.587, + "r_x3": 232.393, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 259, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.907, + "r_y0": 559.261, + "r_x1": 268.402, + "r_y1": 559.261, + "r_x2": 268.402, + "r_y2": 567.587, + "r_x3": 249.907, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Crist", + "orig": "Crist", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 260, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 539.988, + "r_x1": 190.885, + "r_y1": 539.988, + "r_x2": 190.885, + "r_y2": 548.313, + "r_x3": 170.869, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1499", + "orig": "1499", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 261, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 193.387, + "r_y0": 539.988, + "r_x1": 222.889, + "r_y1": 539.988, + "r_x2": 222.889, + "r_y2": 548.313, + "r_x3": 193.387, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "WCole", + "orig": "WCole", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 262, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.391, + "r_y0": 539.988, + "r_x1": 236.893, + "r_y1": 539.988, + "r_x2": 236.893, + "r_y2": 548.313, + "r_x3": 225.391, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Rd", + "orig": "Rd", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 263, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 239.395, + "r_y0": 539.988, + "r_x1": 275.404, + "r_y1": 539.988, + "r_x2": 275.404, + "r_y2": 548.313, + "r_x3": 239.395, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Fremont,", + "orig": "Fremont,", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 264, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.906, + "r_y0": 539.988, + "r_x1": 318.91, + "r_y1": 539.988, + "r_x2": 318.91, + "r_y2": 548.313, + "r_x3": 277.906, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Ohio(OH),", + "orig": "Ohio(OH),", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 265, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 321.412, + "r_y0": 539.988, + "r_x1": 346.432, + "r_y1": 539.988, + "r_x2": 346.432, + "r_y2": 548.313, + "r_x3": 321.412, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "43420", + "orig": "43420", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 266, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 521.154, + "r_x1": 156.166, + "r_y1": 521.154, + "r_x2": 156.166, + "r_y2": 529.48, + "r_x3": 138.166, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "New", + "orig": "New", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 267, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 158.668, + "r_y0": 521.154, + "r_x1": 177.172, + "r_y1": 521.154, + "r_x2": 177.172, + "r_y2": 529.48, + "r_x3": 158.668, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "York", + "orig": "York", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 268, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 179.674, + "r_y0": 521.154, + "r_x1": 207.178, + "r_y1": 521.154, + "r_x2": 207.178, + "r_y2": 529.48, + "r_x3": 179.674, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Harbor", + "orig": "Harbor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 269, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 505.901, + "r_x1": 156.67, + "r_y1": 505.901, + "r_x2": 156.67, + "r_y2": 514.226, + "r_x3": 138.166, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 270, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 489.904, + "r_x1": 190.672, + "r_y1": 489.904, + "r_x2": 190.672, + "r_y2": 498.228, + "r_x3": 138.166, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Hintz-Raynor", + "orig": "Hintz-Raynor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 271, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 442.468, + "r_x1": 173.68, + "r_y1": 442.468, + "r_x2": 173.68, + "r_y2": 450.793, + "r_x3": 138.166, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Payment", + "orig": "Payment", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 272, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.182, + "r_y0": 442.468, + "r_x1": 183.184, + "r_y1": 442.468, + "r_x2": 183.184, + "r_y2": 450.793, + "r_x3": 176.182, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "in", + "orig": "in", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 273, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 185.686, + "r_y0": 442.468, + "r_x1": 220.705, + "r_y1": 442.468, + "r_x2": 220.705, + "r_y2": 450.793, + "r_x3": 185.686, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Advance", + "orig": "Advance", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 274, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 426.33, + "r_x1": 150.667, + "r_y1": 426.33, + "r_x2": 150.667, + "r_y2": 434.655, + "r_x3": 138.166, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "US", + "orig": "US", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 275, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.169, + "r_y0": 426.33, + "r_x1": 189.178, + "r_y1": 426.33, + "r_x2": 189.178, + "r_y2": 434.655, + "r_x3": 153.169, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "DOLLAR", + "orig": "DOLLAR", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 276, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 521.154, + "r_x1": 411.0, + "r_y1": 521.154, + "r_x2": 411.0, + "r_y2": 529.48, + "r_x3": 395.988, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "100", + "orig": "100", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 277, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 505.901, + "r_x1": 430.008, + "r_y1": 505.901, + "r_x2": 430.008, + "r_y2": 514.226, + "r_x3": 395.988, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8600kgs", + "orig": "8600kgs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 278, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 489.904, + "r_x1": 423.51, + "r_y1": 489.904, + "r_x2": 423.51, + "r_y2": 498.228, + "r_x3": 395.988, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "170.29", + "orig": "170.29", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 279, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 376.083, + "r_x1": 83.006, + "r_y1": 376.083, + "r_x2": 83.006, + "r_y2": 384.408, + "r_x3": 52.001, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original", + "orig": "Original", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 280, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 376.083, + "r_x1": 112.022, + "r_y1": 376.083, + "r_x2": 112.022, + "r_y2": 384.408, + "r_x3": 85.508, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Honda", + "orig": "Honda", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 281, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 376.083, + "r_x1": 138.527, + "r_y1": 376.083, + "r_x2": 138.527, + "r_y2": 384.408, + "r_x3": 114.524, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cover", + "orig": "Cover", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 282, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 376.083, + "r_x1": 154.538, + "r_y1": 376.083, + "r_x2": 154.538, + "r_y2": 384.408, + "r_x3": 141.029, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Set", + "orig": "Set", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 283, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.04, + "r_y0": 376.083, + "r_x1": 172.052, + "r_y1": 376.083, + "r_x2": 172.052, + "r_y2": 384.408, + "r_x3": 157.04, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Left", + "orig": "Left", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 284, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.554, + "r_y0": 376.083, + "r_x1": 189.566, + "r_y1": 376.083, + "r_x2": 189.566, + "r_y2": 384.408, + "r_x3": 174.554, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 285, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.068, + "r_y0": 376.083, + "r_x1": 213.074, + "r_y1": 376.083, + "r_x2": 213.074, + "r_y2": 384.408, + "r_x3": 192.068, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Right", + "orig": "Right", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 286, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.576, + "r_y0": 376.083, + "r_x1": 229.076, + "r_y1": 376.083, + "r_x2": 229.076, + "r_y2": 384.408, + "r_x3": 215.576, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "For", + "orig": "For", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 287, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.578, + "r_y0": 376.083, + "r_x1": 251.576, + "r_y1": 376.083, + "r_x2": 251.576, + "r_y2": 384.408, + "r_x3": 231.578, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "XRM", + "orig": "XRM", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 288, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.078, + "r_y0": 376.083, + "r_x1": 269.09, + "r_y1": 376.083, + "r_x2": 269.09, + "r_y2": 384.408, + "r_x3": 254.078, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "110", + "orig": "110", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 289, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.592, + "r_y0": 376.083, + "r_x1": 295.604, + "r_y1": 376.083, + "r_x2": 295.604, + "r_y2": 384.408, + "r_x3": 271.592, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u0152Red", + "orig": "\u0152Red", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 290, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 373.672, + "r_x1": 357.241, + "r_y1": 373.672, + "r_x2": 357.241, + "r_y2": 381.997, + "r_x3": 338.738, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 291, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 373.672, + "r_x1": 424.175, + "r_y1": 373.672, + "r_x2": 424.175, + "r_y2": 381.997, + "r_x3": 414.167, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10", + "orig": "10", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 292, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 373.728, + "r_x1": 500.644, + "r_y1": 373.728, + "r_x2": 500.644, + "r_y2": 382.053, + "r_x3": 468.118, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$333.21", + "orig": "$333.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 293, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 373.728, + "r_x1": 557.852, + "r_y1": 373.728, + "r_x2": 557.852, + "r_y2": 382.053, + "r_x3": 517.82, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$3,332.01", + "orig": "$3,332.01", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 294, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 340.151, + "r_x1": 83.006, + "r_y1": 340.151, + "r_x2": 83.006, + "r_y2": 348.476, + "r_x3": 52.001, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original", + "orig": "Original", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 295, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 340.151, + "r_x1": 112.022, + "r_y1": 340.151, + "r_x2": 112.022, + "r_y2": 348.476, + "r_x3": 85.508, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Honda", + "orig": "Honda", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 296, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 340.151, + "r_x1": 138.527, + "r_y1": 340.151, + "r_x2": 138.527, + "r_y2": 348.476, + "r_x3": 114.524, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cover", + "orig": "Cover", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 297, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 340.151, + "r_x1": 169.541, + "r_y1": 340.151, + "r_x2": 169.541, + "r_y2": 348.476, + "r_x3": 141.029, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Handle", + "orig": "Handle", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 298, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 172.043, + "r_y0": 340.151, + "r_x1": 193.049, + "r_y1": 340.151, + "r_x2": 193.049, + "r_y2": 348.476, + "r_x3": 172.043, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Front", + "orig": "Front", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 299, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.551, + "r_y0": 340.151, + "r_x1": 216.044, + "r_y1": 340.151, + "r_x2": 216.044, + "r_y2": 348.476, + "r_x3": 195.551, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(Disk", + "orig": "(Disk", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 300, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 218.546, + "r_y0": 340.151, + "r_x1": 245.051, + "r_y1": 340.151, + "r_x2": 245.051, + "r_y2": 348.476, + "r_x3": 218.546, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Brake)", + "orig": "Brake)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 301, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 247.553, + "r_y0": 340.151, + "r_x1": 261.053, + "r_y1": 340.151, + "r_x2": 261.053, + "r_y2": 348.476, + "r_x3": 247.553, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "For", + "orig": "For", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 302, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 263.555, + "r_y0": 340.151, + "r_x1": 282.068, + "r_y1": 340.151, + "r_x2": 282.068, + "r_y2": 348.476, + "r_x3": 263.555, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Beat", + "orig": "Beat", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 303, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 331.826, + "r_x1": 71.504, + "r_y1": 331.826, + "r_x2": 71.504, + "r_y2": 340.151, + "r_x3": 52.001, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Carb", + "orig": "Carb", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 304, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 74.006, + "r_y0": 331.826, + "r_x1": 104.516, + "r_y1": 331.826, + "r_x2": 104.516, + "r_y2": 340.151, + "r_x3": 74.006, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Version", + "orig": "Version", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 305, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 107.018, + "r_y0": 331.826, + "r_x1": 112.022, + "r_y1": 331.826, + "r_x2": 112.022, + "r_y2": 340.151, + "r_x3": 107.018, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1", + "orig": "1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 306, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 339.852, + "r_x1": 357.241, + "r_y1": 339.852, + "r_x2": 357.241, + "r_y2": 348.177, + "r_x3": 338.738, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 307, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 339.852, + "r_x1": 424.175, + "r_y1": 339.852, + "r_x2": 424.175, + "r_y2": 348.177, + "r_x3": 414.167, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12", + "orig": "12", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 308, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 339.796, + "r_x1": 500.644, + "r_y1": 339.796, + "r_x2": 500.644, + "r_y2": 348.121, + "r_x3": 468.118, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$282.92", + "orig": "$282.92", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 309, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 339.796, + "r_x1": 557.852, + "r_y1": 339.796, + "r_x2": 557.852, + "r_y2": 348.121, + "r_x3": 517.82, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$3,395.04", + "orig": "$3,395.04", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 310, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 304.22, + "r_x1": 83.006, + "r_y1": 304.22, + "r_x2": 83.006, + "r_y2": 312.545, + "r_x3": 52.001, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original", + "orig": "Original", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 311, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 304.22, + "r_x1": 112.022, + "r_y1": 304.22, + "r_x2": 112.022, + "r_y2": 312.545, + "r_x3": 85.508, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Honda", + "orig": "Honda", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 312, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 304.22, + "r_x1": 134.522, + "r_y1": 304.22, + "r_x2": 134.522, + "r_y2": 312.545, + "r_x3": 114.524, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cowl", + "orig": "Cowl", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 313, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 137.024, + "r_y0": 304.22, + "r_x1": 161.531, + "r_y1": 304.22, + "r_x2": 161.531, + "r_y2": 312.545, + "r_x3": 137.024, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Under", + "orig": "Under", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 314, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 164.033, + "r_y0": 304.22, + "r_x1": 195.047, + "r_y1": 304.22, + "r_x2": 195.047, + "r_y2": 312.545, + "r_x3": 164.033, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "(Engine", + "orig": "(Engine", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 315, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 197.549, + "r_y0": 304.22, + "r_x1": 224.549, + "r_y1": 304.22, + "r_x2": 224.549, + "r_y2": 312.545, + "r_x3": 197.549, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cover)", + "orig": "Cover)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 316, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 227.051, + "r_y0": 304.22, + "r_x1": 240.551, + "r_y1": 304.22, + "r_x2": 240.551, + "r_y2": 312.545, + "r_x3": 227.051, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "For", + "orig": "For", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 317, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 243.053, + "r_y0": 304.22, + "r_x1": 254.051, + "r_y1": 304.22, + "r_x2": 254.051, + "r_y2": 312.545, + "r_x3": 243.053, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Rs", + "orig": "Rs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 318, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.553, + "r_y0": 304.22, + "r_x1": 283.067, + "r_y1": 304.22, + "r_x2": 283.067, + "r_y2": 312.545, + "r_x3": 256.553, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "125\u0152", + "orig": "125\u0152", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 319, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 295.895, + "r_x1": 74.006, + "r_y1": 295.895, + "r_x2": 74.006, + "r_y2": 304.22, + "r_x3": 52.001, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Black", + "orig": "Black", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 320, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 303.946, + "r_x1": 357.241, + "r_y1": 303.946, + "r_x2": 357.241, + "r_y2": 312.271, + "r_x3": 338.738, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 321, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 303.946, + "r_x1": 424.175, + "r_y1": 303.946, + "r_x2": 424.175, + "r_y2": 312.271, + "r_x3": 414.167, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "80", + "orig": "80", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 322, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 303.865, + "r_x1": 500.644, + "r_y1": 303.865, + "r_x2": 500.644, + "r_y2": 312.19, + "r_x3": 468.118, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$100.00", + "orig": "$100.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 323, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 303.865, + "r_x1": 557.852, + "r_y1": 303.865, + "r_x2": 557.852, + "r_y2": 312.19, + "r_x3": 517.82, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$8,000.00", + "orig": "$8,000.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 324, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 267.288, + "r_x1": 83.006, + "r_y1": 267.288, + "r_x2": 83.006, + "r_y2": 275.613, + "r_x3": 52.001, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original", + "orig": "Original", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 325, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 85.508, + "r_y0": 267.288, + "r_x1": 112.022, + "r_y1": 267.288, + "r_x2": 112.022, + "r_y2": 275.613, + "r_x3": 85.508, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Honda", + "orig": "Honda", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 326, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 114.524, + "r_y0": 267.288, + "r_x1": 138.527, + "r_y1": 267.288, + "r_x2": 138.527, + "r_y2": 275.613, + "r_x3": 114.524, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cover", + "orig": "Cover", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 327, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 141.029, + "r_y0": 267.288, + "r_x1": 154.538, + "r_y1": 267.288, + "r_x2": 154.538, + "r_y2": 275.613, + "r_x3": 141.029, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Set", + "orig": "Set", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 328, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 157.04, + "r_y0": 267.288, + "r_x1": 172.052, + "r_y1": 267.288, + "r_x2": 172.052, + "r_y2": 275.613, + "r_x3": 157.04, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Left", + "orig": "Left", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 329, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 174.554, + "r_y0": 267.288, + "r_x1": 189.566, + "r_y1": 267.288, + "r_x2": 189.566, + "r_y2": 275.613, + "r_x3": 174.554, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "and", + "orig": "and", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 330, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 192.068, + "r_y0": 267.288, + "r_x1": 213.074, + "r_y1": 267.288, + "r_x2": 213.074, + "r_y2": 275.613, + "r_x3": 192.068, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Right", + "orig": "Right", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 331, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 215.576, + "r_y0": 267.288, + "r_x1": 229.076, + "r_y1": 267.288, + "r_x2": 229.076, + "r_y2": 275.613, + "r_x3": 215.576, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "For", + "orig": "For", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 332, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 231.578, + "r_y0": 267.288, + "r_x1": 251.576, + "r_y1": 267.288, + "r_x2": 251.576, + "r_y2": 275.613, + "r_x3": 231.578, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "XRM", + "orig": "XRM", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 333, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.078, + "r_y0": 267.288, + "r_x1": 269.09, + "r_y1": 267.288, + "r_x2": 269.09, + "r_y2": 275.613, + "r_x3": 254.078, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "110", + "orig": "110", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 334, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 271.592, + "r_y0": 267.288, + "r_x1": 295.604, + "r_y1": 267.288, + "r_x2": 295.604, + "r_y2": 275.613, + "r_x3": 271.592, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\u0152Red", + "orig": "\u0152Red", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 335, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 266.849, + "r_x1": 357.241, + "r_y1": 266.849, + "r_x2": 357.241, + "r_y2": 275.174, + "r_x3": 338.738, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 336, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 266.849, + "r_x1": 424.175, + "r_y1": 266.849, + "r_x2": 424.175, + "r_y2": 275.174, + "r_x3": 414.167, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10", + "orig": "10", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 337, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 266.933, + "r_x1": 500.644, + "r_y1": 266.933, + "r_x2": 500.644, + "r_y2": 275.258, + "r_x3": 473.122, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$10.73", + "orig": "$10.73", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 338, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 525.326, + "r_y0": 266.933, + "r_x1": 557.852, + "r_y1": 266.933, + "r_x2": 557.852, + "r_y2": 275.258, + "r_x3": 525.326, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$107.03", + "orig": "$107.03", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 339, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 82.585, + "r_x1": 70.512, + "r_y1": 82.585, + "r_x2": 70.512, + "r_y2": 90.693, + "r_x3": 52.001, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Jose", + "orig": "Jose", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 340, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.949, + "r_y0": 82.585, + "r_x1": 78.795, + "r_y1": 82.585, + "r_x2": 78.795, + "r_y2": 90.693, + "r_x3": 72.949, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "S", + "orig": "S", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 341, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 81.232, + "r_y0": 82.585, + "r_x1": 103.153, + "r_y1": 82.585, + "r_x2": 103.153, + "r_y2": 90.693, + "r_x3": 81.232, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Lares", + "orig": "Lares", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 342, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.243, + "r_y0": 82.585, + "r_x1": 283.356, + "r_y1": 82.585, + "r_x2": 283.356, + "r_y2": 90.693, + "r_x3": 249.243, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01/20/20", + "orig": "01/20/20", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 343, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 193.537, + "r_x1": 557.899, + "r_y1": 193.537, + "r_x2": 557.899, + "r_y2": 201.862, + "r_x3": 535.381, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12.23", + "orig": "12.23", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 344, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.377, + "r_y0": 177.593, + "r_x1": 557.899, + "r_y1": 177.593, + "r_x2": 557.899, + "r_y2": 185.918, + "r_x3": 530.377, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "881.21", + "orig": "881.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 345, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 161.649, + "r_x1": 557.899, + "r_y1": 161.649, + "r_x2": 557.899, + "r_y2": 169.974, + "r_x3": 540.385, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 346, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 145.704, + "r_x1": 557.899, + "r_y1": 145.704, + "r_x2": 557.899, + "r_y2": 154.029, + "r_x3": 540.385, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 347, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 129.76, + "r_x1": 557.899, + "r_y1": 129.76, + "r_x2": 557.899, + "r_y2": 138.085, + "r_x3": 535.381, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "33.11", + "orig": "33.11", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 348, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 113.816, + "r_x1": 557.899, + "r_y1": 113.816, + "r_x2": 557.899, + "r_y2": 122.141, + "r_x3": 540.385, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 349, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 97.872, + "r_x1": 557.899, + "r_y1": 97.872, + "r_x2": 557.899, + "r_y2": 106.197, + "r_x3": 535.381, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "88.21", + "orig": "88.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 350, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 81.927, + "r_x1": 557.899, + "r_y1": 81.927, + "r_x2": 557.899, + "r_y2": 90.252, + "r_x3": 535.381, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "73.00", + "orig": "73.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 351, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 512.863, + "r_y0": 80.021, + "r_x1": 557.899, + "r_y1": 80.021, + "r_x2": 557.899, + "r_y2": 88.346, + "r_x3": 512.863, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$15,922.11", + "orig": "$15,922.11", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + } + ], + "textline_cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 63.41, + "r_y0": 711.075, + "r_x1": 102.091, + "r_y1": 711.075, + "r_x2": 102.091, + "r_y2": 717.89, + "r_x3": 63.41, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Invoice Date", + "orig": "Invoice Date", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 153.541, + "r_y0": 711.075, + "r_x1": 181.955, + "r_y1": 711.075, + "r_x2": 181.955, + "r_y2": 717.89, + "r_x3": 153.541, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Invoice #", + "orig": "Invoice #", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 260.011, + "r_y0": 711.075, + "r_x1": 285.478, + "r_y1": 711.075, + "r_x2": 285.478, + "r_y2": 717.89, + "r_x3": 260.011, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Order #", + "orig": "Order #", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 416.601, + "r_y0": 711.075, + "r_x1": 470.396, + "r_y1": 711.075, + "r_x2": 470.396, + "r_y2": 717.89, + "r_x3": 416.601, + "r_y3": 717.89, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Other References", + "orig": "Other References", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 658.219, + "r_x1": 123.376, + "r_y1": 658.219, + "r_x2": 123.376, + "r_y2": 665.782, + "r_x3": 54.0, + "r_y3": 665.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Seller/Shipper", + "orig": "Seller/Shipper", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 658.213, + "r_x1": 160.364, + "r_y1": 658.213, + "r_x2": 160.364, + "r_y2": 665.028, + "r_x3": 139.0, + "r_y3": 665.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 638.214, + "r_x1": 166.349, + "r_y1": 638.214, + "r_x2": 166.349, + "r_y2": 645.029, + "r_x3": 139.0, + "r_y3": 645.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 618.219, + "r_x1": 95.152, + "r_y1": 618.219, + "r_x2": 95.152, + "r_y2": 625.782, + "r_x3": 54.0, + "r_y3": 625.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate", + "orig": "ultimate", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 618.213, + "r_x1": 160.364, + "r_y1": 618.213, + "r_x2": 160.364, + "r_y2": 625.028, + "r_x3": 139.0, + "r_y3": 625.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 607.619, + "r_x1": 105.952, + "r_y1": 607.619, + "r_x2": 105.952, + "r_y2": 615.182, + "r_x3": 54.0, + "r_y3": 615.182, + "coord_origin": "BOTTOMLEFT" + }, + "text": "conSignee", + "orig": "conSignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 598.213, + "r_x1": 166.349, + "r_y1": 598.213, + "r_x2": 166.349, + "r_y2": 605.028, + "r_x3": 139.0, + "r_y3": 605.028, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 578.214, + "r_x1": 155.667, + "r_y1": 578.214, + "r_x2": 155.667, + "r_y2": 585.029, + "r_x3": 139.0, + "r_y3": 585.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Type:", + "orig": "Type:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 558.215, + "r_x1": 160.364, + "r_y1": 558.215, + "r_x2": 160.364, + "r_y2": 565.03, + "r_x3": 139.0, + "r_y3": 565.03, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Name:", + "orig": "Name:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 558.219, + "r_x1": 83.936, + "r_y1": 558.219, + "r_x2": 83.936, + "r_y2": 565.782, + "r_x3": 54.0, + "r_y3": 565.782, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Buyer ", + "orig": "Buyer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 548.705, + "r_x1": 91.96, + "r_y1": 548.705, + "r_x2": 91.96, + "r_y2": 555.558, + "r_x3": 53.999, + "r_y3": 555.558, + "coord_origin": "BOTTOMLEFT" + }, + "text": "If other than ", + "orig": "If other than ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 91.995, + "r_y0": 548.643, + "r_x1": 117.3, + "r_y1": 548.643, + "r_x2": 117.3, + "r_y2": 554.837, + "r_x3": 91.995, + "r_y3": 554.837, + "coord_origin": "BOTTOMLEFT" + }, + "text": "ultimate ", + "orig": "ultimate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C0_0", + "font_name": "/YACPBS+MinionPro-It" + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.999, + "r_y0": 538.842, + "r_x1": 83.651, + "r_y1": 538.842, + "r_x2": 83.651, + "r_y2": 545.695, + "r_x3": 53.999, + "r_y3": 545.695, + "coord_origin": "BOTTOMLEFT" + }, + "text": "consignee", + "orig": "consignee", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 139.0, + "r_y0": 538.214, + "r_x1": 166.349, + "r_y1": 538.214, + "r_x2": 166.349, + "r_y2": 545.029, + "r_x3": 139.0, + "r_y3": 545.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Address:", + "orig": "Address:", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 520.713, + "r_x1": 97.043, + "r_y1": 520.713, + "r_x2": 97.043, + "r_y2": 527.528, + "r_x3": 54.0, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Port of Lading", + "orig": "Port of Lading", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 520.713, + "r_x1": 370.582, + "r_y1": 520.713, + "r_x2": 370.582, + "r_y2": 527.528, + "r_x3": 309.997, + "r_y3": 527.528, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total No. Packages", + "orig": "Total No. Packages", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 504.711, + "r_x1": 387.109, + "r_y1": 504.711, + "r_x2": 387.109, + "r_y2": 511.526, + "r_x3": 309.997, + "r_y3": 511.526, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total Gross Weight (KG)", + "orig": "Total Gross Weight (KG)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 488.709, + "r_x1": 108.523, + "r_y1": 488.709, + "r_x2": 108.523, + "r_y2": 495.524, + "r_x3": 54.0, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Exporting Carrier", + "orig": "Exporting Carrier", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 488.709, + "r_x1": 351.423, + "r_y1": 488.709, + "r_x2": 351.423, + "r_y2": 495.524, + "r_x3": 309.997, + "r_y3": 495.524, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Cubic Meters", + "orig": "Cubic Meters", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 472.707, + "r_x1": 89.294, + "r_y1": 472.707, + "r_x2": 89.294, + "r_y2": 479.522, + "r_x3": 54.0, + "r_y3": 479.522, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Incoterms\u00ae", + "orig": "Incoterms\u00ae", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 309.997, + "r_y0": 474.933, + "r_x1": 367.019, + "r_y1": 474.933, + "r_x2": 367.019, + "r_y2": 481.748, + "r_x3": 309.997, + "r_y3": 481.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Marks & Numbers", + "orig": "Marks & Numbers", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 456.705, + "r_x1": 94.53, + "r_y1": 456.705, + "r_x2": 94.53, + "r_y2": 463.52, + "r_x3": 54.0, + "r_y3": 463.52, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Named Point", + "orig": "Named Point", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 440.703, + "r_x1": 95.657, + "r_y1": 440.703, + "r_x2": 95.657, + "r_y2": 447.518, + "r_x3": 54.0, + "r_y3": 447.518, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Terms of Sale", + "orig": "Terms of Sale", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 54.0, + "r_y0": 424.701, + "r_x1": 106.269, + "r_y1": 424.701, + "r_x2": 106.269, + "r_y2": 431.516, + "r_x3": 54.0, + "r_y3": 431.516, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Currency of Sale", + "orig": "Currency of Sale", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 69.311, + "r_y0": 406.582, + "r_x1": 299.56, + "r_y1": 406.582, + "r_x2": 299.56, + "r_y2": 413.16, + "r_x3": 69.311, + "r_y3": 413.16, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Complete & Accurate Commodity Description, USML Category or ECCN, ", + "orig": "Complete & Accurate Commodity Description, USML Category or ECCN, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 77.635, + "r_y0": 397.58, + "r_x1": 289.251, + "r_y1": 397.58, + "r_x2": 289.251, + "r_y2": 404.158, + "r_x3": 77.635, + "r_y3": 404.158, + "coord_origin": "BOTTOMLEFT" + }, + "text": "applicable (including model/serial number/ECCN/USML Category)", + "orig": "applicable (including model/serial number/ECCN/USML Category)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 311.173, + "r_y0": 401.44, + "r_x1": 385.051, + "r_y1": 401.44, + "r_x2": 385.051, + "r_y2": 408.018, + "r_x3": 311.173, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Country of Manufacture", + "orig": "Country of Manufacture", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.085, + "r_y0": 405.941, + "r_x1": 439.385, + "r_y1": 405.941, + "r_x2": 439.385, + "r_y2": 412.519, + "r_x3": 398.085, + "r_y3": 412.519, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Quantity/Unit", + "orig": "Quantity/Unit", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 439.387, + "r_y0": 405.97, + "r_x1": 441.543, + "r_y1": 405.97, + "r_x2": 441.543, + "r_y2": 412.785, + "r_x3": 439.387, + "r_y3": 412.785, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 401.984, + "r_y0": 396.939, + "r_x1": 437.313, + "r_y1": 396.939, + "r_x2": 437.313, + "r_y2": 403.517, + "r_x3": 401.984, + "r_y3": 403.517, + "coord_origin": "BOTTOMLEFT" + }, + "text": "of Measure", + "orig": "of Measure", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 461.603, + "r_y0": 401.44, + "r_x1": 492.208, + "r_y1": 401.439, + "r_x2": 492.208, + "r_y2": 408.017, + "r_x3": 461.603, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Unit Price", + "orig": "Unit Price", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 521.222, + "r_y0": 401.44, + "r_x1": 537.371, + "r_y1": 401.44, + "r_x2": 537.371, + "r_y2": 408.018, + "r_x3": 521.222, + "r_y3": 408.018, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Total", + "orig": "Total", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_0", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 400.815, + "r_y0": 192.953, + "r_x1": 444.005, + "r_y1": 192.953, + "r_x2": 444.005, + "r_y2": 199.768, + "r_x3": 400.815, + "r_y3": 199.768, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Packing Costs", + "orig": "Packing Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 404.154, + "r_y0": 176.951, + "r_x1": 444.005, + "r_y1": 176.951, + "r_x2": 444.005, + "r_y2": 183.766, + "r_x3": 404.154, + "r_y3": 183.766, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Freight Costs", + "orig": "Freight Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 360.131, + "r_y0": 160.949, + "r_x1": 443.991, + "r_y1": 160.949, + "r_x2": 443.991, + "r_y2": 167.764, + "r_x3": 360.131, + "r_y3": 167.764, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Other Transportation Costs", + "orig": "Other Transportation Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 145.156, + "r_x1": 275.627, + "r_y1": 145.156, + "r_x2": 275.627, + "r_y2": 151.986, + "r_x3": 50.003, + "r_y3": 151.986, + "coord_origin": "BOTTOMLEFT" + }, + "text": "It is hereby certified that this invoice shows the actual price of the goods ", + "orig": "It is hereby certified that this invoice shows the actual price of the goods ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 135.153, + "r_x1": 273.408, + "r_y1": 135.153, + "r_x2": 273.408, + "r_y2": 141.983, + "r_x3": 50.003, + "r_y3": 141.983, + "coord_origin": "BOTTOMLEFT" + }, + "text": "described, that no other invoice has been or will be issued, and that all ", + "orig": "described, that no other invoice has been or will be issued, and that all ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 125.15, + "r_x1": 148.108, + "r_y1": 125.15, + "r_x2": 148.108, + "r_y2": 131.98, + "r_x3": 50.003, + "r_y3": 131.98, + "coord_origin": "BOTTOMLEFT" + }, + "text": "particulars are true and correct.", + "orig": "particulars are true and correct.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_3", + "font_name": "/JTFTQG+FuturaStd-BookOblique" + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 415.277, + "r_y0": 144.94, + "r_x1": 444.005, + "r_y1": 144.94, + "r_x2": 444.005, + "r_y2": 151.755, + "r_x3": 415.277, + "r_y3": 151.755, + "coord_origin": "BOTTOMLEFT" + }, + "text": "handling", + "orig": "handling", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.453, + "r_y0": 128.938, + "r_x1": 443.991, + "r_y1": 128.938, + "r_x2": 443.991, + "r_y2": 135.754, + "r_x3": 395.453, + "r_y3": 135.753, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Insurance Costs", + "orig": "Insurance Costs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 423.74, + "r_y0": 112.936, + "r_x1": 443.998, + "r_y1": 112.936, + "r_x2": 443.998, + "r_y2": 119.752, + "r_x3": 423.74, + "r_y3": 119.752, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Assists", + "orig": "Assists", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.003, + "r_y0": 98.159, + "r_x1": 208.413, + "r_y1": 98.159, + "r_x2": 208.413, + "r_y2": 104.975, + "r_x3": 50.003, + "r_y3": 104.975, + "coord_origin": "BOTTOMLEFT" + }, + "text": "SIGNATURE & STATUS OF AUThORIzED PERSON", + "orig": "SIGNATURE & STATUS OF AUThORIzED PERSON", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.502, + "r_y0": 96.934, + "r_x1": 443.998, + "r_y1": 96.934, + "r_x2": 443.998, + "r_y2": 103.75, + "r_x3": 395.502, + "r_y3": 103.75, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Additional Fees", + "orig": "Additional Fees", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 398.379, + "r_y0": 80.932, + "r_x1": 443.998, + "r_y1": 80.932, + "r_x2": 443.998, + "r_y2": 87.748, + "r_x3": 398.379, + "r_y3": 87.748, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Duties & Taxes", + "orig": "Duties & Taxes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.01, + "r_y0": 66.155, + "r_x1": 94.453, + "r_y1": 66.155, + "r_x2": 94.453, + "r_y2": 72.971, + "r_x3": 50.01, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "PRINT NAME ", + "orig": "PRINT NAME ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.006, + "r_y0": 66.155, + "r_x1": 265.498, + "r_y1": 66.155, + "r_x2": 265.498, + "r_y2": 72.971, + "r_x3": 249.006, + "r_y3": 72.971, + "coord_origin": "BOTTOMLEFT" + }, + "text": "DATE", + "orig": "DATE", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_0", + "font_name": "/UMPHOK+FuturaStd-Book" + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 361.258, + "r_y0": 65.128, + "r_x1": 444.005, + "r_y1": 65.128, + "r_x2": 444.005, + "r_y2": 71.746, + "r_x3": 361.258, + "r_y3": 71.746, + "coord_origin": "BOTTOMLEFT" + }, + "text": "total invoice value", + "orig": "total invoice value", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 48.757, + "r_y0": 46.041, + "r_x1": 269.565, + "r_y1": 46.041, + "r_x2": 269.565, + "r_y2": 52.895, + "r_x3": 48.757, + "r_y3": 52.895, + "coord_origin": "BOTTOMLEFT" + }, + "text": "\"Incoterms\" is a trademark of the International Chamber of Commerce.", + "orig": "\"Incoterms\" is a trademark of the International Chamber of Commerce.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_2", + "font_name": "/NZDRUY+FuturaStd-MediumOblique" + }, + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 269.784, + "r_y0": 46.025, + "r_x1": 272.096, + "r_y1": 46.025, + "r_x2": 272.096, + "r_y2": 53.681, + "r_x3": 269.784, + "r_y3": 53.681, + "coord_origin": "BOTTOMLEFT" + }, + "text": " ", + "orig": " ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_4", + "font_name": "/FNCVMO+FuturaStd-Medium" + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.0, + "r_y0": 731.606, + "r_x1": 348.944, + "r_y1": 731.606, + "r_x2": 348.944, + "r_y2": 754.296, + "r_x3": 50.0, + "r_y3": 754.296, + "coord_origin": "BOTTOMLEFT" + }, + "text": "commercial invoice", + "orig": "commercial invoice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/T1_1", + "font_name": "/PCCDWU+FuturaStd-Bold" + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 196.895, + "r_x1": 285.694, + "r_y1": 196.895, + "r_x2": 285.694, + "r_y2": 202.534, + "r_x3": 50.887, + "r_y3": 202.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "These items are controlled by the U.S. government and authorized for export only to the ", + "orig": "These items are controlled by the U.S. government and authorized for export only to the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 189.696, + "r_x1": 279.682, + "r_y1": 189.696, + "r_x2": 279.682, + "r_y2": 195.334, + "r_x3": 50.887, + "r_y3": 195.334, + "coord_origin": "BOTTOMLEFT" + }, + "text": "country of ultimate destination for use by the ultimate consignee or end-user(s) herein ", + "orig": "country of ultimate destination for use by the ultimate consignee or end-user(s) herein ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 182.496, + "r_x1": 279.997, + "r_y1": 182.496, + "r_x2": 279.997, + "r_y2": 188.134, + "r_x3": 50.887, + "r_y3": 188.134, + "coord_origin": "BOTTOMLEFT" + }, + "text": "identified. They may not be resold, transferred, or otherwise disposed of, to any other ", + "orig": "identified. They may not be resold, transferred, or otherwise disposed of, to any other ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 175.296, + "r_x1": 295.04, + "r_y1": 175.296, + "r_x2": 295.04, + "r_y2": 180.934, + "r_x3": 50.887, + "r_y3": 180.934, + "coord_origin": "BOTTOMLEFT" + }, + "text": "country or to any person other than the authorized ultimate consignee or end-user(s), either ", + "orig": "country or to any person other than the authorized ultimate consignee or end-user(s), either ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_3", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 168.096, + "r_x1": 279.649, + "r_y1": 168.096, + "r_x2": 279.649, + "r_y2": 173.734, + "r_x3": 50.887, + "r_y3": 173.734, + "coord_origin": "BOTTOMLEFT" + }, + "text": "in their original form or after being incorporated into other items, without first obtaining ", + "orig": "in their original form or after being incorporated into other items, without first obtaining ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 50.887, + "r_y0": 160.896, + "r_x1": 292.678, + "r_y1": 160.895, + "r_x2": 292.678, + "r_y2": 166.534, + "r_x3": 50.887, + "r_y3": 166.534, + "coord_origin": "BOTTOMLEFT" + }, + "text": "approval from the U.S. government or as otherwise authorized by U.S. law and regulations.", + "orig": "approval from the U.S. government or as otherwise authorized by U.S. law and regulations.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_2", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 510.119, + "r_x1": 115.453, + "r_y1": 510.119, + "r_x2": 115.453, + "r_y2": 516.697, + "r_x3": 53.601, + "r_y3": 516.697, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Country of Ultimate ", + "orig": "Country of Ultimate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 61, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 53.601, + "r_y0": 501.719, + "r_x1": 88.615, + "r_y1": 501.719, + "r_x2": 88.615, + "r_y2": 508.297, + "r_x3": 53.601, + "r_y3": 508.297, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Destination", + "orig": "Destination", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": false, + "font_key": "/C2_4", + "font_name": "/OEYZDL+ArialMT" + }, + { + "index": 62, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 65.265, + "r_y0": 693.036, + "r_x1": 100.293, + "r_y1": 693.036, + "r_x2": 100.293, + "r_y2": 701.361, + "r_x3": 65.265, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01/20/20", + "orig": "01/20/20", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 63, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.469, + "r_y0": 693.036, + "r_x1": 175.481, + "r_y1": 693.036, + "r_x2": 175.481, + "r_y2": 701.361, + "r_x3": 160.469, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "002", + "orig": "002", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 64, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 257.878, + "r_y0": 693.036, + "r_x1": 287.902, + "r_y1": 693.036, + "r_x2": 287.902, + "r_y2": 701.361, + "r_x3": 257.878, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "882991", + "orig": "882991", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 65, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 442.715, + "r_y0": 693.036, + "r_x1": 445.712, + "r_y1": 693.036, + "r_x2": 445.712, + "r_y2": 701.361, + "r_x3": 442.715, + "r_y3": 701.361, + "coord_origin": "BOTTOMLEFT" + }, + "text": "-", + "orig": "-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 66, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 659.697, + "r_x1": 233.896, + "r_y1": 659.697, + "r_x2": 233.896, + "r_y2": 668.023, + "r_x3": 170.869, + "r_y3": 668.023, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Goodwin Group", + "orig": "Goodwin Group", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 67, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 640.298, + "r_x1": 314.941, + "r_y1": 640.298, + "r_x2": 314.941, + "r_y2": 648.623, + "r_x3": 170.869, + "r_y3": 648.623, + "coord_origin": "BOTTOMLEFT" + }, + "text": "9189 Elmwood St. Bronx, NY 10465", + "orig": "9189 Elmwood St. Bronx, NY 10465", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 68, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 619.952, + "r_x1": 268.402, + "r_y1": 619.952, + "r_x2": 268.402, + "r_y2": 628.278, + "r_x3": 170.869, + "r_y3": 628.278, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Kerluke, Veum and Crist", + "orig": "Kerluke, Veum and Crist", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 69, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 599.553, + "r_x1": 346.432, + "r_y1": 599.553, + "r_x2": 346.432, + "r_y2": 607.878, + "r_x3": 170.869, + "r_y3": 607.878, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "orig": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 70, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 559.261, + "r_x1": 268.402, + "r_y1": 559.261, + "r_x2": 268.402, + "r_y2": 567.587, + "r_x3": 170.869, + "r_y3": 567.587, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Kerluke, Veum and Crist", + "orig": "Kerluke, Veum and Crist", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 71, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 170.869, + "r_y0": 539.988, + "r_x1": 346.432, + "r_y1": 539.988, + "r_x2": 346.432, + "r_y2": 548.313, + "r_x3": 170.869, + "r_y3": 548.313, + "coord_origin": "BOTTOMLEFT" + }, + "text": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "orig": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 72, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 521.154, + "r_x1": 207.178, + "r_y1": 521.154, + "r_x2": 207.178, + "r_y2": 529.48, + "r_x3": 138.166, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "New York Harbor", + "orig": "New York Harbor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 73, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 505.901, + "r_x1": 156.67, + "r_y1": 505.901, + "r_x2": 156.67, + "r_y2": 514.226, + "r_x3": 138.166, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 74, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 489.904, + "r_x1": 190.672, + "r_y1": 489.904, + "r_x2": 190.672, + "r_y2": 498.228, + "r_x3": 138.166, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Hintz-Raynor", + "orig": "Hintz-Raynor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 75, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 442.468, + "r_x1": 220.705, + "r_y1": 442.468, + "r_x2": 220.705, + "r_y2": 450.793, + "r_x3": 138.166, + "r_y3": 450.793, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Payment in Advance", + "orig": "Payment in Advance", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 76, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 138.166, + "r_y0": 426.33, + "r_x1": 189.178, + "r_y1": 426.33, + "r_x2": 189.178, + "r_y2": 434.655, + "r_x3": 138.166, + "r_y3": 434.655, + "coord_origin": "BOTTOMLEFT" + }, + "text": "US DOLLAR", + "orig": "US DOLLAR", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 77, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 521.154, + "r_x1": 411.0, + "r_y1": 521.154, + "r_x2": 411.0, + "r_y2": 529.48, + "r_x3": 395.988, + "r_y3": 529.48, + "coord_origin": "BOTTOMLEFT" + }, + "text": "100", + "orig": "100", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 78, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 505.901, + "r_x1": 430.008, + "r_y1": 505.901, + "r_x2": 430.008, + "r_y2": 514.226, + "r_x3": 395.988, + "r_y3": 514.226, + "coord_origin": "BOTTOMLEFT" + }, + "text": "8600kgs", + "orig": "8600kgs", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 79, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 395.988, + "r_y0": 489.904, + "r_x1": 423.51, + "r_y1": 489.904, + "r_x2": 423.51, + "r_y2": 498.228, + "r_x3": 395.988, + "r_y3": 498.228, + "coord_origin": "BOTTOMLEFT" + }, + "text": "170.29", + "orig": "170.29", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 80, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 376.083, + "r_x1": 295.604, + "r_y1": 376.083, + "r_x2": 295.604, + "r_y2": 384.408, + "r_x3": 52.001, + "r_y3": 384.408, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original Honda Cover Set Left and Right For XRM 110 \u0152 Red", + "orig": "Original Honda Cover Set Left and Right For XRM 110 \u0152 Red", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 81, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 373.672, + "r_x1": 357.241, + "r_y1": 373.672, + "r_x2": 357.241, + "r_y2": 381.997, + "r_x3": 338.738, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 82, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 373.672, + "r_x1": 424.175, + "r_y1": 373.672, + "r_x2": 424.175, + "r_y2": 381.997, + "r_x3": 414.167, + "r_y3": 381.997, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10", + "orig": "10", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 83, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 373.728, + "r_x1": 500.644, + "r_y1": 373.728, + "r_x2": 500.644, + "r_y2": 382.053, + "r_x3": 468.118, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$333.21", + "orig": "$333.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 84, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 373.728, + "r_x1": 557.852, + "r_y1": 373.728, + "r_x2": 557.852, + "r_y2": 382.053, + "r_x3": 517.82, + "r_y3": 382.053, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$3,332.01", + "orig": "$3,332.01", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 85, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 340.151, + "r_x1": 284.57, + "r_y1": 340.151, + "r_x2": 284.57, + "r_y2": 348.476, + "r_x3": 52.001, + "r_y3": 348.476, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original Honda Cover Handle Front (Disk Brake) For Beat ", + "orig": "Original Honda Cover Handle Front (Disk Brake) For Beat ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 86, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 331.826, + "r_x1": 112.022, + "r_y1": 331.826, + "r_x2": 112.022, + "r_y2": 340.151, + "r_x3": 52.001, + "r_y3": 340.151, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Carb Version 1", + "orig": "Carb Version 1", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 87, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 339.852, + "r_x1": 357.241, + "r_y1": 339.852, + "r_x2": 357.241, + "r_y2": 348.177, + "r_x3": 338.738, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 88, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 339.852, + "r_x1": 424.175, + "r_y1": 339.852, + "r_x2": 424.175, + "r_y2": 348.177, + "r_x3": 414.167, + "r_y3": 348.177, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12", + "orig": "12", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 89, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 339.796, + "r_x1": 500.644, + "r_y1": 339.796, + "r_x2": 500.644, + "r_y2": 348.121, + "r_x3": 468.118, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$282.92", + "orig": "$282.92", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 90, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 339.796, + "r_x1": 557.852, + "r_y1": 339.796, + "r_x2": 557.852, + "r_y2": 348.121, + "r_x3": 517.82, + "r_y3": 348.121, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$3,395.04", + "orig": "$3,395.04", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 91, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 304.22, + "r_x1": 285.569, + "r_y1": 304.22, + "r_x2": 285.569, + "r_y2": 312.545, + "r_x3": 52.001, + "r_y3": 312.545, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original Honda Cowl Under (Engine Cover) For Rs 125 \u0152 ", + "orig": "Original Honda Cowl Under (Engine Cover) For Rs 125 \u0152 ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 92, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 295.895, + "r_x1": 74.006, + "r_y1": 295.895, + "r_x2": 74.006, + "r_y2": 304.22, + "r_x3": 52.001, + "r_y3": 304.22, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Black", + "orig": "Black", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 93, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 303.946, + "r_x1": 357.241, + "r_y1": 303.946, + "r_x2": 357.241, + "r_y2": 312.271, + "r_x3": 338.738, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 94, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 303.946, + "r_x1": 424.175, + "r_y1": 303.946, + "r_x2": 424.175, + "r_y2": 312.271, + "r_x3": 414.167, + "r_y3": 312.271, + "coord_origin": "BOTTOMLEFT" + }, + "text": "80", + "orig": "80", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 95, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 468.118, + "r_y0": 303.865, + "r_x1": 500.644, + "r_y1": 303.865, + "r_x2": 500.644, + "r_y2": 312.19, + "r_x3": 468.118, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$100.00", + "orig": "$100.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 96, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 517.82, + "r_y0": 303.865, + "r_x1": 557.852, + "r_y1": 303.865, + "r_x2": 557.852, + "r_y2": 312.19, + "r_x3": 517.82, + "r_y3": 312.19, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$8,000.00", + "orig": "$8,000.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 97, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 267.288, + "r_x1": 295.604, + "r_y1": 267.288, + "r_x2": 295.604, + "r_y2": 275.613, + "r_x3": 52.001, + "r_y3": 275.613, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Original Honda Cover Set Left and Right For XRM 110 \u0152 Red", + "orig": "Original Honda Cover Set Left and Right For XRM 110 \u0152 Red", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 98, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 338.738, + "r_y0": 266.849, + "r_x1": 357.241, + "r_y1": 266.849, + "r_x2": 357.241, + "r_y2": 275.174, + "r_x3": 338.738, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "USA", + "orig": "USA", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 99, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 414.167, + "r_y0": 266.849, + "r_x1": 424.175, + "r_y1": 266.849, + "r_x2": 424.175, + "r_y2": 275.174, + "r_x3": 414.167, + "r_y3": 275.174, + "coord_origin": "BOTTOMLEFT" + }, + "text": "10", + "orig": "10", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 100, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 473.122, + "r_y0": 266.933, + "r_x1": 500.644, + "r_y1": 266.933, + "r_x2": 500.644, + "r_y2": 275.258, + "r_x3": 473.122, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$10.73", + "orig": "$10.73", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 101, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 525.326, + "r_y0": 266.933, + "r_x1": 557.852, + "r_y1": 266.933, + "r_x2": 557.852, + "r_y2": 275.258, + "r_x3": 525.326, + "r_y3": 275.258, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$107.03", + "orig": "$107.03", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 102, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 52.001, + "r_y0": 82.585, + "r_x1": 103.153, + "r_y1": 82.585, + "r_x2": 103.153, + "r_y2": 90.693, + "r_x3": 52.001, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "Jose S Lares", + "orig": "Jose S Lares", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 103, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.243, + "r_y0": 82.585, + "r_x1": 283.356, + "r_y1": 82.585, + "r_x2": 283.356, + "r_y2": 90.693, + "r_x3": 249.243, + "r_y3": 90.693, + "coord_origin": "BOTTOMLEFT" + }, + "text": "01/20/20", + "orig": "01/20/20", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 104, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 193.537, + "r_x1": 557.899, + "r_y1": 193.537, + "r_x2": 557.899, + "r_y2": 201.862, + "r_x3": 535.381, + "r_y3": 201.862, + "coord_origin": "BOTTOMLEFT" + }, + "text": "12.23", + "orig": "12.23", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 105, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 530.377, + "r_y0": 177.593, + "r_x1": 557.899, + "r_y1": 177.593, + "r_x2": 557.899, + "r_y2": 185.918, + "r_x3": 530.377, + "r_y3": 185.918, + "coord_origin": "BOTTOMLEFT" + }, + "text": "881.21", + "orig": "881.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 106, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 161.649, + "r_x1": 557.899, + "r_y1": 161.649, + "r_x2": 557.899, + "r_y2": 169.974, + "r_x3": 540.385, + "r_y3": 169.974, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 107, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 145.704, + "r_x1": 557.899, + "r_y1": 145.704, + "r_x2": 557.899, + "r_y2": 154.029, + "r_x3": 540.385, + "r_y3": 154.029, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 108, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 129.76, + "r_x1": 557.899, + "r_y1": 129.76, + "r_x2": 557.899, + "r_y2": 138.085, + "r_x3": 535.381, + "r_y3": 138.085, + "coord_origin": "BOTTOMLEFT" + }, + "text": "33.11", + "orig": "33.11", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 109, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 540.385, + "r_y0": 113.816, + "r_x1": 557.899, + "r_y1": 113.816, + "r_x2": 557.899, + "r_y2": 122.141, + "r_x3": 540.385, + "r_y3": 122.141, + "coord_origin": "BOTTOMLEFT" + }, + "text": "0.00", + "orig": "0.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 110, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 97.872, + "r_x1": 557.899, + "r_y1": 97.872, + "r_x2": 557.899, + "r_y2": 106.197, + "r_x3": 535.381, + "r_y3": 106.197, + "coord_origin": "BOTTOMLEFT" + }, + "text": "88.21", + "orig": "88.21", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 111, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 535.381, + "r_y0": 81.927, + "r_x1": 557.899, + "r_y1": 81.927, + "r_x2": 557.899, + "r_y2": 90.252, + "r_x3": 535.381, + "r_y3": 90.252, + "coord_origin": "BOTTOMLEFT" + }, + "text": "73.00", + "orig": "73.00", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/Helv", + "font_name": "/Helv" + }, + { + "index": 112, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 512.863, + "r_y0": 80.021, + "r_x1": 557.899, + "r_y1": 80.021, + "r_x2": 557.899, + "r_y2": 88.346, + "r_x3": 512.863, + "r_y3": 88.346, + "coord_origin": "BOTTOMLEFT" + }, + "text": "$15,922.11", + "orig": "$15,922.11", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false, + "rendering_mode": -1, + "widget": true, + "font_key": "/HeBo", + "font_name": "/HeBo" + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ + { + "index": 0, + "rect": { + "r_x0": 51.713, + "r_y0": 687.457, + "r_x1": 113.844, + "r_y1": 687.457, + "r_x2": 113.844, + "r_y2": 706.803, + "r_x3": 51.713, + "r_y3": 706.803, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "01/20/20", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 1, + "rect": { + "r_x0": 116.448, + "r_y0": 687.457, + "r_x1": 219.503, + "r_y1": 687.457, + "r_x2": 219.503, + "r_y2": 706.803, + "r_x3": 116.448, + "r_y3": 706.803, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "002", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 2, + "rect": { + "r_x0": 221.363, + "r_y0": 687.457, + "r_x1": 324.417, + "r_y1": 687.457, + "r_x2": 324.417, + "r_y2": 706.803, + "r_x3": 221.363, + "r_y3": 706.803, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "882991", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 3, + "rect": { + "r_x0": 328.138, + "r_y0": 687.457, + "r_x1": 560.289, + "r_y1": 687.457, + "r_x2": 560.289, + "r_y2": 706.803, + "r_x3": 328.138, + "r_y3": 706.803, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "-", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 4, + "rect": { + "r_x0": 168.869, + "r_y0": 657.028, + "r_x1": 562.56, + "r_y1": 657.028, + "r_x2": 562.56, + "r_y2": 670.555, + "r_x3": 168.869, + "r_y3": 670.555, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Goodwin Group", + "widget_field_name": "USPPI1", + "widget_field_type": "/Tx" + }, + { + "index": 5, + "rect": { + "r_x0": 168.869, + "r_y0": 637.628, + "r_x1": 562.56, + "r_y1": 637.628, + "r_x2": 562.56, + "r_y2": 651.155, + "r_x3": 168.869, + "r_y3": 651.155, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "9189 Elmwood St. Bronx, NY 10465", + "widget_field_name": "USPPI2", + "widget_field_type": "/Tx" + }, + { + "index": 6, + "rect": { + "r_x0": 168.869, + "r_y0": 617.283, + "r_x1": 562.56, + "r_y1": 617.283, + "r_x2": 562.56, + "r_y2": 630.81, + "r_x3": 168.869, + "r_y3": 630.81, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Kerluke, Veum and Crist", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 7, + "rect": { + "r_x0": 168.869, + "r_y0": 596.883, + "r_x1": 562.56, + "r_y1": 596.883, + "r_x2": 562.56, + "r_y2": 610.41, + "r_x3": 168.869, + "r_y3": 610.41, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "widget_field_name": "Ult Consignee2", + "widget_field_type": "/Tx" + }, + { + "index": 8, + "rect": { + "r_x0": 168.869, + "r_y0": 577.174, + "r_x1": 265.392, + "r_y1": 577.174, + "r_x2": 265.392, + "r_y2": 592.497, + "r_x3": 168.869, + "r_y3": 592.497, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "reseller", + "widget_field_name": "Ult Consignee Type", + "widget_field_type": "/Ch" + }, + { + "index": 9, + "rect": { + "r_x0": 168.869, + "r_y0": 556.592, + "r_x1": 562.56, + "r_y1": 556.592, + "r_x2": 562.56, + "r_y2": 570.119, + "r_x3": 168.869, + "r_y3": 570.119, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Kerluke, Veum and Crist", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 10, + "rect": { + "r_x0": 168.869, + "r_y0": 537.319, + "r_x1": 562.56, + "r_y1": 537.319, + "r_x2": 562.56, + "r_y2": 550.846, + "r_x3": 168.869, + "r_y3": 550.846, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "1499 W Cole Rd Fremont, Ohio(OH), 43420", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 11, + "rect": { + "r_x0": 136.166, + "r_y0": 518.552, + "r_x1": 303.583, + "r_y1": 518.552, + "r_x2": 303.583, + "r_y2": 531.945, + "r_x3": 136.166, + "r_y3": 531.945, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "New York Harbor", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 12, + "rect": { + "r_x0": 136.166, + "r_y0": 503.298, + "r_x1": 303.583, + "r_y1": 503.298, + "r_x2": 303.583, + "r_y2": 516.692, + "r_x3": 136.166, + "r_y3": 516.692, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "USA", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 13, + "rect": { + "r_x0": 136.166, + "r_y0": 487.301, + "r_x1": 303.583, + "r_y1": 487.301, + "r_x2": 303.583, + "r_y2": 500.694, + "r_x3": 136.166, + "r_y3": 500.694, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Hintz-Raynor", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 14, + "rect": { + "r_x0": 136.982, + "r_y0": 471.64, + "r_x1": 198.596, + "r_y1": 471.64, + "r_x2": 198.596, + "r_y2": 484.731, + "r_x3": 136.982, + "r_y3": 484.731, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "CFR", + "widget_field_name": "Incoterms", + "widget_field_type": "/Ch" + }, + { + "index": 15, + "rect": { + "r_x0": 136.166, + "r_y0": 456.002, + "r_x1": 303.583, + "r_y1": 456.002, + "r_x2": 303.583, + "r_y2": 469.396, + "r_x3": 136.166, + "r_y3": 469.396, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 16, + "rect": { + "r_x0": 136.166, + "r_y0": 439.865, + "r_x1": 303.583, + "r_y1": 439.865, + "r_x2": 303.583, + "r_y2": 453.258, + "r_x3": 136.166, + "r_y3": 453.258, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Payment in Advance", + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 17, + "rect": { + "r_x0": 136.166, + "r_y0": 423.727, + "r_x1": 303.583, + "r_y1": 423.727, + "r_x2": 303.583, + "r_y2": 437.121, + "r_x3": 136.166, + "r_y3": 437.121, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "US DOLLAR", + "widget_field_name": "6", + "widget_field_type": "/Tx" + }, + { + "index": 18, + "rect": { + "r_x0": 393.988, + "r_y0": 518.552, + "r_x1": 561.406, + "r_y1": 518.552, + "r_x2": 561.406, + "r_y2": 531.945, + "r_x3": 393.988, + "r_y3": 531.945, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "100", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 19, + "rect": { + "r_x0": 393.988, + "r_y0": 503.298, + "r_x1": 561.406, + "r_y1": 503.298, + "r_x2": 561.406, + "r_y2": 516.692, + "r_x3": 393.988, + "r_y3": 516.692, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "8600kgs", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 20, + "rect": { + "r_x0": 393.988, + "r_y0": 487.301, + "r_x1": 561.406, + "r_y1": 487.301, + "r_x2": 561.406, + "r_y2": 500.694, + "r_x3": 393.988, + "r_y3": 500.694, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "170.29", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 21, + "rect": { + "r_x0": 393.988, + "r_y0": 423.682, + "r_x1": 561.406, + "r_y1": 423.682, + "r_x2": 561.406, + "r_y2": 484.697, + "r_x3": 393.988, + "r_y3": 484.697, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 22, + "rect": { + "r_x0": 50.001, + "r_y0": 357.538, + "r_x1": 302.979, + "r_y1": 357.538, + "r_x2": 302.979, + "r_y2": 388.271, + "r_x3": 50.001, + "r_y3": 388.271, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Original Honda Cover Set Left and Right For XRM 110 \u2013 Red", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 23, + "rect": { + "r_x0": 307.267, + "r_y0": 369.229, + "r_x1": 388.712, + "r_y1": 369.229, + "r_x2": 388.712, + "r_y2": 386.303, + "r_x3": 307.267, + "r_y3": 386.303, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "USA", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 24, + "rect": { + "r_x0": 393.381, + "r_y0": 369.229, + "r_x1": 444.962, + "r_y1": 369.229, + "r_x2": 444.962, + "r_y2": 386.303, + "r_x3": 393.381, + "r_y3": 386.303, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "10", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 25, + "rect": { + "r_x0": 449.712, + "r_y0": 369.372, + "r_x1": 502.644, + "r_y1": 369.372, + "r_x2": 502.644, + "r_y2": 386.271, + "r_x3": 449.712, + "r_y3": 386.271, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$333.21", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 26, + "rect": { + "r_x0": 508.241, + "r_y0": 369.372, + "r_x1": 559.852, + "r_y1": 369.372, + "r_x2": 559.852, + "r_y2": 386.271, + "r_x3": 508.241, + "r_y3": 386.271, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$3,332.01", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 27, + "rect": { + "r_x0": 50.001, + "r_y0": 321.607, + "r_x1": 302.979, + "r_y1": 321.607, + "r_x2": 302.979, + "r_y2": 352.339, + "r_x3": 50.001, + "r_y3": 352.339, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Original Honda Cover Handle Front (Disk Brake) For Beat Carb Version 1", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 28, + "rect": { + "r_x0": 307.267, + "r_y0": 335.599, + "r_x1": 388.712, + "r_y1": 335.599, + "r_x2": 388.712, + "r_y2": 352.293, + "r_x3": 307.267, + "r_y3": 352.293, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "USA", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 29, + "rect": { + "r_x0": 393.381, + "r_y0": 335.599, + "r_x1": 444.962, + "r_y1": 335.599, + "r_x2": 444.962, + "r_y2": 352.293, + "r_x3": 393.381, + "r_y3": 352.293, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "12", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 30, + "rect": { + "r_x0": 449.712, + "r_y0": 335.441, + "r_x1": 502.644, + "r_y1": 335.441, + "r_x2": 502.644, + "r_y2": 352.34, + "r_x3": 449.712, + "r_y3": 352.34, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$282.92", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 31, + "rect": { + "r_x0": 508.241, + "r_y0": 335.441, + "r_x1": 559.852, + "r_y1": 335.441, + "r_x2": 559.852, + "r_y2": 352.34, + "r_x3": 508.241, + "r_y3": 352.34, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$3,395.04", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 32, + "rect": { + "r_x0": 50.001, + "r_y0": 285.675, + "r_x1": 302.979, + "r_y1": 285.675, + "r_x2": 302.979, + "r_y2": 316.408, + "r_x3": 50.001, + "r_y3": 316.408, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Original Honda Cowl Under (Engine Cover) For Rs 125 \u2013 Black", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 33, + "rect": { + "r_x0": 307.267, + "r_y0": 299.693, + "r_x1": 388.712, + "r_y1": 299.693, + "r_x2": 388.712, + "r_y2": 316.387, + "r_x3": 307.267, + "r_y3": 316.387, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "USA", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 34, + "rect": { + "r_x0": 393.381, + "r_y0": 299.693, + "r_x1": 444.962, + "r_y1": 299.693, + "r_x2": 444.962, + "r_y2": 316.387, + "r_x3": 393.381, + "r_y3": 316.387, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "80", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 35, + "rect": { + "r_x0": 449.712, + "r_y0": 299.509, + "r_x1": 502.644, + "r_y1": 299.509, + "r_x2": 502.644, + "r_y2": 316.408, + "r_x3": 449.712, + "r_y3": 316.408, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$100.00", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 36, + "rect": { + "r_x0": 508.241, + "r_y0": 299.509, + "r_x1": 559.852, + "r_y1": 299.509, + "r_x2": 559.852, + "r_y2": 316.408, + "r_x3": 508.241, + "r_y3": 316.408, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$8,000.00", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 37, + "rect": { + "r_x0": 50.001, + "r_y0": 248.744, + "r_x1": 302.979, + "r_y1": 248.744, + "r_x2": 302.979, + "r_y2": 279.476, + "r_x3": 50.001, + "r_y3": 279.476, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Original Honda Cover Set Left and Right For XRM 110 \u2013 Red", + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 38, + "rect": { + "r_x0": 307.267, + "r_y0": 262.407, + "r_x1": 388.712, + "r_y1": 262.407, + "r_x2": 388.712, + "r_y2": 279.48, + "r_x3": 307.267, + "r_y3": 279.48, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "USA", + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 39, + "rect": { + "r_x0": 393.381, + "r_y0": 262.407, + "r_x1": 444.962, + "r_y1": 262.407, + "r_x2": 444.962, + "r_y2": 279.48, + "r_x3": 393.381, + "r_y3": 279.48, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "10", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 40, + "rect": { + "r_x0": 449.712, + "r_y0": 262.578, + "r_x1": 502.644, + "r_y1": 262.578, + "r_x2": 502.644, + "r_y2": 279.476, + "r_x3": 449.712, + "r_y3": 279.476, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$10.73", + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 41, + "rect": { + "r_x0": 508.241, + "r_y0": 262.578, + "r_x1": 559.852, + "r_y1": 262.578, + "r_x2": 559.852, + "r_y2": 279.476, + "r_x3": 508.241, + "r_y3": 279.476, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$107.03", + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 42, + "rect": { + "r_x0": 50.001, + "r_y0": 210.812, + "r_x1": 302.979, + "r_y1": 210.812, + "r_x2": 302.979, + "r_y2": 241.545, + "r_x3": 50.001, + "r_y3": 241.545, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 43, + "rect": { + "r_x0": 307.267, + "r_y0": 224.5, + "r_x1": 388.712, + "r_y1": 224.5, + "r_x2": 388.712, + "r_y2": 241.574, + "r_x3": 307.267, + "r_y3": 241.574, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 44, + "rect": { + "r_x0": 393.381, + "r_y0": 224.5, + "r_x1": 444.962, + "r_y1": 224.5, + "r_x2": 444.962, + "r_y2": 241.574, + "r_x3": 393.381, + "r_y3": 241.574, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 45, + "rect": { + "r_x0": 449.712, + "r_y0": 224.646, + "r_x1": 502.644, + "r_y1": 224.646, + "r_x2": 502.644, + "r_y2": 241.545, + "r_x3": 449.712, + "r_y3": 241.545, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 46, + "rect": { + "r_x0": 508.241, + "r_y0": 224.646, + "r_x1": 559.852, + "r_y1": 224.646, + "r_x2": 559.852, + "r_y2": 241.545, + "r_x3": 508.241, + "r_y3": 241.545, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 47, + "rect": { + "r_x0": 50.001, + "r_y0": 111.743, + "r_x1": 301.82, + "r_y1": 111.743, + "r_x2": 301.82, + "r_y2": 123.851, + "r_x3": 50.001, + "r_y3": 123.851, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "Signature", + "widget_field_type": "/Tx" + }, + { + "index": 48, + "rect": { + "r_x0": 50.001, + "r_y0": 80.492, + "r_x1": 236.26, + "r_y1": 80.492, + "r_x2": 236.26, + "r_y2": 92.6, + "r_x3": 50.001, + "r_y3": 92.6, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "Jose S Lares", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 49, + "rect": { + "r_x0": 247.243, + "r_y0": 80.492, + "r_x1": 304.265, + "r_y1": 80.492, + "r_x2": 304.265, + "r_y2": 92.6, + "r_x3": 247.243, + "r_y3": 92.6, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "01/20/20", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 50, + "rect": { + "r_x0": 449.441, + "r_y0": 190.612, + "r_x1": 559.899, + "r_y1": 190.612, + "r_x2": 559.899, + "r_y2": 204.65, + "r_x3": 449.441, + "r_y3": 204.65, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "12.23", + "widget_field_name": "0", + "widget_field_type": "/Tx" + }, + { + "index": 51, + "rect": { + "r_x0": 449.441, + "r_y0": 174.668, + "r_x1": 559.899, + "r_y1": 174.668, + "r_x2": 559.899, + "r_y2": 188.706, + "r_x3": 449.441, + "r_y3": 188.706, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "881.21", + "widget_field_name": "1", + "widget_field_type": "/Tx" + }, + { + "index": 52, + "rect": { + "r_x0": 449.441, + "r_y0": 158.724, + "r_x1": 559.899, + "r_y1": 158.724, + "r_x2": 559.899, + "r_y2": 172.762, + "r_x3": 449.441, + "r_y3": 172.762, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "0.00", + "widget_field_name": "2", + "widget_field_type": "/Tx" + }, + { + "index": 53, + "rect": { + "r_x0": 449.441, + "r_y0": 142.779, + "r_x1": 559.899, + "r_y1": 142.779, + "r_x2": 559.899, + "r_y2": 156.817, + "r_x3": 449.441, + "r_y3": 156.817, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "0.00", + "widget_field_name": "3", + "widget_field_type": "/Tx" + }, + { + "index": 54, + "rect": { + "r_x0": 449.441, + "r_y0": 126.835, + "r_x1": 559.899, + "r_y1": 126.835, + "r_x2": 559.899, + "r_y2": 140.873, + "r_x3": 449.441, + "r_y3": 140.873, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "33.11", + "widget_field_name": "4", + "widget_field_type": "/Tx" + }, + { + "index": 55, + "rect": { + "r_x0": 449.441, + "r_y0": 110.891, + "r_x1": 559.899, + "r_y1": 110.891, + "r_x2": 559.899, + "r_y2": 124.929, + "r_x3": 449.441, + "r_y3": 124.929, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "0.00", + "widget_field_name": "5", + "widget_field_type": "/Tx" + }, + { + "index": 56, + "rect": { + "r_x0": 449.441, + "r_y0": 94.947, + "r_x1": 559.899, + "r_y1": 94.947, + "r_x2": 559.899, + "r_y2": 108.985, + "r_x3": 449.441, + "r_y3": 108.985, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "88.21", + "widget_field_name": "6", + "widget_field_type": "/Tx" + }, + { + "index": 57, + "rect": { + "r_x0": 449.441, + "r_y0": 79.002, + "r_x1": 559.899, + "r_y1": 79.002, + "r_x2": 559.899, + "r_y2": 93.04, + "r_x3": 449.441, + "r_y3": 93.04, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "73.00", + "widget_field_name": "7", + "widget_field_type": "/Tx" + }, + { + "index": 58, + "rect": { + "r_x0": 449.441, + "r_y0": 77.096, + "r_x1": 559.899, + "r_y1": 77.096, + "r_x2": 559.899, + "r_y2": 63.058, + "r_x3": 449.441, + "r_y3": 63.058, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "$15,922.11", + "widget_field_name": "8", + "widget_field_type": "/Tx" + } + ], + "hyperlinks": [], + "lines": [], + "shapes": [ + { + "index": 0, + "parent_id": 0, + "points": [ + [ + 50.25, + 723.5 + ], + [ + 115.25, + 723.5 + ], + [ + 115.25, + 707.5 + ], + [ + 50.25, + 707.5 + ], + [ + 50.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": -1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 1, + "parent_id": 0, + "points": [ + [ + 115.25, + 723.5 + ], + [ + 220.25, + 723.5 + ], + [ + 220.25, + 707.5 + ], + [ + 115.25, + 707.5 + ], + [ + 115.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": -1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 2, + "parent_id": 0, + "points": [ + [ + 220.25, + 723.5 + ], + [ + 325.25, + 723.5 + ], + [ + 325.25, + 707.5 + ], + [ + 220.25, + 707.5 + ], + [ + 220.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": -1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 3, + "parent_id": 0, + "points": [ + [ + 325.25, + 723.5 + ], + [ + 561.75, + 723.5 + ], + [ + 561.75, + 707.5 + ], + [ + 325.25, + 707.5 + ], + [ + 325.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": -1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 4, + "parent_id": 0, + "points": [ + [ + 115.25, + 707.75 + ], + [ + 115.25, + 723.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 5, + "parent_id": 0, + "points": [ + [ + 50.5, + 707.5 + ], + [ + 115.25, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 6, + "parent_id": 0, + "points": [ + [ + 115.25, + 707.5 + ], + [ + 220.0, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 7, + "parent_id": 0, + "points": [ + [ + 115.25, + 687.75 + ], + [ + 115.25, + 707.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 8, + "parent_id": 0, + "points": [ + [ + 220.5, + 707.5 + ], + [ + 325.0, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 9, + "parent_id": 0, + "points": [ + [ + 325.5, + 707.5 + ], + [ + 561.5, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 10, + "parent_id": 0, + "points": [ + [ + 50.0, + 687.5 + ], + [ + 115.25, + 687.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 11, + "parent_id": 0, + "points": [ + [ + 115.25, + 687.5 + ], + [ + 220.25, + 687.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 12, + "parent_id": 0, + "points": [ + [ + 220.25, + 687.5 + ], + [ + 325.25, + 687.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 13, + "parent_id": 0, + "points": [ + [ + 325.25, + 687.5 + ], + [ + 562.0, + 687.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 14, + "parent_id": 0, + "points": [ + [ + 50.0, + 723.5 + ], + [ + 115.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 15, + "parent_id": 0, + "points": [ + [ + 50.25, + 707.5 + ], + [ + 50.25, + 723.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 16, + "parent_id": 0, + "points": [ + [ + 115.25, + 723.5 + ], + [ + 220.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 17, + "parent_id": 0, + "points": [ + [ + 220.25, + 723.5 + ], + [ + 325.25, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 18, + "parent_id": 0, + "points": [ + [ + 220.25, + 707.5 + ], + [ + 220.25, + 723.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 19, + "parent_id": 0, + "points": [ + [ + 325.25, + 723.5 + ], + [ + 562.0, + 723.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 20, + "parent_id": 0, + "points": [ + [ + 325.25, + 707.5 + ], + [ + 325.25, + 723.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 21, + "parent_id": 0, + "points": [ + [ + 561.75, + 707.5 + ], + [ + 561.75, + 723.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 22, + "parent_id": 0, + "points": [ + [ + 50.25, + 687.75 + ], + [ + 50.25, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 23, + "parent_id": 0, + "points": [ + [ + 220.25, + 687.75 + ], + [ + 220.25, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 24, + "parent_id": 0, + "points": [ + [ + 325.25, + 687.75 + ], + [ + 325.25, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 25, + "parent_id": 0, + "points": [ + [ + 561.75, + 687.75 + ], + [ + 561.75, + 707.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 26, + "parent_id": 0, + "points": [ + [ + 50.0, + 635.75 + ], + [ + 135.0, + 635.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 27, + "parent_id": 0, + "points": [ + [ + 135.0, + 635.75 + ], + [ + 562.0, + 635.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 28, + "parent_id": 0, + "points": [ + [ + 50.0, + 575.75 + ], + [ + 135.0, + 575.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 29, + "parent_id": 0, + "points": [ + [ + 135.0, + 575.75 + ], + [ + 562.0, + 575.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 1.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 30, + "parent_id": 0, + "points": [ + [ + 135.0, + 655.75 + ], + [ + 562.0, + 655.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 31, + "parent_id": 0, + "points": [ + [ + 135.0, + 615.75 + ], + [ + 562.0, + 615.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 32, + "parent_id": 0, + "points": [ + [ + 135.0, + 595.75 + ], + [ + 562.0, + 595.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 33, + "parent_id": 0, + "points": [ + [ + 135.0, + 555.75 + ], + [ + 562.0, + 555.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 34, + "parent_id": 0, + "points": [ + [ + 50.0, + 675.75 + ], + [ + 135.0, + 675.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 35, + "parent_id": 0, + "points": [ + [ + 135.0, + 675.75 + ], + [ + 562.0, + 675.75 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 36, + "parent_id": 0, + "points": [ + [ + 50.0, + 534.25 + ], + [ + 135.0, + 534.25 + ], + [ + 135.0, + 518.25 + ], + [ + 50.0, + 518.25 + ], + [ + 50.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 37, + "parent_id": 0, + "points": [ + [ + 306.0, + 534.25 + ], + [ + 391.5, + 534.25 + ], + [ + 391.5, + 518.25 + ], + [ + 306.0, + 518.25 + ], + [ + 306.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 38, + "parent_id": 0, + "points": [ + [ + 50.0, + 518.25 + ], + [ + 135.0, + 518.25 + ], + [ + 135.0, + 502.25 + ], + [ + 50.0, + 502.25 + ], + [ + 50.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 39, + "parent_id": 0, + "points": [ + [ + 306.0, + 518.25 + ], + [ + 391.5, + 518.25 + ], + [ + 391.5, + 502.25 + ], + [ + 306.0, + 502.25 + ], + [ + 306.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 40, + "parent_id": 0, + "points": [ + [ + 50.0, + 502.25 + ], + [ + 135.0, + 502.25 + ], + [ + 135.0, + 486.25 + ], + [ + 50.0, + 486.25 + ], + [ + 50.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 41, + "parent_id": 0, + "points": [ + [ + 306.0, + 502.25 + ], + [ + 391.5, + 502.25 + ], + [ + 391.5, + 486.25 + ], + [ + 306.0, + 486.25 + ], + [ + 306.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 42, + "parent_id": 0, + "points": [ + [ + 50.0, + 486.25 + ], + [ + 135.0, + 486.25 + ], + [ + 135.0, + 470.25 + ], + [ + 50.0, + 470.25 + ], + [ + 50.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 43, + "parent_id": 0, + "points": [ + [ + 306.0, + 486.25 + ], + [ + 391.5, + 486.25 + ], + [ + 391.5, + 422.25 + ], + [ + 306.0, + 422.25 + ], + [ + 306.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 44, + "parent_id": 0, + "points": [ + [ + 50.0, + 470.25 + ], + [ + 135.0, + 470.25 + ], + [ + 135.0, + 454.25 + ], + [ + 50.0, + 454.25 + ], + [ + 50.0, + 470.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 45, + "parent_id": 0, + "points": [ + [ + 50.0, + 454.25 + ], + [ + 135.0, + 454.25 + ], + [ + 135.0, + 438.25 + ], + [ + 50.0, + 438.25 + ], + [ + 50.0, + 454.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 46, + "parent_id": 0, + "points": [ + [ + 50.0, + 438.25 + ], + [ + 135.0, + 438.25 + ], + [ + 135.0, + 422.25 + ], + [ + 50.0, + 422.25 + ], + [ + 50.0, + 438.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 47, + "parent_id": 0, + "points": [ + [ + 50.0, + 518.25 + ], + [ + 135.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 48, + "parent_id": 0, + "points": [ + [ + 135.0, + 518.25 + ], + [ + 220.5, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 49, + "parent_id": 0, + "points": [ + [ + 50.0, + 502.25 + ], + [ + 135.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 50, + "parent_id": 0, + "points": [ + [ + 135.0, + 502.25 + ], + [ + 220.5, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 51, + "parent_id": 0, + "points": [ + [ + 50.0, + 486.25 + ], + [ + 135.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 52, + "parent_id": 0, + "points": [ + [ + 135.0, + 486.25 + ], + [ + 220.5, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 53, + "parent_id": 0, + "points": [ + [ + 50.0, + 470.25 + ], + [ + 135.0, + 470.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 54, + "parent_id": 0, + "points": [ + [ + 135.0, + 470.25 + ], + [ + 220.5, + 470.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 55, + "parent_id": 0, + "points": [ + [ + 50.0, + 454.25 + ], + [ + 135.0, + 454.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 56, + "parent_id": 0, + "points": [ + [ + 135.0, + 454.25 + ], + [ + 220.5, + 454.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 57, + "parent_id": 0, + "points": [ + [ + 50.0, + 438.25 + ], + [ + 135.0, + 438.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 58, + "parent_id": 0, + "points": [ + [ + 135.0, + 438.25 + ], + [ + 220.5, + 438.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 59, + "parent_id": 0, + "points": [ + [ + 50.0, + 422.25 + ], + [ + 135.0, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 60, + "parent_id": 0, + "points": [ + [ + 135.0, + 422.25 + ], + [ + 220.5, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 61, + "parent_id": 0, + "points": [ + [ + 220.5, + 518.25 + ], + [ + 306.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 62, + "parent_id": 0, + "points": [ + [ + 220.5, + 502.25 + ], + [ + 306.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 63, + "parent_id": 0, + "points": [ + [ + 220.5, + 486.25 + ], + [ + 306.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 64, + "parent_id": 0, + "points": [ + [ + 220.5, + 470.25 + ], + [ + 306.0, + 470.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 65, + "parent_id": 0, + "points": [ + [ + 220.5, + 454.25 + ], + [ + 306.0, + 454.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 66, + "parent_id": 0, + "points": [ + [ + 220.5, + 438.25 + ], + [ + 306.0, + 438.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 67, + "parent_id": 0, + "points": [ + [ + 220.5, + 422.25 + ], + [ + 306.0, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 68, + "parent_id": 0, + "points": [ + [ + 50.0, + 534.25 + ], + [ + 135.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 69, + "parent_id": 0, + "points": [ + [ + 135.0, + 534.25 + ], + [ + 220.5, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 70, + "parent_id": 0, + "points": [ + [ + 220.5, + 534.25 + ], + [ + 306.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 71, + "parent_id": 0, + "points": [ + [ + 306.0, + 534.25 + ], + [ + 391.5, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 72, + "parent_id": 0, + "points": [ + [ + 391.5, + 534.25 + ], + [ + 477.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 73, + "parent_id": 0, + "points": [ + [ + 477.0, + 534.25 + ], + [ + 562.0, + 534.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 74, + "parent_id": 0, + "points": [ + [ + 306.0, + 518.25 + ], + [ + 391.5, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 75, + "parent_id": 0, + "points": [ + [ + 391.5, + 518.25 + ], + [ + 477.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 76, + "parent_id": 0, + "points": [ + [ + 477.0, + 518.25 + ], + [ + 562.0, + 518.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 77, + "parent_id": 0, + "points": [ + [ + 306.0, + 502.25 + ], + [ + 391.5, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 78, + "parent_id": 0, + "points": [ + [ + 391.5, + 502.25 + ], + [ + 477.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 79, + "parent_id": 0, + "points": [ + [ + 477.0, + 502.25 + ], + [ + 562.0, + 502.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 80, + "parent_id": 0, + "points": [ + [ + 306.0, + 486.25 + ], + [ + 391.5, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 81, + "parent_id": 0, + "points": [ + [ + 306.0, + 422.25 + ], + [ + 391.5, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 82, + "parent_id": 0, + "points": [ + [ + 391.5, + 486.25 + ], + [ + 477.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 83, + "parent_id": 0, + "points": [ + [ + 477.0, + 486.25 + ], + [ + 562.0, + 486.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 84, + "parent_id": 0, + "points": [ + [ + 391.5, + 422.25 + ], + [ + 477.0, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 85, + "parent_id": 0, + "points": [ + [ + 477.0, + 422.25 + ], + [ + 562.0, + 422.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 86, + "parent_id": 0, + "points": [ + [ + 50.0, + 420.5 + ], + [ + 305.75, + 420.5 + ], + [ + 305.75, + 391.5 + ], + [ + 50.0, + 391.5 + ], + [ + 50.0, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 87, + "parent_id": 0, + "points": [ + [ + 305.75, + 420.5 + ], + [ + 391.25, + 420.5 + ], + [ + 391.25, + 391.5 + ], + [ + 305.75, + 391.5 + ], + [ + 305.75, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 88, + "parent_id": 0, + "points": [ + [ + 391.25, + 420.5 + ], + [ + 448.0, + 420.5 + ], + [ + 448.0, + 391.5 + ], + [ + 391.25, + 391.5 + ], + [ + 391.25, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 89, + "parent_id": 0, + "points": [ + [ + 448.0, + 420.5 + ], + [ + 504.75, + 420.5 + ], + [ + 504.75, + 391.5 + ], + [ + 448.0, + 391.5 + ], + [ + 448.0, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 90, + "parent_id": 0, + "points": [ + [ + 504.75, + 420.5 + ], + [ + 561.5, + 420.5 + ], + [ + 561.5, + 391.5 + ], + [ + 504.75, + 391.5 + ], + [ + 504.75, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 91, + "parent_id": 0, + "points": [ + [ + 305.75, + 391.75 + ], + [ + 305.75, + 419.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 92, + "parent_id": 0, + "points": [ + [ + 391.25, + 391.75 + ], + [ + 391.25, + 419.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 93, + "parent_id": 0, + "points": [ + [ + 448.0, + 391.75 + ], + [ + 448.0, + 419.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 94, + "parent_id": 0, + "points": [ + [ + 50.0, + 391.5 + ], + [ + 305.75, + 391.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 95, + "parent_id": 0, + "points": [ + [ + 305.75, + 391.5 + ], + [ + 391.25, + 391.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 96, + "parent_id": 0, + "points": [ + [ + 305.75, + 354.75 + ], + [ + 305.75, + 391.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 97, + "parent_id": 0, + "points": [ + [ + 391.25, + 391.5 + ], + [ + 448.0, + 391.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 98, + "parent_id": 0, + "points": [ + [ + 391.25, + 354.75 + ], + [ + 391.25, + 391.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 99, + "parent_id": 0, + "points": [ + [ + 448.0, + 391.5 + ], + [ + 504.75, + 391.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 100, + "parent_id": 0, + "points": [ + [ + 448.0, + 354.75 + ], + [ + 448.0, + 391.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 101, + "parent_id": 0, + "points": [ + [ + 504.75, + 354.75 + ], + [ + 504.75, + 391.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 102, + "parent_id": 0, + "points": [ + [ + 50.0, + 354.5 + ], + [ + 305.75, + 354.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 103, + "parent_id": 0, + "points": [ + [ + 305.75, + 354.5 + ], + [ + 391.25, + 354.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 104, + "parent_id": 0, + "points": [ + [ + 305.75, + 317.75 + ], + [ + 305.75, + 354.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 105, + "parent_id": 0, + "points": [ + [ + 391.25, + 354.5 + ], + [ + 448.0, + 354.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 106, + "parent_id": 0, + "points": [ + [ + 391.25, + 317.75 + ], + [ + 391.25, + 354.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 107, + "parent_id": 0, + "points": [ + [ + 448.0, + 354.5 + ], + [ + 504.75, + 354.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 108, + "parent_id": 0, + "points": [ + [ + 448.0, + 317.75 + ], + [ + 448.0, + 354.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 109, + "parent_id": 0, + "points": [ + [ + 504.75, + 354.5 + ], + [ + 561.5, + 354.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 110, + "parent_id": 0, + "points": [ + [ + 504.75, + 317.75 + ], + [ + 504.75, + 354.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 111, + "parent_id": 0, + "points": [ + [ + 50.0, + 317.5 + ], + [ + 305.75, + 317.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 112, + "parent_id": 0, + "points": [ + [ + 305.75, + 317.5 + ], + [ + 391.25, + 317.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 113, + "parent_id": 0, + "points": [ + [ + 305.75, + 280.75 + ], + [ + 305.75, + 317.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 114, + "parent_id": 0, + "points": [ + [ + 391.25, + 317.5 + ], + [ + 448.0, + 317.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 115, + "parent_id": 0, + "points": [ + [ + 391.25, + 280.75 + ], + [ + 391.25, + 317.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 116, + "parent_id": 0, + "points": [ + [ + 448.0, + 317.5 + ], + [ + 504.75, + 317.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 117, + "parent_id": 0, + "points": [ + [ + 448.0, + 280.75 + ], + [ + 448.0, + 317.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 118, + "parent_id": 0, + "points": [ + [ + 504.75, + 317.5 + ], + [ + 561.5, + 317.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 119, + "parent_id": 0, + "points": [ + [ + 504.75, + 280.75 + ], + [ + 504.75, + 317.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 120, + "parent_id": 0, + "points": [ + [ + 50.0, + 280.5 + ], + [ + 305.75, + 280.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 121, + "parent_id": 0, + "points": [ + [ + 305.75, + 280.5 + ], + [ + 391.25, + 280.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 122, + "parent_id": 0, + "points": [ + [ + 305.75, + 243.75 + ], + [ + 305.75, + 280.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 123, + "parent_id": 0, + "points": [ + [ + 391.25, + 280.5 + ], + [ + 448.0, + 280.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 124, + "parent_id": 0, + "points": [ + [ + 391.25, + 243.75 + ], + [ + 391.25, + 280.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 125, + "parent_id": 0, + "points": [ + [ + 448.0, + 280.5 + ], + [ + 504.75, + 280.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 126, + "parent_id": 0, + "points": [ + [ + 448.0, + 243.75 + ], + [ + 448.0, + 280.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 127, + "parent_id": 0, + "points": [ + [ + 504.75, + 280.5 + ], + [ + 561.5, + 280.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 128, + "parent_id": 0, + "points": [ + [ + 504.75, + 243.75 + ], + [ + 504.75, + 280.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 129, + "parent_id": 0, + "points": [ + [ + 50.0, + 243.5 + ], + [ + 305.75, + 243.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 130, + "parent_id": 0, + "points": [ + [ + 305.75, + 243.5 + ], + [ + 391.25, + 243.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 131, + "parent_id": 0, + "points": [ + [ + 305.75, + 208.0 + ], + [ + 305.75, + 243.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 132, + "parent_id": 0, + "points": [ + [ + 391.25, + 243.5 + ], + [ + 448.0, + 243.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 133, + "parent_id": 0, + "points": [ + [ + 391.25, + 208.0 + ], + [ + 391.25, + 243.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 134, + "parent_id": 0, + "points": [ + [ + 448.0, + 243.5 + ], + [ + 504.75, + 243.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 135, + "parent_id": 0, + "points": [ + [ + 448.0, + 208.0 + ], + [ + 448.0, + 243.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 136, + "parent_id": 0, + "points": [ + [ + 504.75, + 243.5 + ], + [ + 561.5, + 243.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 137, + "parent_id": 0, + "points": [ + [ + 504.75, + 208.0 + ], + [ + 504.75, + 243.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 138, + "parent_id": 0, + "points": [ + [ + 50.0, + 158.5 + ], + [ + 305.75, + 158.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 139, + "parent_id": 0, + "points": [ + [ + 504.75, + 391.75 + ], + [ + 504.75, + 419.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 140, + "parent_id": 0, + "points": [ + [ + 504.75, + 391.5 + ], + [ + 561.5, + 391.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 141, + "parent_id": 0, + "points": [ + [ + 50.0, + 206.5 + ], + [ + 305.75, + 206.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 142, + "parent_id": 0, + "points": [ + [ + 305.75, + 158.75 + ], + [ + 305.75, + 174.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 143, + "parent_id": 0, + "points": [ + [ + 305.75, + 158.5 + ], + [ + 391.25, + 158.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 144, + "parent_id": 0, + "points": [ + [ + 305.75, + 142.75 + ], + [ + 305.75, + 158.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 145, + "parent_id": 0, + "points": [ + [ + 391.25, + 158.5 + ], + [ + 448.0, + 158.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 146, + "parent_id": 0, + "points": [ + [ + 305.5, + 142.5 + ], + [ + 391.25, + 142.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 147, + "parent_id": 0, + "points": [ + [ + 305.75, + 126.75 + ], + [ + 305.75, + 142.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 148, + "parent_id": 0, + "points": [ + [ + 391.25, + 142.5 + ], + [ + 448.0, + 142.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 149, + "parent_id": 0, + "points": [ + [ + 305.5, + 126.5 + ], + [ + 391.25, + 126.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 150, + "parent_id": 0, + "points": [ + [ + 305.75, + 110.75 + ], + [ + 305.75, + 126.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 151, + "parent_id": 0, + "points": [ + [ + 391.25, + 126.5 + ], + [ + 448.0, + 126.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 152, + "parent_id": 0, + "points": [ + [ + 305.5, + 110.5 + ], + [ + 391.25, + 110.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 153, + "parent_id": 0, + "points": [ + [ + 305.75, + 94.75 + ], + [ + 305.75, + 110.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 154, + "parent_id": 0, + "points": [ + [ + 391.25, + 110.5 + ], + [ + 448.0, + 110.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 155, + "parent_id": 0, + "points": [ + [ + 305.5, + 94.5 + ], + [ + 391.25, + 94.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 156, + "parent_id": 0, + "points": [ + [ + 305.75, + 78.75 + ], + [ + 305.75, + 94.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 157, + "parent_id": 0, + "points": [ + [ + 391.25, + 94.5 + ], + [ + 448.0, + 94.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 158, + "parent_id": 0, + "points": [ + [ + 305.5, + 78.5 + ], + [ + 391.25, + 78.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 159, + "parent_id": 0, + "points": [ + [ + 305.75, + 62.75 + ], + [ + 305.75, + 78.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 160, + "parent_id": 0, + "points": [ + [ + 391.25, + 78.5 + ], + [ + 448.0, + 78.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 161, + "parent_id": 0, + "points": [ + [ + 305.5, + 62.5 + ], + [ + 391.25, + 62.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 162, + "parent_id": 0, + "points": [ + [ + 391.25, + 62.5 + ], + [ + 448.0, + 62.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 163, + "parent_id": 0, + "points": [ + [ + 305.75, + 174.75 + ], + [ + 305.75, + 190.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 164, + "parent_id": 0, + "points": [ + [ + 305.5, + 174.5 + ], + [ + 391.25, + 174.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 165, + "parent_id": 0, + "points": [ + [ + 391.25, + 174.5 + ], + [ + 448.0, + 174.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 166, + "parent_id": 0, + "points": [ + [ + 305.75, + 206.5 + ], + [ + 391.25, + 206.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 167, + "parent_id": 0, + "points": [ + [ + 391.25, + 206.5 + ], + [ + 448.0, + 206.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 168, + "parent_id": 0, + "points": [ + [ + 305.75, + 190.75 + ], + [ + 305.75, + 205.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 169, + "parent_id": 0, + "points": [ + [ + 305.5, + 190.5 + ], + [ + 391.25, + 190.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 170, + "parent_id": 0, + "points": [ + [ + 391.25, + 190.5 + ], + [ + 448.0, + 190.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 171, + "parent_id": 0, + "points": [ + [ + 448.0, + 206.5 + ], + [ + 504.75, + 206.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 172, + "parent_id": 0, + "points": [ + [ + 504.75, + 206.5 + ], + [ + 561.5, + 206.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 173, + "parent_id": 0, + "points": [ + [ + 448.0, + 190.75 + ], + [ + 448.0, + 205.0 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 174, + "parent_id": 0, + "points": [ + [ + 448.0, + 190.5 + ], + [ + 504.75, + 190.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 175, + "parent_id": 0, + "points": [ + [ + 448.0, + 174.75 + ], + [ + 448.0, + 190.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 176, + "parent_id": 0, + "points": [ + [ + 504.75, + 190.5 + ], + [ + 561.5, + 190.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 177, + "parent_id": 0, + "points": [ + [ + 448.0, + 174.5 + ], + [ + 504.75, + 174.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 178, + "parent_id": 0, + "points": [ + [ + 448.0, + 158.75 + ], + [ + 448.0, + 174.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 179, + "parent_id": 0, + "points": [ + [ + 504.75, + 174.5 + ], + [ + 561.5, + 174.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 180, + "parent_id": 0, + "points": [ + [ + 448.0, + 158.5 + ], + [ + 504.75, + 158.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 181, + "parent_id": 0, + "points": [ + [ + 448.0, + 142.75 + ], + [ + 448.0, + 158.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 182, + "parent_id": 0, + "points": [ + [ + 504.75, + 158.5 + ], + [ + 561.5, + 158.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 183, + "parent_id": 0, + "points": [ + [ + 448.0, + 142.5 + ], + [ + 504.75, + 142.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 184, + "parent_id": 0, + "points": [ + [ + 448.0, + 126.75 + ], + [ + 448.0, + 142.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 185, + "parent_id": 0, + "points": [ + [ + 504.75, + 142.5 + ], + [ + 561.5, + 142.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 186, + "parent_id": 0, + "points": [ + [ + 448.0, + 126.5 + ], + [ + 504.75, + 126.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 187, + "parent_id": 0, + "points": [ + [ + 448.0, + 110.75 + ], + [ + 448.0, + 126.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 188, + "parent_id": 0, + "points": [ + [ + 504.75, + 126.5 + ], + [ + 561.5, + 126.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 189, + "parent_id": 0, + "points": [ + [ + 448.0, + 110.5 + ], + [ + 504.75, + 110.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 190, + "parent_id": 0, + "points": [ + [ + 448.0, + 94.75 + ], + [ + 448.0, + 110.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 191, + "parent_id": 0, + "points": [ + [ + 504.75, + 110.5 + ], + [ + 561.5, + 110.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 192, + "parent_id": 0, + "points": [ + [ + 448.0, + 94.5 + ], + [ + 504.75, + 94.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 193, + "parent_id": 0, + "points": [ + [ + 448.0, + 78.75 + ], + [ + 448.0, + 94.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 194, + "parent_id": 0, + "points": [ + [ + 504.75, + 94.5 + ], + [ + 561.5, + 94.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 195, + "parent_id": 0, + "points": [ + [ + 448.0, + 78.5 + ], + [ + 504.75, + 78.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 196, + "parent_id": 0, + "points": [ + [ + 448.0, + 62.75 + ], + [ + 448.0, + 78.25 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 197, + "parent_id": 0, + "points": [ + [ + 504.75, + 78.5 + ], + [ + 561.5, + 78.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 198, + "parent_id": 0, + "points": [ + [ + 448.0, + 62.5 + ], + [ + 504.75, + 62.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 199, + "parent_id": 0, + "points": [ + [ + 504.75, + 62.5 + ], + [ + 561.5, + 62.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 0.5, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 200, + "parent_id": 0, + "points": [ + [ + 50.0, + 110.5 + ], + [ + 305.5, + 110.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 2.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 201, + "parent_id": 0, + "points": [ + [ + 50.0, + 78.5 + ], + [ + 305.5, + 78.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 2.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 202, + "parent_id": 0, + "points": [ + [ + 50.0, + 420.5 + ], + [ + 305.75, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 203, + "parent_id": 0, + "points": [ + [ + 305.75, + 420.5 + ], + [ + 391.25, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 204, + "parent_id": 0, + "points": [ + [ + 391.25, + 420.5 + ], + [ + 448.0, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 205, + "parent_id": 0, + "points": [ + [ + 448.0, + 420.5 + ], + [ + 504.75, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + }, + { + "index": 206, + "parent_id": 0, + "points": [ + [ + 504.75, + 420.5 + ], + [ + 561.5, + 420.5 + ] + ], + "coord_origin": "BOTTOMLEFT", + "has_graphics_state": true, + "line_width": 3.0, + "miter_limit": -1.0, + "line_cap": -1, + "line_join": -1, + "dash_phase": 0.0, + "dash_array": [], + "flatness": -1.0, + "rgb_stroking": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rgb_filling": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + } + } + ] +} \ No newline at end of file diff --git a/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.char.txt b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.char.txt new file mode 100644 index 0000000..b61a80c --- /dev/null +++ b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.char.txt @@ -0,0 +1,2171 @@ +(063.41, 711.08) (065.08, 711.08) (065.08, 717.89) (063.41, 717.89) /T1_0 I <|special_separator|> +(065.22, 711.08) (068.92, 711.08) (068.92, 717.89) (065.22, 717.89) /T1_0 n <|special_separator|> +(068.93, 711.08) (072.17, 711.08) (072.17, 717.89) (068.93, 717.89) /T1_0 v <|special_separator|> +(072.22, 711.08) (076.16, 711.08) (076.16, 717.89) (072.22, 717.89) /T1_0 o <|special_separator|> +(076.23, 711.08) (078.07, 711.08) (078.07, 717.89) (076.23, 717.89) /T1_0 i <|special_separator|> +(078.16, 711.08) (081.49, 711.08) (081.49, 717.89) (078.16, 717.89) /T1_0 c <|special_separator|> +(081.65, 711.08) (085.28, 711.08) (085.28, 717.89) (081.65, 717.89) /T1_0 e <|special_separator|> +(085.32, 711.08) (087.48, 711.08) (087.48, 717.89) (085.32, 717.89) /T1_0 <|special_separator|> +(087.51, 711.08) (092.26, 711.08) (092.26, 717.89) (087.51, 717.89) /T1_0 D <|special_separator|> +(092.42, 711.08) (096.46, 711.08) (096.46, 717.89) (092.42, 717.89) /T1_0 a <|special_separator|> +(096.60, 711.08) (098.28, 711.08) (098.28, 717.89) (096.60, 717.89) /T1_0 t <|special_separator|> +(098.46, 711.08) (102.09, 711.08) (102.09, 717.89) (098.46, 717.89) /T1_0 e <|special_separator|> +(153.54, 711.08) (155.21, 711.08) (155.21, 717.89) (153.54, 717.89) /T1_0 I <|special_separator|> +(155.35, 711.08) (159.05, 711.08) (159.05, 717.89) (155.35, 717.89) /T1_0 n <|special_separator|> +(159.06, 711.08) (162.31, 711.08) (162.31, 717.89) (159.06, 717.89) /T1_0 v <|special_separator|> +(162.35, 711.08) (166.29, 711.08) (166.29, 717.89) (162.35, 717.89) /T1_0 o <|special_separator|> +(166.37, 711.08) (168.20, 711.08) (168.20, 717.89) (166.37, 717.89) /T1_0 i <|special_separator|> +(168.29, 711.08) (171.62, 711.08) (171.62, 717.89) (168.29, 717.89) /T1_0 c <|special_separator|> +(171.78, 711.08) (175.42, 711.08) (175.42, 717.89) (171.78, 717.89) /T1_0 e <|special_separator|> +(175.45, 711.08) (177.61, 711.08) (177.61, 717.89) (175.45, 717.89) /T1_0 <|special_separator|> +(177.64, 711.08) (181.95, 711.08) (181.95, 717.89) (177.64, 717.89) /T1_0 # <|special_separator|> +(260.01, 711.08) (266.05, 711.08) (266.05, 717.89) (260.01, 717.89) /T1_0 O <|special_separator|> +(266.23, 711.08) (268.57, 711.08) (268.57, 717.89) (266.23, 717.89) /T1_0 r <|special_separator|> +(268.60, 711.08) (272.64, 711.08) (272.64, 717.89) (268.60, 717.89) /T1_0 d <|special_separator|> +(272.81, 711.08) (276.44, 711.08) (276.44, 717.89) (272.81, 717.89) /T1_0 e <|special_separator|> +(276.59, 711.08) (278.94, 711.08) (278.94, 717.89) (276.59, 717.89) /T1_0 r <|special_separator|> +(278.97, 711.08) (281.13, 711.08) (281.13, 717.89) (278.97, 717.89) /T1_0 <|special_separator|> +(281.17, 711.08) (285.48, 711.08) (285.48, 717.89) (281.17, 717.89) /T1_0 # <|special_separator|> +(416.60, 711.08) (422.64, 711.08) (422.64, 717.89) (416.60, 717.89) /T1_0 O <|special_separator|> +(422.83, 711.08) (424.51, 711.08) (424.51, 717.89) (422.83, 717.89) /T1_0 t <|special_separator|> +(424.69, 711.08) (428.38, 711.08) (428.38, 717.89) (424.69, 717.89) /T1_0 h <|special_separator|> +(428.52, 711.08) (432.15, 711.08) (432.15, 717.89) (428.52, 717.89) /T1_0 e <|special_separator|> +(432.30, 711.08) (434.65, 711.08) (434.65, 717.89) (432.30, 717.89) /T1_0 r <|special_separator|> +(434.68, 711.08) (436.84, 711.08) (436.84, 717.89) (434.68, 717.89) /T1_0 <|special_separator|> +(436.87, 711.08) (440.67, 711.08) (440.67, 717.89) (436.87, 717.89) /T1_0 R <|special_separator|> +(440.66, 711.08) (444.29, 711.08) (444.29, 717.89) (440.66, 717.89) /T1_0 e <|special_separator|> +(444.43, 711.08) (446.35, 711.08) (446.35, 717.89) (444.43, 717.89) /T1_0 f <|special_separator|> +(446.54, 711.08) (450.17, 711.08) (450.17, 717.89) (446.54, 717.89) /T1_0 e <|special_separator|> +(450.33, 711.08) (452.67, 711.08) (452.67, 717.89) (450.33, 717.89) /T1_0 r <|special_separator|> +(452.71, 711.08) (456.35, 711.08) (456.35, 717.89) (452.71, 717.89) /T1_0 e <|special_separator|> +(456.49, 711.08) (460.18, 711.08) (460.18, 717.89) (456.49, 717.89) /T1_0 n <|special_separator|> +(460.32, 711.08) (463.66, 711.08) (463.66, 717.89) (460.32, 717.89) /T1_0 c <|special_separator|> +(463.82, 711.08) (467.45, 711.08) (467.45, 717.89) (463.82, 717.89) /T1_0 e <|special_separator|> +(467.60, 711.08) (470.40, 711.08) (470.40, 717.89) (467.60, 717.89) /T1_0 s <|special_separator|> +(054.00, 658.22) (058.93, 658.22) (058.93, 665.78) (054.00, 665.78) /T1_1 S <|special_separator|> +(059.22, 658.22) (063.62, 658.22) (063.62, 665.78) (059.22, 665.78) /T1_1 e <|special_separator|> +(063.94, 658.22) (067.90, 658.22) (067.90, 665.78) (063.94, 665.78) /T1_1 l <|special_separator|> +(068.16, 658.22) (072.12, 658.22) (072.12, 665.78) (068.16, 665.78) /T1_1 l <|special_separator|> +(072.38, 658.22) (076.78, 658.22) (076.78, 665.78) (072.38, 665.78) /T1_1 e <|special_separator|> +(077.10, 658.22) (082.54, 658.22) (082.54, 665.78) (077.10, 665.78) /T1_1 r <|special_separator|> +(082.86, 658.22) (087.50, 658.22) (087.50, 665.78) (082.86, 665.78) /T1_1 / <|special_separator|> +(087.32, 658.22) (092.25, 658.22) (092.25, 665.78) (087.32, 665.78) /T1_1 S <|special_separator|> +(092.54, 658.22) (098.96, 658.22) (098.96, 665.78) (092.54, 665.78) /T1_1 h <|special_separator|> +(099.29, 658.22) (101.88, 658.22) (101.88, 665.78) (099.29, 665.78) /T1_1 i <|special_separator|> +(102.19, 658.22) (107.48, 658.22) (107.48, 665.78) (102.19, 665.78) /T1_1 p <|special_separator|> +(107.70, 658.22) (112.99, 658.22) (112.99, 665.78) (107.70, 665.78) /T1_1 p <|special_separator|> +(113.22, 658.22) (117.62, 658.22) (117.62, 665.78) (113.22, 665.78) /T1_1 e <|special_separator|> +(117.94, 658.22) (123.38, 658.22) (123.38, 665.78) (117.94, 665.78) /T1_1 r <|special_separator|> +(139.00, 658.21) (144.84, 658.21) (144.84, 665.03) (139.00, 665.03) /T1_0 N <|special_separator|> +(145.02, 658.21) (149.06, 658.21) (149.06, 665.03) (145.02, 665.03) /T1_0 a <|special_separator|> +(149.16, 658.21) (154.54, 658.21) (154.54, 665.03) (149.16, 665.03) /T1_0 m <|special_separator|> +(154.68, 658.21) (158.31, 658.21) (158.31, 665.03) (154.68, 665.03) /T1_0 e <|special_separator|> +(158.21, 658.21) (160.36, 658.21) (160.36, 665.03) (158.21, 665.03) /T1_0 : <|special_separator|> +(139.00, 638.21) (143.89, 638.21) (143.89, 645.03) (139.00, 645.03) /T1_0 A <|special_separator|> +(144.00, 638.21) (148.04, 638.21) (148.04, 645.03) (144.00, 645.03) /T1_0 d <|special_separator|> +(148.20, 638.21) (152.24, 638.21) (152.24, 645.03) (148.20, 645.03) /T1_0 d <|special_separator|> +(152.36, 638.21) (154.70, 638.21) (154.70, 645.03) (152.36, 645.03) /T1_0 r <|special_separator|> +(154.74, 638.21) (158.38, 638.21) (158.38, 645.03) (154.74, 645.03) /T1_0 e <|special_separator|> +(158.53, 638.21) (161.32, 638.21) (161.32, 645.03) (158.53, 645.03) /T1_0 s <|special_separator|> +(161.48, 638.21) (164.27, 638.21) (164.27, 645.03) (161.48, 645.03) /T1_0 s <|special_separator|> +(164.19, 638.21) (166.35, 638.21) (166.35, 645.03) (164.19, 645.03) /T1_0 : <|special_separator|> +(054.00, 618.22) (060.22, 618.22) (060.22, 625.78) (054.00, 625.78) /T1_1 u <|special_separator|> +(060.55, 618.22) (064.51, 618.22) (064.51, 625.78) (060.55, 625.78) /T1_1 l <|special_separator|> +(064.38, 618.22) (068.65, 618.22) (068.65, 625.78) (064.38, 625.78) /T1_1 t <|special_separator|> +(068.89, 618.22) (071.48, 618.22) (071.48, 625.78) (068.89, 625.78) /T1_1 i <|special_separator|> +(071.78, 618.22) (079.64, 618.22) (079.64, 625.78) (071.78, 625.78) /T1_1 m <|special_separator|> +(080.10, 618.22) (086.35, 618.22) (086.35, 625.78) (080.10, 625.78) /T1_1 a <|special_separator|> +(086.25, 618.22) (090.51, 618.22) (090.51, 625.78) (086.25, 625.78) /T1_1 t <|special_separator|> +(090.75, 618.22) (095.15, 618.22) (095.15, 625.78) (090.75, 625.78) /T1_1 e <|special_separator|> +(139.00, 618.21) (144.84, 618.21) (144.84, 625.03) (139.00, 625.03) /T1_0 N <|special_separator|> +(145.02, 618.21) (149.06, 618.21) (149.06, 625.03) (145.02, 625.03) /T1_0 a <|special_separator|> +(149.16, 618.21) (154.54, 618.21) (154.54, 625.03) (149.16, 625.03) /T1_0 m <|special_separator|> +(154.68, 618.21) (158.31, 618.21) (158.31, 625.03) (154.68, 625.03) /T1_0 e <|special_separator|> +(158.21, 618.21) (160.36, 618.21) (160.36, 625.03) (158.21, 625.03) /T1_0 : <|special_separator|> +(054.00, 607.62) (059.28, 607.62) (059.28, 615.18) (054.00, 615.18) /T1_1 c <|special_separator|> +(059.52, 607.62) (066.62, 607.62) (066.62, 615.18) (059.52, 615.18) /T1_1 o <|special_separator|> +(066.94, 607.62) (073.98, 607.62) (073.98, 615.18) (066.94, 615.18) /T1_1 n <|special_separator|> +(074.26, 607.62) (079.19, 607.62) (079.19, 615.18) (074.26, 615.18) /T1_1 S <|special_separator|> +(079.50, 607.62) (082.09, 607.62) (082.09, 615.18) (079.50, 615.18) /T1_1 i <|special_separator|> +(082.42, 607.62) (089.15, 607.62) (089.15, 615.18) (082.42, 615.18) /T1_1 g <|special_separator|> +(089.46, 607.62) (096.50, 607.62) (096.50, 615.18) (089.46, 615.18) /T1_1 n <|special_separator|> +(096.83, 607.62) (101.23, 607.62) (101.23, 615.18) (096.83, 615.18) /T1_1 e <|special_separator|> +(101.55, 607.62) (105.95, 607.62) (105.95, 615.18) (101.55, 615.18) /T1_1 e <|special_separator|> +(139.00, 598.21) (143.89, 598.21) (143.89, 605.03) (139.00, 605.03) /T1_0 A <|special_separator|> +(144.00, 598.21) (148.04, 598.21) (148.04, 605.03) (144.00, 605.03) /T1_0 d <|special_separator|> +(148.20, 598.21) (152.24, 598.21) (152.24, 605.03) (148.20, 605.03) /T1_0 d <|special_separator|> +(152.36, 598.21) (154.70, 598.21) (154.70, 605.03) (152.36, 605.03) /T1_0 r <|special_separator|> +(154.74, 598.21) (158.38, 598.21) (158.38, 605.03) (154.74, 605.03) /T1_0 e <|special_separator|> +(158.53, 598.21) (161.32, 598.21) (161.32, 605.03) (158.53, 605.03) /T1_0 s <|special_separator|> +(161.48, 598.21) (164.27, 598.21) (164.27, 605.03) (161.48, 605.03) /T1_0 s <|special_separator|> +(164.19, 598.21) (166.35, 598.21) (166.35, 605.03) (164.19, 605.03) /T1_0 : <|special_separator|> +(139.00, 578.21) (142.29, 578.21) (142.29, 585.03) (139.00, 585.03) /T1_0 T <|special_separator|> +(142.08, 578.21) (145.57, 578.21) (145.57, 585.03) (142.08, 585.03) /T1_0 y <|special_separator|> +(145.74, 578.21) (149.78, 578.21) (149.78, 585.03) (145.74, 585.03) /T1_0 p <|special_separator|> +(149.98, 578.21) (153.62, 578.21) (153.62, 585.03) (149.98, 585.03) /T1_0 e <|special_separator|> +(153.51, 578.21) (155.67, 578.21) (155.67, 585.03) (153.51, 585.03) /T1_0 : <|special_separator|> +(139.00, 558.21) (144.84, 558.21) (144.84, 565.03) (139.00, 565.03) /T1_0 N <|special_separator|> +(145.02, 558.21) (149.06, 558.21) (149.06, 565.03) (145.02, 565.03) /T1_0 a <|special_separator|> +(149.16, 558.21) (154.54, 558.21) (154.54, 565.03) (149.16, 565.03) /T1_0 m <|special_separator|> +(154.68, 558.21) (158.31, 558.21) (158.31, 565.03) (154.68, 565.03) /T1_0 e <|special_separator|> +(158.21, 558.21) (160.36, 558.21) (160.36, 565.03) (158.21, 565.03) /T1_0 : <|special_separator|> +(054.00, 558.22) (059.42, 558.22) (059.42, 565.78) (054.00, 565.78) /T1_1 B <|special_separator|> +(059.42, 558.22) (065.64, 558.22) (065.64, 565.78) (059.42, 565.78) /T1_1 u <|special_separator|> +(065.64, 558.22) (071.35, 558.22) (071.35, 565.78) (065.64, 565.78) /T1_1 y <|special_separator|> +(071.35, 558.22) (075.75, 558.22) (075.75, 565.78) (071.35, 565.78) /T1_1 e <|special_separator|> +(075.75, 558.22) (081.19, 558.22) (081.19, 565.78) (075.75, 565.78) /T1_1 r <|special_separator|> +(081.19, 558.22) (083.94, 558.22) (083.94, 565.78) (081.19, 565.78) /T1_1 <|special_separator|> +(054.00, 548.70) (055.62, 548.70) (055.62, 555.56) (054.00, 555.56) /T1_2 I <|special_separator|> +(055.66, 548.70) (057.58, 548.70) (057.58, 555.56) (055.66, 555.56) /T1_2 f <|special_separator|> +(057.62, 548.70) (059.64, 548.70) (059.64, 555.56) (057.62, 555.56) /T1_2 <|special_separator|> +(059.68, 548.70) (063.46, 548.70) (063.46, 555.56) (059.68, 555.56) /T1_2 o <|special_separator|> +(063.49, 548.70) (065.17, 548.70) (065.17, 555.56) (063.49, 555.56) /T1_2 t <|special_separator|> +(065.21, 548.70) (068.87, 548.70) (068.87, 555.56) (065.21, 555.56) /T1_2 h <|special_separator|> +(068.90, 548.70) (072.32, 548.70) (072.32, 555.56) (068.90, 555.56) /T1_2 e <|special_separator|> +(072.35, 548.70) (074.81, 548.70) (074.81, 555.56) (072.35, 555.56) /T1_2 r <|special_separator|> +(074.84, 548.70) (076.87, 548.70) (076.87, 555.56) (074.84, 555.56) /T1_2 <|special_separator|> +(076.90, 548.70) (078.58, 548.70) (078.58, 555.56) (076.90, 555.56) /T1_2 t <|special_separator|> +(078.62, 548.70) (082.28, 548.70) (082.28, 555.56) (078.62, 555.56) /T1_2 h <|special_separator|> +(082.31, 548.70) (086.21, 548.70) (086.21, 555.56) (082.31, 555.56) /T1_2 a <|special_separator|> +(086.24, 548.70) (089.90, 548.70) (089.90, 555.56) (086.24, 555.56) /T1_2 n <|special_separator|> +(089.94, 548.70) (091.96, 548.70) (091.96, 555.56) (089.94, 555.56) /T1_2 <|special_separator|> +(091.99, 548.64) (095.73, 548.64) (095.73, 554.84) (091.99, 554.84) /C0_0 u <|special_separator|> +(095.76, 548.64) (097.50, 548.64) (097.50, 554.84) (095.76, 554.84) /C0_0 l <|special_separator|> +(097.54, 548.64) (099.69, 548.64) (099.69, 554.84) (097.54, 554.84) /C0_0 t <|special_separator|> +(099.72, 548.64) (101.63, 548.64) (101.63, 554.84) (099.72, 554.84) /C0_0 i <|special_separator|> +(101.67, 548.64) (107.18, 548.64) (107.18, 554.84) (101.67, 554.84) /C0_0 m <|special_separator|> +(107.21, 548.64) (110.64, 548.64) (110.64, 554.84) (107.21, 554.84) /C0_0 a <|special_separator|> +(110.68, 548.64) (112.83, 548.64) (112.83, 554.84) (110.68, 554.84) /C0_0 t <|special_separator|> +(112.86, 548.64) (115.66, 548.64) (115.66, 554.84) (112.86, 554.84) /C0_0 e <|special_separator|> +(115.70, 548.64) (117.30, 548.64) (117.30, 554.84) (115.70, 554.84) /C0_0 <|special_separator|> +(054.00, 538.84) (057.09, 538.84) (057.09, 545.69) (054.00, 545.69) /T1_2 c <|special_separator|> +(057.12, 538.84) (060.90, 538.84) (060.90, 545.69) (057.12, 545.69) /T1_2 o <|special_separator|> +(060.94, 538.84) (064.60, 538.84) (064.60, 545.69) (060.94, 545.69) /T1_2 n <|special_separator|> +(064.63, 538.84) (067.32, 538.84) (067.32, 545.69) (064.63, 545.69) /T1_2 s <|special_separator|> +(067.35, 538.84) (069.13, 538.84) (069.13, 545.69) (067.35, 545.69) /T1_2 i <|special_separator|> +(069.17, 538.84) (073.05, 538.84) (073.05, 545.69) (069.17, 545.69) /T1_2 g <|special_separator|> +(073.09, 538.84) (076.75, 538.84) (076.75, 545.69) (073.09, 545.69) /T1_2 n <|special_separator|> +(076.78, 538.84) (080.20, 538.84) (080.20, 545.69) (076.78, 545.69) /T1_2 e <|special_separator|> +(080.23, 538.84) (083.65, 538.84) (083.65, 545.69) (080.23, 545.69) /T1_2 e <|special_separator|> +(139.00, 538.21) (143.89, 538.21) (143.89, 545.03) (139.00, 545.03) /T1_0 A <|special_separator|> +(144.00, 538.21) (148.04, 538.21) (148.04, 545.03) (144.00, 545.03) /T1_0 d <|special_separator|> +(148.20, 538.21) (152.24, 538.21) (152.24, 545.03) (148.20, 545.03) /T1_0 d <|special_separator|> +(152.36, 538.21) (154.70, 538.21) (154.70, 545.03) (152.36, 545.03) /T1_0 r <|special_separator|> +(154.74, 538.21) (158.38, 538.21) (158.38, 545.03) (154.74, 545.03) /T1_0 e <|special_separator|> +(158.53, 538.21) (161.32, 538.21) (161.32, 545.03) (158.53, 545.03) /T1_0 s <|special_separator|> +(161.48, 538.21) (164.27, 538.21) (164.27, 545.03) (161.48, 545.03) /T1_0 s <|special_separator|> +(164.19, 538.21) (166.35, 538.21) (166.35, 545.03) (164.19, 545.03) /T1_0 : <|special_separator|> +(054.00, 520.71) (057.52, 520.71) (057.52, 527.53) (054.00, 527.53) /T1_0 P <|special_separator|> +(057.41, 520.71) (061.34, 520.71) (061.34, 527.53) (057.41, 527.53) /T1_0 o <|special_separator|> +(061.49, 520.71) (063.83, 520.71) (063.83, 527.53) (061.49, 527.53) /T1_0 r <|special_separator|> +(064.11, 520.71) (065.80, 520.71) (065.80, 527.53) (064.11, 527.53) /T1_0 t <|special_separator|> +(065.83, 520.71) (067.99, 520.71) (067.99, 527.53) (065.83, 527.53) /T1_0 <|special_separator|> +(068.02, 520.71) (071.95, 520.71) (071.95, 527.53) (068.02, 527.53) /T1_0 o <|special_separator|> +(072.07, 520.71) (073.98, 520.71) (073.98, 527.53) (072.07, 527.53) /T1_0 f <|special_separator|> +(074.02, 520.71) (076.18, 520.71) (076.18, 527.53) (074.02, 527.53) /T1_0 <|special_separator|> +(076.21, 520.71) (078.84, 520.71) (078.84, 527.53) (076.21, 527.53) /T1_0 L <|special_separator|> +(078.98, 520.71) (083.02, 520.71) (083.02, 527.53) (078.98, 527.53) /T1_0 a <|special_separator|> +(083.17, 520.71) (087.21, 520.71) (087.21, 527.53) (083.17, 527.53) /T1_0 d <|special_separator|> +(087.26, 520.71) (089.10, 520.71) (089.10, 527.53) (087.26, 527.53) /T1_0 i <|special_separator|> +(089.14, 520.71) (092.84, 520.71) (092.84, 527.53) (089.14, 527.53) /T1_0 n <|special_separator|> +(092.98, 520.71) (097.04, 520.71) (097.04, 527.53) (092.98, 527.53) /T1_0 g <|special_separator|> +(310.00, 520.71) (313.29, 520.71) (313.29, 527.53) (310.00, 527.53) /T1_0 T <|special_separator|> +(313.07, 520.71) (317.00, 520.71) (317.00, 527.53) (313.07, 527.53) /T1_0 o <|special_separator|> +(317.12, 520.71) (318.80, 520.71) (318.80, 527.53) (317.12, 527.53) /T1_0 t <|special_separator|> +(318.97, 520.71) (323.01, 520.71) (323.01, 527.53) (318.97, 527.53) /T1_0 a <|special_separator|> +(323.12, 520.71) (324.71, 520.71) (324.71, 527.53) (323.12, 527.53) /T1_0 l <|special_separator|> +(324.75, 520.71) (326.90, 520.71) (326.90, 527.53) (324.75, 527.53) /T1_0 <|special_separator|> +(326.94, 520.71) (332.78, 520.71) (332.78, 527.53) (326.94, 527.53) /T1_0 N <|special_separator|> +(332.96, 520.71) (336.89, 520.71) (336.89, 527.53) (332.96, 527.53) /T1_0 o <|special_separator|> +(336.83, 520.71) (338.98, 520.71) (338.98, 527.53) (336.83, 527.53) /T1_0 . <|special_separator|> +(339.02, 520.71) (341.18, 520.71) (341.18, 527.53) (339.02, 527.53) /T1_0 <|special_separator|> +(341.21, 520.71) (344.73, 520.71) (344.73, 527.53) (341.21, 527.53) /T1_0 P <|special_separator|> +(344.63, 520.71) (348.67, 520.71) (348.67, 527.53) (344.63, 527.53) /T1_0 a <|special_separator|> +(348.84, 520.71) (352.17, 520.71) (352.17, 527.53) (348.84, 527.53) /T1_0 c <|special_separator|> +(352.33, 520.71) (355.62, 520.71) (355.62, 527.53) (352.33, 527.53) /T1_0 k <|special_separator|> +(355.60, 520.71) (359.63, 520.71) (359.63, 527.53) (355.60, 527.53) /T1_0 a <|special_separator|> +(359.80, 520.71) (363.86, 520.71) (363.86, 527.53) (359.80, 527.53) /T1_0 g <|special_separator|> +(364.00, 520.71) (367.64, 520.71) (367.64, 527.53) (364.00, 527.53) /T1_0 e <|special_separator|> +(367.79, 520.71) (370.58, 520.71) (370.58, 527.53) (367.79, 527.53) /T1_0 s <|special_separator|> +(310.00, 504.71) (313.29, 504.71) (313.29, 511.53) (310.00, 511.53) /T1_0 T <|special_separator|> +(313.07, 504.71) (317.00, 504.71) (317.00, 511.53) (313.07, 511.53) /T1_0 o <|special_separator|> +(317.12, 504.71) (318.80, 504.71) (318.80, 511.53) (317.12, 511.53) /T1_0 t <|special_separator|> +(318.97, 504.71) (323.01, 504.71) (323.01, 511.53) (318.97, 511.53) /T1_0 a <|special_separator|> +(323.12, 504.71) (324.71, 504.71) (324.71, 511.53) (323.12, 511.53) /T1_0 l <|special_separator|> +(324.75, 504.71) (326.90, 504.71) (326.90, 511.53) (324.75, 511.53) /T1_0 <|special_separator|> +(326.94, 504.71) (332.68, 504.71) (332.68, 511.53) (326.94, 511.53) /T1_0 G <|special_separator|> +(332.84, 504.71) (335.18, 504.71) (335.18, 511.53) (332.84, 511.53) /T1_0 r <|special_separator|> +(335.20, 504.71) (339.14, 504.71) (339.14, 511.53) (335.20, 511.53) /T1_0 o <|special_separator|> +(339.24, 504.71) (342.04, 504.71) (342.04, 511.53) (339.24, 511.53) /T1_0 s <|special_separator|> +(342.19, 504.71) (344.98, 504.71) (344.98, 511.53) (342.19, 511.53) /T1_0 s <|special_separator|> +(345.02, 504.71) (347.17, 504.71) (347.17, 511.53) (345.02, 511.53) /T1_0 <|special_separator|> +(347.21, 504.71) (354.85, 504.71) (354.85, 511.53) (347.21, 511.53) /T1_0 W <|special_separator|> +(354.64, 504.71) (358.27, 504.71) (358.27, 511.53) (354.64, 511.53) /T1_0 e <|special_separator|> +(358.36, 504.71) (360.19, 504.71) (360.19, 511.53) (358.36, 511.53) /T1_0 i <|special_separator|> +(360.28, 504.71) (364.34, 504.71) (364.34, 511.53) (360.28, 511.53) /T1_0 g <|special_separator|> +(364.42, 504.71) (368.12, 504.71) (368.12, 511.53) (364.42, 511.53) /T1_0 h <|special_separator|> +(368.22, 504.71) (369.90, 504.71) (369.90, 511.53) (368.22, 511.53) /T1_0 t <|special_separator|> +(369.93, 504.71) (372.09, 504.71) (372.09, 511.53) (369.93, 511.53) /T1_0 <|special_separator|> +(372.12, 504.71) (374.13, 504.71) (374.13, 511.53) (372.12, 511.53) /T1_0 ( <|special_separator|> +(374.58, 504.71) (378.86, 504.71) (378.86, 511.53) (374.58, 511.53) /T1_0 K <|special_separator|> +(378.98, 504.71) (384.72, 504.71) (384.72, 511.53) (378.98, 511.53) /T1_0 G <|special_separator|> +(385.10, 504.71) (387.11, 504.71) (387.11, 511.53) (385.10, 511.53) /T1_0 ) <|special_separator|> +(054.00, 488.71) (057.74, 488.71) (057.74, 495.52) (054.00, 495.52) /T1_0 E <|special_separator|> +(057.93, 488.71) (061.41, 488.71) (061.41, 495.52) (057.93, 495.52) /T1_0 x <|special_separator|> +(061.57, 488.71) (065.61, 488.71) (065.61, 495.52) (061.57, 495.52) /T1_0 p <|special_separator|> +(065.80, 488.71) (069.74, 488.71) (069.74, 495.52) (065.80, 495.52) /T1_0 o <|special_separator|> +(069.88, 488.71) (072.23, 488.71) (072.23, 495.52) (069.88, 495.52) /T1_0 r <|special_separator|> +(072.51, 488.71) (074.19, 488.71) (074.19, 495.52) (072.51, 495.52) /T1_0 t <|special_separator|> +(074.30, 488.71) (076.13, 488.71) (076.13, 495.52) (074.30, 495.52) /T1_0 i <|special_separator|> +(076.18, 488.71) (079.87, 488.71) (079.87, 495.52) (076.18, 495.52) /T1_0 n <|special_separator|> +(080.02, 488.71) (084.08, 488.71) (084.08, 495.52) (080.02, 495.52) /T1_0 g <|special_separator|> +(084.11, 488.71) (086.27, 488.71) (086.27, 495.52) (084.11, 495.52) /T1_0 <|special_separator|> +(086.31, 488.71) (091.32, 488.71) (091.32, 495.52) (086.31, 495.52) /T1_0 C <|special_separator|> +(091.39, 488.71) (095.43, 488.71) (095.43, 495.52) (091.39, 495.52) /T1_0 a <|special_separator|> +(095.55, 488.71) (097.90, 488.71) (097.90, 495.52) (095.55, 495.52) /T1_0 r <|special_separator|> +(098.04, 488.71) (100.39, 488.71) (100.39, 495.52) (098.04, 495.52) /T1_0 r <|special_separator|> +(100.47, 488.71) (102.31, 488.71) (102.31, 495.52) (100.47, 495.52) /T1_0 i <|special_separator|> +(102.39, 488.71) (106.02, 488.71) (106.02, 495.52) (102.39, 495.52) /T1_0 e <|special_separator|> +(106.18, 488.71) (108.52, 488.71) (108.52, 495.52) (106.18, 495.52) /T1_0 r <|special_separator|> +(310.00, 488.71) (315.02, 488.71) (315.02, 495.52) (310.00, 495.52) /T1_0 C <|special_separator|> +(314.99, 488.71) (318.57, 488.71) (318.57, 495.52) (314.99, 495.52) /T1_0 u <|special_separator|> +(318.69, 488.71) (322.73, 488.71) (322.73, 495.52) (318.69, 495.52) /T1_0 b <|special_separator|> +(322.81, 488.71) (324.65, 488.71) (324.65, 495.52) (322.81, 495.52) /T1_0 i <|special_separator|> +(324.74, 488.71) (328.07, 488.71) (328.07, 495.52) (324.74, 495.52) /T1_0 c <|special_separator|> +(328.11, 488.71) (330.26, 488.71) (330.26, 495.52) (328.11, 495.52) /T1_0 <|special_separator|> +(330.30, 488.71) (336.57, 488.71) (336.57, 495.52) (330.30, 495.52) /T1_0 M <|special_separator|> +(336.81, 488.71) (340.44, 488.71) (340.44, 495.52) (336.81, 495.52) /T1_0 e <|special_separator|> +(340.59, 488.71) (342.27, 488.71) (342.27, 495.52) (340.59, 495.52) /T1_0 t <|special_separator|> +(342.44, 488.71) (346.08, 488.71) (346.08, 495.52) (342.44, 495.52) /T1_0 e <|special_separator|> +(346.23, 488.71) (348.57, 488.71) (348.57, 495.52) (346.23, 495.52) /T1_0 r <|special_separator|> +(348.63, 488.71) (351.42, 488.71) (351.42, 495.52) (348.63, 495.52) /T1_0 s <|special_separator|> +(054.00, 472.71) (055.67, 472.71) (055.67, 479.52) (054.00, 479.52) /T1_0 I <|special_separator|> +(055.81, 472.71) (059.51, 472.71) (059.51, 479.52) (055.81, 479.52) /T1_0 n <|special_separator|> +(059.65, 472.71) (062.98, 472.71) (062.98, 479.52) (059.65, 479.52) /T1_0 c <|special_separator|> +(063.11, 472.71) (067.05, 472.71) (067.05, 479.52) (063.11, 479.52) /T1_0 o <|special_separator|> +(067.17, 472.71) (068.85, 472.71) (068.85, 479.52) (067.17, 479.52) /T1_0 t <|special_separator|> +(069.02, 472.71) (072.66, 472.71) (072.66, 479.52) (069.02, 479.52) /T1_0 e <|special_separator|> +(072.81, 472.71) (075.15, 472.71) (075.15, 479.52) (072.81, 479.52) /T1_0 r <|special_separator|> +(075.29, 472.71) (080.66, 472.71) (080.66, 479.52) (075.29, 479.52) /T1_0 m <|special_separator|> +(080.73, 472.71) (083.53, 472.71) (083.53, 479.52) (080.73, 479.52) /T1_0 s <|special_separator|> +(083.69, 472.71) (089.29, 472.71) (089.29, 479.52) (083.69, 479.52) /T1_0 ® <|special_separator|> +(310.00, 474.93) (316.27, 474.93) (316.27, 481.75) (310.00, 481.75) /T1_0 M <|special_separator|> +(316.50, 474.93) (320.54, 474.93) (320.54, 481.75) (316.50, 481.75) /T1_0 a <|special_separator|> +(320.66, 474.93) (323.00, 474.93) (323.00, 481.75) (320.66, 481.75) /T1_0 r <|special_separator|> +(323.15, 474.93) (326.44, 474.93) (326.44, 481.75) (323.15, 481.75) /T1_0 k <|special_separator|> +(326.53, 474.93) (329.32, 474.93) (329.32, 481.75) (326.53, 481.75) /T1_0 s <|special_separator|> +(329.36, 474.93) (331.52, 474.93) (331.52, 481.75) (329.36, 481.75) /T1_0 <|special_separator|> +(331.55, 474.93) (336.42, 474.93) (336.42, 481.75) (331.55, 481.75) /T1_0 & <|special_separator|> +(336.45, 474.93) (338.61, 474.93) (338.61, 481.75) (336.45, 481.75) /T1_0 <|special_separator|> +(338.64, 474.93) (344.48, 474.93) (344.48, 481.75) (338.64, 481.75) /T1_0 N <|special_separator|> +(344.63, 474.93) (348.21, 474.93) (348.21, 481.75) (344.63, 481.75) /T1_0 u <|special_separator|> +(348.32, 474.93) (353.69, 474.93) (353.69, 481.75) (348.32, 481.75) /T1_0 m <|special_separator|> +(353.80, 474.93) (357.84, 474.93) (357.84, 481.75) (353.80, 481.75) /T1_0 b <|special_separator|> +(358.04, 474.93) (361.67, 474.93) (361.67, 481.75) (358.04, 481.75) /T1_0 e <|special_separator|> +(361.83, 474.93) (364.17, 474.93) (364.17, 481.75) (361.83, 481.75) /T1_0 r <|special_separator|> +(364.23, 474.93) (367.02, 474.93) (367.02, 481.75) (364.23, 481.75) /T1_0 s <|special_separator|> +(054.00, 456.70) (059.84, 456.70) (059.84, 463.52) (054.00, 463.52) /T1_0 N <|special_separator|> +(060.02, 456.70) (064.06, 456.70) (064.06, 463.52) (060.02, 463.52) /T1_0 a <|special_separator|> +(064.16, 456.70) (069.54, 456.70) (069.54, 463.52) (064.16, 463.52) /T1_0 m <|special_separator|> +(069.68, 456.70) (073.31, 456.70) (073.31, 463.52) (069.68, 463.52) /T1_0 e <|special_separator|> +(073.50, 456.70) (077.53, 456.70) (077.53, 463.52) (073.50, 463.52) /T1_0 d <|special_separator|> +(077.57, 456.70) (079.73, 456.70) (079.73, 463.52) (077.57, 463.52) /T1_0 <|special_separator|> +(079.76, 456.70) (083.28, 456.70) (083.28, 463.52) (079.76, 463.52) /T1_0 P <|special_separator|> +(083.17, 456.70) (087.10, 456.70) (087.10, 463.52) (083.17, 463.52) /T1_0 o <|special_separator|> +(087.18, 456.70) (089.01, 456.70) (089.01, 463.52) (087.18, 463.52) /T1_0 i <|special_separator|> +(089.06, 456.70) (092.75, 456.70) (092.75, 463.52) (089.06, 463.52) /T1_0 n <|special_separator|> +(092.85, 456.70) (094.53, 456.70) (094.53, 463.52) (092.85, 463.52) /T1_0 t <|special_separator|> +(054.00, 440.70) (057.29, 440.70) (057.29, 447.52) (054.00, 447.52) /T1_0 T <|special_separator|> +(057.11, 440.70) (060.74, 440.70) (060.74, 447.52) (057.11, 447.52) /T1_0 e <|special_separator|> +(060.90, 440.70) (063.24, 440.70) (063.24, 447.52) (060.90, 447.52) /T1_0 r <|special_separator|> +(063.37, 440.70) (068.75, 440.70) (068.75, 447.52) (063.37, 447.52) /T1_0 m <|special_separator|> +(068.81, 440.70) (071.61, 440.70) (071.61, 447.52) (068.81, 447.52) /T1_0 s <|special_separator|> +(071.64, 440.70) (073.80, 440.70) (073.80, 447.52) (071.64, 447.52) /T1_0 <|special_separator|> +(073.83, 440.70) (077.77, 440.70) (077.77, 447.52) (073.83, 447.52) /T1_0 o <|special_separator|> +(077.88, 440.70) (079.80, 440.70) (079.80, 447.52) (077.88, 447.52) /T1_0 f <|special_separator|> +(079.83, 440.70) (081.99, 440.70) (081.99, 447.52) (079.83, 447.52) /T1_0 <|special_separator|> +(082.02, 440.70) (085.93, 440.70) (085.93, 447.52) (082.02, 447.52) /T1_0 S <|special_separator|> +(086.12, 440.70) (090.16, 440.70) (090.16, 447.52) (086.12, 447.52) /T1_0 a <|special_separator|> +(090.27, 440.70) (091.86, 440.70) (091.86, 447.52) (090.27, 447.52) /T1_0 l <|special_separator|> +(092.02, 440.70) (095.66, 440.70) (095.66, 447.52) (092.02, 447.52) /T1_0 e <|special_separator|> +(054.00, 424.70) (059.02, 424.70) (059.02, 431.52) (054.00, 431.52) /T1_0 C <|special_separator|> +(058.99, 424.70) (062.58, 424.70) (062.58, 431.52) (058.99, 431.52) /T1_0 u <|special_separator|> +(062.69, 424.70) (065.04, 424.70) (065.04, 431.52) (062.69, 431.52) /T1_0 r <|special_separator|> +(065.19, 424.70) (067.53, 424.70) (067.53, 431.52) (065.19, 431.52) /T1_0 r <|special_separator|> +(067.57, 424.70) (071.21, 424.70) (071.21, 431.52) (067.57, 431.52) /T1_0 e <|special_separator|> +(071.35, 424.70) (075.04, 424.70) (075.04, 431.52) (071.35, 431.52) /T1_0 n <|special_separator|> +(075.18, 424.70) (078.51, 424.70) (078.51, 431.52) (075.18, 431.52) /T1_0 c <|special_separator|> +(078.73, 424.70) (082.22, 424.70) (082.22, 431.52) (078.73, 431.52) /T1_0 y <|special_separator|> +(082.25, 424.70) (084.41, 424.70) (084.41, 431.52) (082.25, 431.52) /T1_0 <|special_separator|> +(084.44, 424.70) (088.38, 424.70) (088.38, 431.52) (084.44, 431.52) /T1_0 o <|special_separator|> +(088.49, 424.70) (090.41, 424.70) (090.41, 431.52) (088.49, 431.52) /T1_0 f <|special_separator|> +(090.44, 424.70) (092.60, 424.70) (092.60, 431.52) (090.44, 431.52) /T1_0 <|special_separator|> +(092.63, 424.70) (096.55, 424.70) (096.55, 431.52) (092.63, 431.52) /T1_0 S <|special_separator|> +(096.73, 424.70) (100.77, 424.70) (100.77, 431.52) (096.73, 431.52) /T1_0 a <|special_separator|> +(100.88, 424.70) (102.47, 424.70) (102.47, 431.52) (100.88, 431.52) /T1_0 l <|special_separator|> +(102.64, 424.70) (106.27, 424.70) (106.27, 431.52) (102.64, 431.52) /T1_0 e <|special_separator|> +(069.31, 406.58) (074.37, 406.58) (074.37, 413.16) (069.31, 413.16) /C2_0 C <|special_separator|> +(074.40, 406.58) (078.29, 406.58) (078.29, 413.16) (074.40, 413.16) /C2_0 o <|special_separator|> +(078.33, 406.58) (084.16, 406.58) (084.16, 413.16) (078.33, 413.16) /C2_0 m <|special_separator|> +(084.19, 406.58) (088.08, 406.58) (088.08, 413.16) (084.19, 413.16) /C2_0 p <|special_separator|> +(088.12, 406.58) (089.67, 406.58) (089.67, 413.16) (088.12, 413.16) /C2_0 l <|special_separator|> +(089.71, 406.58) (093.60, 406.58) (093.60, 413.16) (089.71, 413.16) /C2_0 e <|special_separator|> +(093.64, 406.58) (095.58, 406.58) (095.58, 413.16) (093.64, 413.16) /C2_0 t <|special_separator|> +(095.62, 406.58) (099.51, 406.58) (099.51, 413.16) (095.62, 413.16) /C2_0 e <|special_separator|> +(099.54, 406.58) (101.49, 406.58) (101.49, 413.16) (099.54, 413.16) /C2_0 <|special_separator|> +(101.52, 406.58) (106.19, 406.58) (106.19, 413.16) (101.52, 413.16) /C2_0 & <|special_separator|> +(106.23, 406.58) (108.17, 406.58) (108.17, 413.16) (106.23, 413.16) /C2_0 <|special_separator|> +(108.21, 406.58) (112.88, 406.58) (112.88, 413.16) (108.21, 413.16) /C2_0 A <|special_separator|> +(112.91, 406.58) (116.41, 406.58) (116.41, 413.16) (112.91, 413.16) /C2_0 c <|special_separator|> +(116.45, 406.58) (119.95, 406.58) (119.95, 413.16) (116.45, 413.16) /C2_0 c <|special_separator|> +(119.98, 406.58) (123.88, 406.58) (123.88, 413.16) (119.98, 413.16) /C2_0 u <|special_separator|> +(123.91, 406.58) (126.24, 406.58) (126.24, 413.16) (123.91, 413.16) /C2_0 r <|special_separator|> +(126.28, 406.58) (130.17, 406.58) (130.17, 413.16) (126.28, 413.16) /C2_0 a <|special_separator|> +(130.20, 406.58) (132.15, 406.58) (132.15, 413.16) (130.20, 413.16) /C2_0 t <|special_separator|> +(132.18, 406.58) (136.08, 406.58) (136.08, 413.16) (132.18, 413.16) /C2_0 e <|special_separator|> +(136.11, 406.58) (138.06, 406.58) (138.06, 413.16) (136.11, 413.16) /C2_0 <|special_separator|> +(138.09, 406.58) (143.15, 406.58) (143.15, 413.16) (138.09, 413.16) /C2_0 C <|special_separator|> +(143.18, 406.58) (147.07, 406.58) (147.07, 413.16) (143.18, 413.16) /C2_0 o <|special_separator|> +(147.11, 406.58) (152.94, 406.58) (152.94, 413.16) (147.11, 413.16) /C2_0 m <|special_separator|> +(152.97, 406.58) (158.81, 406.58) (158.81, 413.16) (152.97, 413.16) /C2_0 m <|special_separator|> +(158.84, 406.58) (162.73, 406.58) (162.73, 413.16) (158.84, 413.16) /C2_0 o <|special_separator|> +(162.77, 406.58) (166.66, 406.58) (166.66, 413.16) (162.77, 413.16) /C2_0 d <|special_separator|> +(166.69, 406.58) (168.25, 406.58) (168.25, 413.16) (166.69, 413.16) /C2_0 i <|special_separator|> +(168.28, 406.58) (170.23, 406.58) (170.23, 413.16) (168.28, 413.16) /C2_0 t <|special_separator|> +(170.26, 406.58) (173.76, 406.58) (173.76, 413.16) (170.26, 413.16) /C2_0 y <|special_separator|> +(173.81, 406.58) (175.75, 406.58) (175.75, 413.16) (173.81, 413.16) /C2_0 <|special_separator|> +(175.80, 406.58) (180.85, 406.58) (180.85, 413.16) (175.80, 413.16) /C2_0 D <|special_separator|> +(180.89, 406.58) (184.78, 406.58) (184.78, 413.16) (180.89, 413.16) /C2_0 e <|special_separator|> +(184.81, 406.58) (188.31, 406.58) (188.31, 413.16) (184.81, 413.16) /C2_0 s <|special_separator|> +(188.35, 406.58) (191.85, 406.58) (191.85, 413.16) (188.35, 413.16) /C2_0 c <|special_separator|> +(191.88, 406.58) (194.21, 406.58) (194.21, 413.16) (191.88, 413.16) /C2_0 r <|special_separator|> +(194.25, 406.58) (195.80, 406.58) (195.80, 413.16) (194.25, 413.16) /C2_0 i <|special_separator|> +(195.84, 406.58) (199.73, 406.58) (199.73, 413.16) (195.84, 413.16) /C2_0 p <|special_separator|> +(199.76, 406.58) (201.71, 406.58) (201.71, 413.16) (199.76, 413.16) /C2_0 t <|special_separator|> +(201.75, 406.58) (203.30, 406.58) (203.30, 413.16) (201.75, 413.16) /C2_0 i <|special_separator|> +(203.33, 406.58) (207.23, 406.58) (207.23, 413.16) (203.33, 413.16) /C2_0 o <|special_separator|> +(207.26, 406.58) (211.15, 406.58) (211.15, 413.16) (207.26, 413.16) /C2_0 n <|special_separator|> +(211.19, 406.58) (213.13, 406.58) (213.13, 413.16) (211.19, 413.16) /C2_0 , <|special_separator|> +(213.17, 406.58) (215.12, 406.58) (215.12, 413.16) (213.17, 413.16) /C2_0 <|special_separator|> +(215.15, 406.58) (220.20, 406.58) (220.20, 413.16) (215.15, 413.16) /C2_0 U <|special_separator|> +(220.24, 406.58) (224.91, 406.58) (224.91, 413.16) (220.24, 413.16) /C2_0 S <|special_separator|> +(224.94, 406.58) (230.77, 406.58) (230.77, 413.16) (224.94, 413.16) /C2_0 M <|special_separator|> +(230.81, 406.58) (234.70, 406.58) (234.70, 413.16) (230.81, 413.16) /C2_0 L <|special_separator|> +(234.74, 406.58) (236.68, 406.58) (236.68, 413.16) (234.74, 413.16) /C2_0 <|special_separator|> +(236.72, 406.58) (241.77, 406.58) (241.77, 413.16) (236.72, 413.16) /C2_0 C <|special_separator|> +(241.81, 406.58) (245.70, 406.58) (245.70, 413.16) (241.81, 413.16) /C2_0 a <|special_separator|> +(245.73, 406.58) (247.68, 406.58) (247.68, 413.16) (245.73, 413.16) /C2_0 t <|special_separator|> +(247.71, 406.58) (251.61, 406.58) (251.61, 413.16) (247.71, 413.16) /C2_0 e <|special_separator|> +(251.64, 406.58) (255.53, 406.58) (255.53, 413.16) (251.64, 413.16) /C2_0 g <|special_separator|> +(255.57, 406.58) (259.46, 406.58) (259.46, 413.16) (255.57, 413.16) /C2_0 o <|special_separator|> +(259.50, 406.58) (261.83, 406.58) (261.83, 413.16) (259.50, 413.16) /C2_0 r <|special_separator|> +(261.87, 406.58) (265.37, 406.58) (265.37, 413.16) (261.87, 413.16) /C2_0 y <|special_separator|> +(265.41, 406.58) (267.35, 406.58) (267.35, 413.16) (265.41, 413.16) /C2_0 <|special_separator|> +(267.39, 406.58) (271.28, 406.58) (271.28, 413.16) (267.39, 413.16) /C2_0 o <|special_separator|> +(271.32, 406.58) (273.65, 406.58) (273.65, 413.16) (271.32, 413.16) /C2_0 r <|special_separator|> +(273.68, 406.58) (275.63, 406.58) (275.63, 413.16) (273.68, 413.16) /C2_0 <|special_separator|> +(275.66, 406.58) (280.33, 406.58) (280.33, 413.16) (275.66, 413.16) /C2_0 E <|special_separator|> +(280.37, 406.58) (285.42, 406.58) (285.42, 413.16) (280.37, 413.16) /C2_0 C <|special_separator|> +(285.46, 406.58) (290.51, 406.58) (290.51, 413.16) (285.46, 413.16) /C2_0 C <|special_separator|> +(290.54, 406.58) (295.60, 406.58) (295.60, 413.16) (290.54, 413.16) /C2_0 N <|special_separator|> +(295.63, 406.58) (297.58, 406.58) (297.58, 413.16) (295.63, 413.16) /C2_0 , <|special_separator|> +(297.61, 406.58) (299.56, 406.58) (299.56, 413.16) (297.61, 413.16) /C2_0 <|special_separator|> +(077.64, 397.58) (081.53, 397.58) (081.53, 404.16) (077.64, 404.16) /C2_0 a <|special_separator|> +(081.56, 397.58) (085.45, 397.58) (085.45, 404.16) (081.56, 404.16) /C2_0 p <|special_separator|> +(085.49, 397.58) (089.38, 397.58) (089.38, 404.16) (085.49, 404.16) /C2_0 p <|special_separator|> +(089.42, 397.58) (090.97, 397.58) (090.97, 404.16) (089.42, 404.16) /C2_0 l <|special_separator|> +(091.00, 397.58) (092.56, 397.58) (092.56, 404.16) (091.00, 404.16) /C2_0 i <|special_separator|> +(092.59, 397.58) (096.09, 397.58) (096.09, 404.16) (092.59, 404.16) /C2_0 c <|special_separator|> +(096.13, 397.58) (100.02, 397.58) (100.02, 404.16) (096.13, 404.16) /C2_0 a <|special_separator|> +(100.06, 397.58) (103.95, 397.58) (103.95, 404.16) (100.06, 404.16) /C2_0 b <|special_separator|> +(103.98, 397.58) (105.54, 397.58) (105.54, 404.16) (103.98, 404.16) /C2_0 l <|special_separator|> +(105.57, 397.58) (109.46, 397.58) (109.46, 404.16) (105.57, 404.16) /C2_0 e <|special_separator|> +(109.50, 397.58) (111.44, 397.58) (111.44, 404.16) (109.50, 404.16) /C2_0 <|special_separator|> +(111.44, 397.58) (113.77, 397.58) (113.77, 404.16) (111.44, 404.16) /C2_0 ( <|special_separator|> +(113.92, 397.58) (115.47, 397.58) (115.47, 404.16) (113.92, 404.16) /C2_0 i <|special_separator|> +(115.62, 397.58) (119.51, 397.58) (119.51, 404.16) (115.62, 404.16) /C2_0 n <|special_separator|> +(119.66, 397.58) (123.16, 397.58) (123.16, 404.16) (119.66, 404.16) /C2_0 c <|special_separator|> +(123.31, 397.58) (124.86, 397.58) (124.86, 404.16) (123.31, 404.16) /C2_0 l <|special_separator|> +(125.01, 397.58) (128.90, 397.58) (128.90, 404.16) (125.01, 404.16) /C2_0 u <|special_separator|> +(129.05, 397.58) (132.94, 397.58) (132.94, 404.16) (129.05, 404.16) /C2_0 d <|special_separator|> +(133.09, 397.58) (134.64, 397.58) (134.64, 404.16) (133.09, 404.16) /C2_0 i <|special_separator|> +(134.79, 397.58) (138.68, 397.58) (138.68, 404.16) (134.79, 404.16) /C2_0 n <|special_separator|> +(138.83, 397.58) (142.72, 397.58) (142.72, 404.16) (138.83, 404.16) /C2_0 g <|special_separator|> +(142.86, 397.58) (144.81, 397.58) (144.81, 404.16) (142.86, 404.16) /C2_0 <|special_separator|> +(144.74, 397.58) (150.57, 397.58) (150.57, 404.16) (144.74, 404.16) /C2_0 m <|special_separator|> +(150.72, 397.58) (154.61, 397.58) (154.61, 404.16) (150.72, 404.16) /C2_0 o <|special_separator|> +(154.76, 397.58) (158.65, 397.58) (158.65, 404.16) (154.76, 404.16) /C2_0 d <|special_separator|> +(158.79, 397.58) (162.69, 397.58) (162.69, 404.16) (158.79, 404.16) /C2_0 e <|special_separator|> +(162.83, 397.58) (164.39, 397.58) (164.39, 404.16) (162.83, 404.16) /C2_0 l <|special_separator|> +(164.53, 397.58) (166.48, 397.58) (166.48, 404.16) (164.53, 404.16) /C2_0 / <|special_separator|> +(166.63, 397.58) (170.13, 397.58) (170.13, 404.16) (166.63, 404.16) /C2_0 s <|special_separator|> +(170.27, 397.58) (174.17, 397.58) (174.17, 404.16) (170.27, 404.16) /C2_0 e <|special_separator|> +(174.31, 397.58) (176.64, 397.58) (176.64, 404.16) (174.31, 404.16) /C2_0 r <|special_separator|> +(176.79, 397.58) (178.35, 397.58) (178.35, 404.16) (176.79, 404.16) /C2_0 i <|special_separator|> +(178.49, 397.58) (182.38, 397.58) (182.38, 404.16) (178.49, 404.16) /C2_0 a <|special_separator|> +(182.53, 397.58) (184.09, 397.58) (184.09, 404.16) (182.53, 404.16) /C2_0 l <|special_separator|> +(184.23, 397.58) (186.18, 397.58) (186.18, 404.16) (184.23, 404.16) /C2_0 <|special_separator|> +(186.11, 397.58) (190.00, 397.58) (190.00, 404.16) (186.11, 404.16) /C2_0 n <|special_separator|> +(190.15, 397.58) (194.04, 397.58) (194.04, 404.16) (190.15, 404.16) /C2_0 u <|special_separator|> +(194.19, 397.58) (200.02, 397.58) (200.02, 404.16) (194.19, 404.16) /C2_0 m <|special_separator|> +(200.16, 397.58) (204.06, 397.58) (204.06, 404.16) (200.16, 404.16) /C2_0 b <|special_separator|> +(204.20, 397.58) (208.09, 397.58) (208.09, 404.16) (204.20, 404.16) /C2_0 e <|special_separator|> +(208.24, 397.58) (210.57, 397.58) (210.57, 404.16) (208.24, 404.16) /C2_0 r <|special_separator|> +(210.72, 397.58) (212.67, 397.58) (212.67, 404.16) (210.72, 404.16) /C2_0 / <|special_separator|> +(212.81, 397.58) (217.48, 397.58) (217.48, 404.16) (212.81, 404.16) /C2_0 E <|special_separator|> +(217.63, 397.58) (222.68, 397.58) (222.68, 404.16) (217.63, 404.16) /C2_0 C <|special_separator|> +(222.83, 397.58) (227.88, 397.58) (227.88, 404.16) (222.83, 404.16) /C2_0 C <|special_separator|> +(228.03, 397.58) (233.08, 397.58) (233.08, 404.16) (228.03, 404.16) /C2_0 N <|special_separator|> +(233.23, 397.58) (235.18, 397.58) (235.18, 404.16) (233.23, 404.16) /C2_0 / <|special_separator|> +(235.32, 397.58) (240.38, 397.58) (240.38, 404.16) (235.32, 404.16) /C2_0 U <|special_separator|> +(240.53, 397.58) (245.19, 397.58) (245.19, 404.16) (240.53, 404.16) /C2_0 S <|special_separator|> +(245.34, 397.58) (251.17, 397.58) (251.17, 404.16) (245.34, 404.16) /C2_0 M <|special_separator|> +(251.32, 397.58) (255.21, 397.58) (255.21, 404.16) (251.32, 404.16) /C2_0 L <|special_separator|> +(255.36, 397.58) (257.30, 397.58) (257.30, 404.16) (255.36, 404.16) /C2_0 <|special_separator|> +(257.35, 397.58) (262.40, 397.58) (262.40, 404.16) (257.35, 404.16) /C2_0 C <|special_separator|> +(262.55, 397.58) (266.44, 397.58) (266.44, 404.16) (262.55, 404.16) /C2_0 a <|special_separator|> +(266.58, 397.58) (268.53, 397.58) (268.53, 404.16) (266.58, 404.16) /C2_0 t <|special_separator|> +(268.68, 397.58) (272.57, 397.58) (272.57, 404.16) (268.68, 404.16) /C2_0 e <|special_separator|> +(272.72, 397.58) (276.61, 397.58) (276.61, 404.16) (272.72, 404.16) /C2_0 g <|special_separator|> +(276.76, 397.58) (280.65, 397.58) (280.65, 404.16) (276.76, 404.16) /C2_0 o <|special_separator|> +(280.79, 397.58) (283.13, 397.58) (283.13, 404.16) (280.79, 404.16) /C2_0 r <|special_separator|> +(283.27, 397.58) (286.77, 397.58) (286.77, 404.16) (283.27, 404.16) /C2_0 y <|special_separator|> +(286.92, 397.58) (289.25, 397.58) (289.25, 404.16) (286.92, 404.16) /C2_1 ) <|special_separator|> +(311.17, 401.44) (316.23, 401.44) (316.23, 408.02) (311.17, 408.02) /C2_0 C <|special_separator|> +(316.26, 401.44) (320.15, 401.44) (320.15, 408.02) (316.26, 408.02) /C2_0 o <|special_separator|> +(320.19, 401.44) (324.08, 401.44) (324.08, 408.02) (320.19, 408.02) /C2_0 u <|special_separator|> +(324.12, 401.44) (328.01, 401.44) (328.01, 408.02) (324.12, 408.02) /C2_0 n <|special_separator|> +(328.04, 401.44) (329.99, 401.44) (329.99, 408.02) (328.04, 408.02) /C2_0 t <|special_separator|> +(330.02, 401.44) (332.36, 401.44) (332.36, 408.02) (330.02, 408.02) /C2_0 r <|special_separator|> +(332.39, 401.44) (335.89, 401.44) (335.89, 408.02) (332.39, 408.02) /C2_0 y <|special_separator|> +(335.93, 401.44) (337.87, 401.44) (337.87, 408.02) (335.93, 408.02) /C2_0 <|special_separator|> +(337.91, 401.44) (341.80, 401.44) (341.80, 408.02) (337.91, 408.02) /C2_0 o <|special_separator|> +(341.83, 401.44) (343.78, 401.44) (343.78, 408.02) (341.83, 408.02) /C2_0 f <|special_separator|> +(343.81, 401.44) (345.76, 401.44) (345.76, 408.02) (343.81, 408.02) /C2_0 <|special_separator|> +(345.80, 401.44) (351.63, 401.44) (351.63, 408.02) (345.80, 408.02) /C2_0 M <|special_separator|> +(351.66, 401.44) (355.55, 401.44) (355.55, 408.02) (351.66, 408.02) /C2_0 a <|special_separator|> +(355.59, 401.44) (359.48, 401.44) (359.48, 408.02) (355.59, 408.02) /C2_0 n <|special_separator|> +(359.52, 401.44) (363.41, 401.44) (363.41, 408.02) (359.52, 408.02) /C2_0 u <|special_separator|> +(363.44, 401.44) (365.39, 401.44) (365.39, 408.02) (363.44, 408.02) /C2_0 f <|special_separator|> +(365.42, 401.44) (369.32, 401.44) (369.32, 408.02) (365.42, 408.02) /C2_0 a <|special_separator|> +(369.35, 401.44) (372.85, 401.44) (372.85, 408.02) (369.35, 408.02) /C2_0 c <|special_separator|> +(372.89, 401.44) (374.83, 401.44) (374.83, 408.02) (372.89, 408.02) /C2_0 t <|special_separator|> +(374.87, 401.44) (378.76, 401.44) (378.76, 408.02) (374.87, 408.02) /C2_0 u <|special_separator|> +(378.79, 401.44) (381.12, 401.44) (381.12, 408.02) (378.79, 408.02) /C2_0 r <|special_separator|> +(381.16, 401.44) (385.05, 401.44) (385.05, 408.02) (381.16, 408.02) /C2_0 e <|special_separator|> +(398.08, 405.94) (403.53, 405.94) (403.53, 412.52) (398.08, 412.52) /C2_0 Q <|special_separator|> +(403.60, 405.94) (407.49, 405.94) (407.49, 412.52) (403.60, 412.52) /C2_0 u <|special_separator|> +(407.56, 405.94) (411.45, 405.94) (411.45, 412.52) (407.56, 412.52) /C2_0 a <|special_separator|> +(411.52, 405.94) (415.42, 405.94) (415.42, 412.52) (411.52, 412.52) /C2_0 n <|special_separator|> +(415.49, 405.94) (417.43, 405.94) (417.43, 412.52) (415.49, 412.52) /C2_0 t <|special_separator|> +(417.50, 405.94) (419.06, 405.94) (419.06, 412.52) (417.50, 412.52) /C2_0 i <|special_separator|> +(419.13, 405.94) (421.07, 405.94) (421.07, 412.52) (419.13, 412.52) /C2_0 t <|special_separator|> +(421.14, 405.94) (424.64, 405.94) (424.64, 412.52) (421.14, 412.52) /C2_0 y <|special_separator|> +(424.71, 405.94) (426.66, 405.94) (426.66, 412.52) (424.71, 412.52) /C2_0 / <|special_separator|> +(426.73, 405.94) (431.78, 405.94) (431.78, 412.52) (426.73, 412.52) /C2_0 U <|special_separator|> +(431.85, 405.94) (435.74, 405.94) (435.74, 412.52) (431.85, 412.52) /C2_0 n <|special_separator|> +(435.81, 405.94) (437.37, 405.94) (437.37, 412.52) (435.81, 412.52) /C2_0 i <|special_separator|> +(437.44, 405.94) (439.38, 405.94) (439.38, 412.52) (437.44, 412.52) /C2_0 t <|special_separator|> +(439.39, 405.97) (441.54, 405.97) (441.54, 412.79) (439.39, 412.79) /T1_0 <|special_separator|> +(401.98, 396.94) (405.88, 396.94) (405.88, 403.52) (401.98, 403.52) /C2_0 o <|special_separator|> +(405.91, 396.94) (407.86, 396.94) (407.86, 403.52) (405.91, 403.52) /C2_0 f <|special_separator|> +(407.89, 396.94) (409.84, 396.94) (409.84, 403.52) (407.89, 403.52) /C2_0 <|special_separator|> +(409.87, 396.94) (415.70, 396.94) (415.70, 403.52) (409.87, 403.52) /C2_0 M <|special_separator|> +(415.74, 396.94) (419.63, 396.94) (419.63, 403.52) (415.74, 403.52) /C2_0 e <|special_separator|> +(419.67, 396.94) (423.56, 396.94) (423.56, 403.52) (419.67, 403.52) /C2_0 a <|special_separator|> +(423.59, 396.94) (427.09, 396.94) (427.09, 403.52) (423.59, 403.52) /C2_0 s <|special_separator|> +(427.13, 396.94) (431.02, 396.94) (431.02, 403.52) (427.13, 403.52) /C2_0 u <|special_separator|> +(431.06, 396.94) (433.39, 396.94) (433.39, 403.52) (431.06, 403.52) /C2_0 r <|special_separator|> +(433.42, 396.94) (437.31, 396.94) (437.31, 403.52) (433.42, 403.52) /C2_0 e <|special_separator|> +(461.60, 401.44) (466.66, 401.44) (466.66, 408.02) (461.60, 408.02) /C2_0 U <|special_separator|> +(466.69, 401.44) (470.58, 401.44) (470.58, 408.02) (466.69, 408.02) /C2_0 n <|special_separator|> +(470.61, 401.44) (472.16, 401.44) (472.16, 408.02) (470.61, 408.02) /C2_0 i <|special_separator|> +(472.19, 401.44) (474.13, 401.44) (474.13, 408.02) (472.19, 408.02) /C2_0 t <|special_separator|> +(474.16, 401.44) (476.11, 401.44) (476.11, 408.02) (474.16, 408.02) /C2_0 <|special_separator|> +(476.16, 401.44) (480.83, 401.44) (480.83, 408.02) (476.16, 408.02) /C2_0 P <|special_separator|> +(480.86, 401.44) (483.19, 401.44) (483.19, 408.02) (480.86, 408.02) /C2_0 r <|special_separator|> +(483.21, 401.44) (484.76, 401.44) (484.76, 408.02) (483.21, 408.02) /C2_0 i <|special_separator|> +(484.79, 401.44) (488.29, 401.44) (488.29, 408.02) (484.79, 408.02) /C2_0 c <|special_separator|> +(488.32, 401.44) (492.21, 401.44) (492.21, 408.02) (488.32, 408.02) /C2_0 e <|special_separator|> +(521.22, 401.44) (525.50, 401.44) (525.50, 408.02) (521.22, 408.02) /C2_0 T <|special_separator|> +(525.65, 401.44) (529.54, 401.44) (529.54, 408.02) (525.65, 408.02) /C2_0 o <|special_separator|> +(529.69, 401.44) (531.63, 401.44) (531.63, 408.02) (529.69, 408.02) /C2_0 t <|special_separator|> +(531.78, 401.44) (535.67, 401.44) (535.67, 408.02) (531.78, 408.02) /C2_0 a <|special_separator|> +(535.82, 401.44) (537.37, 401.44) (537.37, 408.02) (535.82, 408.02) /C2_0 l <|special_separator|> +(400.82, 192.95) (404.34, 192.95) (404.34, 199.77) (400.82, 199.77) /T1_0 P <|special_separator|> +(404.24, 192.95) (408.28, 192.95) (408.28, 199.77) (404.24, 199.77) /T1_0 a <|special_separator|> +(408.45, 192.95) (411.78, 192.95) (411.78, 199.77) (408.45, 199.77) /T1_0 c <|special_separator|> +(411.94, 192.95) (415.23, 192.95) (415.23, 199.77) (411.94, 199.77) /T1_0 k <|special_separator|> +(415.33, 192.95) (417.16, 192.95) (417.16, 199.77) (415.33, 199.77) /T1_0 i <|special_separator|> +(417.20, 192.95) (420.90, 192.95) (420.90, 199.77) (417.20, 199.77) /T1_0 n <|special_separator|> +(421.05, 192.95) (425.11, 192.95) (425.11, 199.77) (421.05, 199.77) /T1_0 g <|special_separator|> +(425.14, 192.95) (427.30, 192.95) (427.30, 199.77) (425.14, 199.77) /T1_0 <|special_separator|> +(427.33, 192.95) (432.35, 192.95) (432.35, 199.77) (427.33, 199.77) /T1_0 C <|special_separator|> +(432.42, 192.95) (436.35, 192.95) (436.35, 199.77) (432.42, 199.77) /T1_0 o <|special_separator|> +(436.46, 192.95) (439.25, 192.95) (439.25, 199.77) (436.46, 199.77) /T1_0 s <|special_separator|> +(439.36, 192.95) (441.04, 192.95) (441.04, 199.77) (439.36, 199.77) /T1_0 t <|special_separator|> +(441.21, 192.95) (444.01, 192.95) (444.01, 199.77) (441.21, 199.77) /T1_0 s <|special_separator|> +(404.15, 176.95) (407.50, 176.95) (407.50, 183.77) (404.15, 183.77) /T1_0 F <|special_separator|> +(407.46, 176.95) (409.80, 176.95) (409.80, 183.77) (407.46, 183.77) /T1_0 r <|special_separator|> +(409.85, 176.95) (413.48, 176.95) (413.48, 183.77) (409.85, 183.77) /T1_0 e <|special_separator|> +(413.57, 176.95) (415.40, 176.95) (415.40, 183.77) (413.57, 183.77) /T1_0 i <|special_separator|> +(415.49, 176.95) (419.55, 176.95) (419.55, 183.77) (415.49, 183.77) /T1_0 g <|special_separator|> +(419.63, 176.95) (423.33, 176.95) (423.33, 183.77) (419.63, 183.77) /T1_0 h <|special_separator|> +(423.43, 176.95) (425.11, 176.95) (425.11, 183.77) (423.43, 183.77) /T1_0 t <|special_separator|> +(425.14, 176.95) (427.30, 176.95) (427.30, 183.77) (425.14, 183.77) /T1_0 <|special_separator|> +(427.33, 176.95) (432.35, 176.95) (432.35, 183.77) (427.33, 183.77) /T1_0 C <|special_separator|> +(432.42, 176.95) (436.35, 176.95) (436.35, 183.77) (432.42, 183.77) /T1_0 o <|special_separator|> +(436.46, 176.95) (439.25, 176.95) (439.25, 183.77) (436.46, 183.77) /T1_0 s <|special_separator|> +(439.36, 176.95) (441.04, 176.95) (441.04, 183.77) (439.36, 183.77) /T1_0 t <|special_separator|> +(441.21, 176.95) (444.01, 176.95) (444.01, 183.77) (441.21, 183.77) /T1_0 s <|special_separator|> +(360.13, 160.95) (366.17, 160.95) (366.17, 167.76) (360.13, 167.76) /T1_0 O <|special_separator|> +(366.36, 160.95) (368.04, 160.95) (368.04, 167.76) (366.36, 167.76) /T1_0 t <|special_separator|> +(368.22, 160.95) (371.91, 160.95) (371.91, 167.76) (368.22, 167.76) /T1_0 h <|special_separator|> +(372.05, 160.95) (375.68, 160.95) (375.68, 167.76) (372.05, 167.76) /T1_0 e <|special_separator|> +(375.83, 160.95) (378.18, 160.95) (378.18, 167.76) (375.83, 167.76) /T1_0 r <|special_separator|> +(378.21, 160.95) (380.37, 160.95) (380.37, 167.76) (378.21, 167.76) /T1_0 <|special_separator|> +(380.40, 160.95) (383.69, 160.95) (383.69, 167.76) (380.40, 167.76) /T1_0 T <|special_separator|> +(383.47, 160.95) (385.81, 160.95) (385.81, 167.76) (383.47, 167.76) /T1_0 r <|special_separator|> +(385.84, 160.95) (389.88, 160.95) (389.88, 167.76) (385.84, 167.76) /T1_0 a <|special_separator|> +(389.99, 160.95) (393.68, 160.95) (393.68, 167.76) (389.99, 167.76) /T1_0 n <|special_separator|> +(393.75, 160.95) (396.54, 160.95) (396.54, 167.76) (393.75, 167.76) /T1_0 s <|special_separator|> +(396.66, 160.95) (400.70, 160.95) (400.70, 167.76) (396.66, 167.76) /T1_0 p <|special_separator|> +(400.89, 160.95) (404.83, 160.95) (404.83, 167.76) (400.89, 167.76) /T1_0 o <|special_separator|> +(404.97, 160.95) (407.32, 160.95) (407.32, 167.76) (404.97, 167.76) /T1_0 r <|special_separator|> +(407.60, 160.95) (409.28, 160.95) (409.28, 167.76) (407.60, 167.76) /T1_0 t <|special_separator|> +(409.45, 160.95) (413.49, 160.95) (413.49, 167.76) (409.45, 167.76) /T1_0 a <|special_separator|> +(413.63, 160.95) (415.31, 160.95) (415.31, 167.76) (413.63, 167.76) /T1_0 t <|special_separator|> +(415.42, 160.95) (417.26, 160.95) (417.26, 167.76) (415.42, 167.76) /T1_0 i <|special_separator|> +(417.33, 160.95) (421.26, 160.95) (421.26, 167.76) (417.33, 167.76) /T1_0 o <|special_separator|> +(421.40, 160.95) (425.09, 160.95) (425.09, 167.76) (421.40, 167.76) /T1_0 n <|special_separator|> +(425.13, 160.95) (427.28, 160.95) (427.28, 167.76) (425.13, 167.76) /T1_0 <|special_separator|> +(427.32, 160.95) (432.34, 160.95) (432.34, 167.76) (427.32, 167.76) /T1_0 C <|special_separator|> +(432.41, 160.95) (436.34, 160.95) (436.34, 167.76) (432.41, 167.76) /T1_0 o <|special_separator|> +(436.45, 160.95) (439.24, 160.95) (439.24, 167.76) (436.45, 167.76) /T1_0 s <|special_separator|> +(439.34, 160.95) (441.02, 160.95) (441.02, 167.76) (439.34, 167.76) /T1_0 t <|special_separator|> +(441.20, 160.95) (443.99, 160.95) (443.99, 167.76) (441.20, 167.76) /T1_0 s <|special_separator|> +(050.00, 145.16) (051.68, 145.16) (051.68, 151.99) (050.00, 151.99) /T1_3 I <|special_separator|> +(051.85, 145.16) (053.53, 145.16) (053.53, 151.99) (051.85, 151.99) /T1_3 t <|special_separator|> +(053.57, 145.16) (055.72, 145.16) (055.72, 151.99) (053.57, 151.99) /T1_3 <|special_separator|> +(055.76, 145.16) (057.59, 145.16) (057.59, 151.99) (055.76, 151.99) /T1_3 i <|special_separator|> +(057.61, 145.16) (060.40, 145.16) (060.40, 151.99) (057.61, 151.99) /T1_3 s <|special_separator|> +(060.43, 145.16) (062.59, 145.16) (062.59, 151.99) (060.43, 151.99) /T1_3 <|special_separator|> +(062.62, 145.16) (066.32, 145.16) (066.32, 151.99) (062.62, 151.99) /T1_3 h <|special_separator|> +(066.43, 145.16) (070.06, 145.16) (070.06, 151.99) (066.43, 151.99) /T1_3 e <|special_separator|> +(070.21, 145.16) (072.56, 145.16) (072.56, 151.99) (070.21, 151.99) /T1_3 r <|special_separator|> +(072.45, 145.16) (076.09, 145.16) (076.09, 151.99) (072.45, 151.99) /T1_3 e <|special_separator|> +(076.24, 145.16) (080.28, 145.16) (080.28, 151.99) (076.24, 151.99) /T1_3 b <|special_separator|> +(080.30, 145.16) (083.79, 145.16) (083.79, 151.99) (080.30, 151.99) /T1_3 y <|special_separator|> +(083.82, 145.16) (085.98, 145.16) (085.98, 151.99) (083.82, 151.99) /T1_3 <|special_separator|> +(086.01, 145.16) (089.34, 145.16) (089.34, 151.99) (086.01, 151.99) /T1_3 c <|special_separator|> +(089.49, 145.16) (093.12, 145.16) (093.12, 151.99) (089.49, 151.99) /T1_3 e <|special_separator|> +(093.28, 145.16) (095.62, 145.16) (095.62, 151.99) (093.28, 151.99) /T1_3 r <|special_separator|> +(095.73, 145.16) (097.41, 145.16) (097.41, 151.99) (095.73, 151.99) /T1_3 t <|special_separator|> +(097.51, 145.16) (099.34, 145.16) (099.34, 151.99) (097.51, 151.99) /T1_3 i <|special_separator|> +(099.40, 145.16) (103.04, 145.16) (103.04, 151.99) (099.40, 151.99) /T1_3 fi <|special_separator|> +(103.08, 145.16) (106.72, 145.16) (106.72, 151.99) (103.08, 151.99) /T1_3 e <|special_separator|> +(106.90, 145.16) (110.94, 145.16) (110.94, 151.99) (106.90, 151.99) /T1_3 d <|special_separator|> +(110.97, 145.16) (113.13, 145.16) (113.13, 151.99) (110.97, 151.99) /T1_3 <|special_separator|> +(113.16, 145.16) (114.84, 145.16) (114.84, 151.99) (113.16, 151.99) /T1_3 t <|special_separator|> +(114.98, 145.16) (118.68, 145.16) (118.68, 151.99) (114.98, 151.99) /T1_3 h <|special_separator|> +(118.77, 145.16) (122.81, 145.16) (122.81, 151.99) (118.77, 151.99) /T1_3 a <|special_separator|> +(122.94, 145.16) (124.62, 145.16) (124.62, 151.99) (122.94, 151.99) /T1_3 t <|special_separator|> +(124.65, 145.16) (126.81, 145.16) (126.81, 151.99) (124.65, 151.99) /T1_3 <|special_separator|> +(126.84, 145.16) (128.52, 145.16) (128.52, 151.99) (126.84, 151.99) /T1_3 t <|special_separator|> +(128.66, 145.16) (132.36, 145.16) (132.36, 151.99) (128.66, 151.99) /T1_3 h <|special_separator|> +(132.38, 145.16) (134.21, 145.16) (134.21, 151.99) (132.38, 151.99) /T1_3 i <|special_separator|> +(134.23, 145.16) (137.02, 145.16) (137.02, 151.99) (134.23, 151.99) /T1_3 s <|special_separator|> +(137.06, 145.16) (139.21, 145.16) (139.21, 151.99) (137.06, 151.99) /T1_3 <|special_separator|> +(139.25, 145.16) (141.08, 145.16) (141.08, 151.99) (139.25, 151.99) /T1_3 i <|special_separator|> +(141.12, 145.16) (144.82, 145.16) (144.82, 151.99) (141.12, 151.99) /T1_3 n <|special_separator|> +(144.80, 145.16) (148.04, 145.16) (148.04, 151.99) (144.80, 151.99) /T1_3 v <|special_separator|> +(148.07, 145.16) (152.00, 145.16) (152.00, 151.99) (148.07, 151.99) /T1_3 o <|special_separator|> +(152.08, 145.16) (153.91, 145.16) (153.91, 151.99) (152.08, 151.99) /T1_3 i <|special_separator|> +(153.98, 145.16) (157.31, 145.16) (157.31, 151.99) (153.98, 151.99) /T1_3 c <|special_separator|> +(157.46, 145.16) (161.09, 145.16) (161.09, 151.99) (157.46, 151.99) /T1_3 e <|special_separator|> +(161.13, 145.16) (163.28, 145.16) (163.28, 151.99) (161.13, 151.99) /T1_3 <|special_separator|> +(163.32, 145.16) (166.11, 145.16) (166.11, 151.99) (163.32, 151.99) /T1_3 s <|special_separator|> +(166.20, 145.16) (169.90, 145.16) (169.90, 151.99) (166.20, 151.99) /T1_3 h <|special_separator|> +(169.98, 145.16) (173.92, 145.16) (173.92, 151.99) (169.98, 151.99) /T1_3 o <|special_separator|> +(173.94, 145.16) (179.26, 145.16) (179.26, 151.99) (173.94, 151.99) /T1_3 w <|special_separator|> +(179.24, 145.16) (182.04, 145.16) (182.04, 151.99) (179.24, 151.99) /T1_3 s <|special_separator|> +(182.07, 145.16) (184.23, 145.16) (184.23, 151.99) (182.07, 151.99) /T1_3 <|special_separator|> +(184.26, 145.16) (185.94, 145.16) (185.94, 151.99) (184.26, 151.99) /T1_3 t <|special_separator|> +(186.08, 145.16) (189.78, 145.16) (189.78, 151.99) (186.08, 151.99) /T1_3 h <|special_separator|> +(189.88, 145.16) (193.52, 145.16) (193.52, 151.99) (189.88, 151.99) /T1_3 e <|special_separator|> +(193.55, 145.16) (195.71, 145.16) (195.71, 151.99) (193.55, 151.99) /T1_3 <|special_separator|> +(195.74, 145.16) (199.78, 145.16) (199.78, 151.99) (195.74, 151.99) /T1_3 a <|special_separator|> +(199.92, 145.16) (203.25, 145.16) (203.25, 151.99) (199.92, 151.99) /T1_3 c <|special_separator|> +(203.41, 145.16) (205.09, 145.16) (205.09, 151.99) (203.41, 151.99) /T1_3 t <|special_separator|> +(205.23, 145.16) (208.81, 145.16) (208.81, 151.99) (205.23, 151.99) /T1_3 u <|special_separator|> +(208.92, 145.16) (212.96, 145.16) (212.96, 151.99) (208.92, 151.99) /T1_3 a <|special_separator|> +(213.08, 145.16) (214.66, 145.16) (214.66, 151.99) (213.08, 151.99) /T1_3 l <|special_separator|> +(214.70, 145.16) (216.86, 145.16) (216.86, 151.99) (214.70, 151.99) /T1_3 <|special_separator|> +(216.89, 145.16) (220.93, 145.16) (220.93, 151.99) (216.89, 151.99) /T1_3 p <|special_separator|> +(221.06, 145.16) (223.40, 145.16) (223.40, 151.99) (221.06, 151.99) /T1_3 r <|special_separator|> +(223.32, 145.16) (225.16, 145.16) (225.16, 151.99) (223.32, 151.99) /T1_3 i <|special_separator|> +(225.23, 145.16) (228.56, 145.16) (228.56, 151.99) (225.23, 151.99) /T1_3 c <|special_separator|> +(228.71, 145.16) (232.34, 145.16) (232.34, 151.99) (228.71, 151.99) /T1_3 e <|special_separator|> +(232.37, 145.16) (234.53, 145.16) (234.53, 151.99) (232.37, 151.99) /T1_3 <|special_separator|> +(234.57, 145.16) (238.50, 145.16) (238.50, 151.99) (234.57, 151.99) /T1_3 o <|special_separator|> +(238.63, 145.16) (240.54, 145.16) (240.54, 151.99) (238.63, 151.99) /T1_3 f <|special_separator|> +(240.58, 145.16) (242.73, 145.16) (242.73, 151.99) (240.58, 151.99) /T1_3 <|special_separator|> +(242.77, 145.16) (244.45, 145.16) (244.45, 151.99) (242.77, 151.99) /T1_3 t <|special_separator|> +(244.59, 145.16) (248.29, 145.16) (248.29, 151.99) (244.59, 151.99) /T1_3 h <|special_separator|> +(248.39, 145.16) (252.02, 145.16) (252.02, 151.99) (248.39, 151.99) /T1_3 e <|special_separator|> +(252.06, 145.16) (254.21, 145.16) (254.21, 151.99) (252.06, 151.99) /T1_3 <|special_separator|> +(254.25, 145.16) (258.31, 145.16) (258.31, 151.99) (254.25, 151.99) /T1_3 g <|special_separator|> +(258.40, 145.16) (262.33, 145.16) (262.33, 151.99) (258.40, 151.99) /T1_3 o <|special_separator|> +(262.49, 145.16) (266.42, 145.16) (266.42, 151.99) (262.49, 151.99) /T1_3 o <|special_separator|> +(266.56, 145.16) (270.60, 145.16) (270.60, 151.99) (266.56, 151.99) /T1_3 d <|special_separator|> +(270.68, 145.16) (273.47, 145.16) (273.47, 151.99) (270.68, 151.99) /T1_3 s <|special_separator|> +(273.47, 145.16) (275.63, 145.16) (275.63, 151.99) (273.47, 151.99) /T1_3 <|special_separator|> +(050.00, 135.15) (054.04, 135.15) (054.04, 141.98) (050.00, 141.98) /T1_3 d <|special_separator|> +(054.19, 135.15) (057.82, 135.15) (057.82, 141.98) (054.19, 141.98) /T1_3 e <|special_separator|> +(057.93, 135.15) (060.72, 135.15) (060.72, 141.98) (057.93, 141.98) /T1_3 s <|special_separator|> +(060.84, 135.15) (064.17, 135.15) (064.17, 141.98) (060.84, 141.98) /T1_3 c <|special_separator|> +(064.32, 135.15) (066.66, 135.15) (066.66, 141.98) (064.32, 141.98) /T1_3 r <|special_separator|> +(066.59, 135.15) (068.42, 135.15) (068.42, 141.98) (066.59, 141.98) /T1_3 i <|special_separator|> +(068.48, 135.15) (072.52, 135.15) (072.52, 141.98) (068.48, 141.98) /T1_3 b <|special_separator|> +(072.68, 135.15) (076.31, 135.15) (076.31, 141.98) (072.68, 141.98) /T1_3 e <|special_separator|> +(076.49, 135.15) (080.53, 135.15) (080.53, 141.98) (076.49, 141.98) /T1_3 d <|special_separator|> +(080.41, 135.15) (082.57, 135.15) (082.57, 141.98) (080.41, 141.98) /T1_3 , <|special_separator|> +(082.60, 135.15) (084.76, 135.15) (084.76, 141.98) (082.60, 141.98) /T1_3 <|special_separator|> +(084.79, 135.15) (086.47, 135.15) (086.47, 141.98) (084.79, 141.98) /T1_3 t <|special_separator|> +(086.61, 135.15) (090.31, 135.15) (090.31, 141.98) (086.61, 141.98) /T1_3 h <|special_separator|> +(090.40, 135.15) (094.44, 135.15) (094.44, 141.98) (090.40, 141.98) /T1_3 a <|special_separator|> +(094.57, 135.15) (096.25, 135.15) (096.25, 141.98) (094.57, 141.98) /T1_3 t <|special_separator|> +(096.28, 135.15) (098.44, 135.15) (098.44, 141.98) (096.28, 141.98) /T1_3 <|special_separator|> +(098.47, 135.15) (102.17, 135.15) (102.17, 141.98) (098.47, 141.98) /T1_3 n <|special_separator|> +(102.25, 135.15) (106.19, 135.15) (106.19, 141.98) (102.25, 141.98) /T1_3 o <|special_separator|> +(106.22, 135.15) (108.38, 135.15) (108.38, 141.98) (106.22, 141.98) /T1_3 <|special_separator|> +(108.41, 135.15) (112.35, 135.15) (112.35, 141.98) (108.41, 141.98) /T1_3 o <|special_separator|> +(112.48, 135.15) (114.16, 135.15) (114.16, 141.98) (112.48, 141.98) /T1_3 t <|special_separator|> +(114.30, 135.15) (117.99, 135.15) (117.99, 141.98) (114.30, 141.98) /T1_3 h <|special_separator|> +(118.10, 135.15) (121.73, 135.15) (121.73, 141.98) (118.10, 141.98) /T1_3 e <|special_separator|> +(121.89, 135.15) (124.23, 135.15) (124.23, 141.98) (121.89, 141.98) /T1_3 r <|special_separator|> +(124.27, 135.15) (126.42, 135.15) (126.42, 141.98) (124.27, 141.98) /T1_3 <|special_separator|> +(126.46, 135.15) (128.29, 135.15) (128.29, 141.98) (126.46, 141.98) /T1_3 i <|special_separator|> +(128.33, 135.15) (132.03, 135.15) (132.03, 141.98) (128.33, 141.98) /T1_3 n <|special_separator|> +(132.01, 135.15) (135.25, 135.15) (135.25, 141.98) (132.01, 141.98) /T1_3 v <|special_separator|> +(135.28, 135.15) (139.21, 135.15) (139.21, 141.98) (135.28, 141.98) /T1_3 o <|special_separator|> +(139.29, 135.15) (141.12, 135.15) (141.12, 141.98) (139.29, 141.98) /T1_3 i <|special_separator|> +(141.19, 135.15) (144.52, 135.15) (144.52, 141.98) (141.19, 141.98) /T1_3 c <|special_separator|> +(144.67, 135.15) (148.30, 135.15) (148.30, 141.98) (144.67, 141.98) /T1_3 e <|special_separator|> +(148.34, 135.15) (150.50, 135.15) (150.50, 141.98) (148.34, 141.98) /T1_3 <|special_separator|> +(150.53, 135.15) (154.23, 135.15) (154.23, 141.98) (150.53, 141.98) /T1_3 h <|special_separator|> +(154.32, 135.15) (158.36, 135.15) (158.36, 141.98) (154.32, 141.98) /T1_3 a <|special_separator|> +(158.44, 135.15) (161.23, 135.15) (161.23, 141.98) (158.44, 141.98) /T1_3 s <|special_separator|> +(161.27, 135.15) (163.42, 135.15) (163.42, 141.98) (161.27, 141.98) /T1_3 <|special_separator|> +(163.46, 135.15) (167.50, 135.15) (167.50, 141.98) (163.46, 141.98) /T1_3 b <|special_separator|> +(167.66, 135.15) (171.29, 135.15) (171.29, 141.98) (167.66, 141.98) /T1_3 e <|special_separator|> +(171.46, 135.15) (175.09, 135.15) (175.09, 141.98) (171.46, 141.98) /T1_3 e <|special_separator|> +(175.23, 135.15) (178.93, 135.15) (178.93, 141.98) (175.23, 141.98) /T1_3 n <|special_separator|> +(178.96, 135.15) (181.12, 135.15) (181.12, 141.98) (178.96, 141.98) /T1_3 <|special_separator|> +(181.16, 135.15) (185.09, 135.15) (185.09, 141.98) (181.16, 141.98) /T1_3 o <|special_separator|> +(185.23, 135.15) (187.57, 135.15) (187.57, 141.98) (185.23, 141.98) /T1_3 r <|special_separator|> +(187.61, 135.15) (189.77, 135.15) (189.77, 141.98) (187.61, 141.98) /T1_3 <|special_separator|> +(189.80, 135.15) (195.12, 135.15) (195.12, 141.98) (189.80, 141.98) /T1_3 w <|special_separator|> +(195.10, 135.15) (196.93, 135.15) (196.93, 141.98) (195.10, 141.98) /T1_3 i <|special_separator|> +(196.98, 135.15) (198.57, 135.15) (198.57, 141.98) (196.98, 141.98) /T1_3 l <|special_separator|> +(198.68, 135.15) (200.27, 135.15) (200.27, 141.98) (198.68, 141.98) /T1_3 l <|special_separator|> +(200.30, 135.15) (202.46, 135.15) (202.46, 141.98) (200.30, 141.98) /T1_3 <|special_separator|> +(202.49, 135.15) (206.53, 135.15) (206.53, 141.98) (202.49, 141.98) /T1_3 b <|special_separator|> +(206.69, 135.15) (210.32, 135.15) (210.32, 141.98) (206.69, 141.98) /T1_3 e <|special_separator|> +(210.36, 135.15) (212.52, 135.15) (212.52, 141.98) (210.36, 141.98) /T1_3 <|special_separator|> +(212.55, 135.15) (214.38, 135.15) (214.38, 141.98) (212.55, 141.98) /T1_3 i <|special_separator|> +(214.40, 135.15) (217.19, 135.15) (217.19, 141.98) (214.40, 141.98) /T1_3 s <|special_separator|> +(217.25, 135.15) (220.05, 135.15) (220.05, 141.98) (217.25, 141.98) /T1_3 s <|special_separator|> +(220.12, 135.15) (223.70, 135.15) (223.70, 141.98) (220.12, 141.98) /T1_3 u <|special_separator|> +(223.83, 135.15) (227.46, 135.15) (227.46, 141.98) (223.83, 141.98) /T1_3 e <|special_separator|> +(227.64, 135.15) (231.68, 135.15) (231.68, 141.98) (227.64, 141.98) /T1_3 d <|special_separator|> +(231.56, 135.15) (233.72, 135.15) (233.72, 141.98) (231.56, 141.98) /T1_3 , <|special_separator|> +(233.75, 135.15) (235.91, 135.15) (235.91, 141.98) (233.75, 141.98) /T1_3 <|special_separator|> +(235.94, 135.15) (239.98, 135.15) (239.98, 141.98) (235.94, 141.98) /T1_3 a <|special_separator|> +(240.09, 135.15) (243.78, 135.15) (243.78, 141.98) (240.09, 141.98) /T1_3 n <|special_separator|> +(243.88, 135.15) (247.91, 135.15) (247.91, 141.98) (243.88, 141.98) /T1_3 d <|special_separator|> +(247.95, 135.15) (250.11, 135.15) (250.11, 141.98) (247.95, 141.98) /T1_3 <|special_separator|> +(250.14, 135.15) (251.82, 135.15) (251.82, 141.98) (250.14, 141.98) /T1_3 t <|special_separator|> +(251.96, 135.15) (255.66, 135.15) (255.66, 141.98) (251.96, 141.98) /T1_3 h <|special_separator|> +(255.75, 135.15) (259.79, 135.15) (259.79, 141.98) (255.75, 141.98) /T1_3 a <|special_separator|> +(259.91, 135.15) (261.59, 135.15) (261.59, 141.98) (259.91, 141.98) /T1_3 t <|special_separator|> +(261.63, 135.15) (263.78, 135.15) (263.78, 141.98) (261.63, 141.98) /T1_3 <|special_separator|> +(263.82, 135.15) (267.86, 135.15) (267.86, 141.98) (263.82, 141.98) /T1_3 a <|special_separator|> +(267.97, 135.15) (269.56, 135.15) (269.56, 141.98) (267.97, 141.98) /T1_3 l <|special_separator|> +(269.66, 135.15) (271.25, 135.15) (271.25, 141.98) (269.66, 141.98) /T1_3 l <|special_separator|> +(271.25, 135.15) (273.41, 135.15) (273.41, 141.98) (271.25, 141.98) /T1_3 <|special_separator|> +(050.00, 125.15) (054.04, 125.15) (054.04, 131.98) (050.00, 131.98) /T1_3 p <|special_separator|> +(054.20, 125.15) (058.24, 125.15) (058.24, 131.98) (054.20, 131.98) /T1_3 a <|special_separator|> +(058.35, 125.15) (060.70, 125.15) (060.70, 131.98) (058.35, 131.98) /T1_3 r <|special_separator|> +(060.81, 125.15) (062.49, 125.15) (062.49, 131.98) (060.81, 131.98) /T1_3 t <|special_separator|> +(062.58, 125.15) (064.42, 125.15) (064.42, 131.98) (062.58, 131.98) /T1_3 i <|special_separator|> +(064.49, 125.15) (067.82, 125.15) (067.82, 131.98) (064.49, 131.98) /T1_3 c <|special_separator|> +(067.94, 125.15) (071.52, 125.15) (071.52, 131.98) (067.94, 131.98) /T1_3 u <|special_separator|> +(071.62, 125.15) (073.21, 125.15) (073.21, 131.98) (071.62, 131.98) /T1_3 l <|special_separator|> +(073.33, 125.15) (077.37, 125.15) (077.37, 131.98) (073.33, 131.98) /T1_3 a <|special_separator|> +(077.49, 125.15) (079.84, 125.15) (079.84, 131.98) (077.49, 131.98) /T1_3 r <|special_separator|> +(079.74, 125.15) (082.53, 125.15) (082.53, 131.98) (079.74, 131.98) /T1_3 s <|special_separator|> +(082.57, 125.15) (084.72, 125.15) (084.72, 131.98) (082.57, 131.98) /T1_3 <|special_separator|> +(084.76, 125.15) (088.80, 125.15) (088.80, 131.98) (084.76, 131.98) /T1_3 a <|special_separator|> +(088.92, 125.15) (091.26, 125.15) (091.26, 131.98) (088.92, 131.98) /T1_3 r <|special_separator|> +(091.16, 125.15) (094.79, 125.15) (094.79, 131.98) (091.16, 131.98) /T1_3 e <|special_separator|> +(094.82, 125.15) (096.98, 125.15) (096.98, 131.98) (094.82, 131.98) /T1_3 <|special_separator|> +(097.02, 125.15) (098.70, 125.15) (098.70, 131.98) (097.02, 131.98) /T1_3 t <|special_separator|> +(098.85, 125.15) (101.19, 125.15) (101.19, 131.98) (098.85, 131.98) /T1_3 r <|special_separator|> +(101.18, 125.15) (104.76, 125.15) (104.76, 131.98) (101.18, 131.98) /T1_3 u <|special_separator|> +(104.89, 125.15) (108.52, 125.15) (108.52, 131.98) (104.89, 131.98) /T1_3 e <|special_separator|> +(108.56, 125.15) (110.71, 125.15) (110.71, 131.98) (108.56, 131.98) /T1_3 <|special_separator|> +(110.75, 125.15) (114.79, 125.15) (114.79, 131.98) (110.75, 131.98) /T1_3 a <|special_separator|> +(114.89, 125.15) (118.59, 125.15) (118.59, 131.98) (114.89, 131.98) /T1_3 n <|special_separator|> +(118.68, 125.15) (122.72, 125.15) (122.72, 131.98) (118.68, 131.98) /T1_3 d <|special_separator|> +(122.75, 125.15) (124.91, 125.15) (124.91, 131.98) (122.75, 131.98) /T1_3 <|special_separator|> +(124.95, 125.15) (128.28, 125.15) (128.28, 131.98) (124.95, 131.98) /T1_3 c <|special_separator|> +(128.40, 125.15) (132.34, 125.15) (132.34, 131.98) (128.40, 131.98) /T1_3 o <|special_separator|> +(132.48, 125.15) (134.82, 125.15) (134.82, 131.98) (132.48, 131.98) /T1_3 r <|special_separator|> +(134.80, 125.15) (137.15, 125.15) (137.15, 131.98) (134.80, 131.98) /T1_3 r <|special_separator|> +(137.04, 125.15) (140.67, 125.15) (140.67, 131.98) (137.04, 131.98) /T1_3 e <|special_separator|> +(140.86, 125.15) (144.19, 125.15) (144.19, 131.98) (140.86, 131.98) /T1_3 c <|special_separator|> +(144.35, 125.15) (146.03, 125.15) (146.03, 131.98) (144.35, 131.98) /T1_3 t <|special_separator|> +(145.95, 125.15) (148.11, 125.15) (148.11, 131.98) (145.95, 131.98) /T1_3 . <|special_separator|> +(415.28, 144.94) (420.28, 144.94) (420.28, 151.76) (415.28, 151.76) /T1_0 h <|special_separator|> +(420.46, 144.94) (424.50, 144.94) (424.50, 151.76) (420.46, 151.76) /T1_0 a <|special_separator|> +(424.60, 144.94) (428.30, 144.94) (428.30, 151.76) (424.60, 151.76) /T1_0 n <|special_separator|> +(428.43, 144.94) (432.47, 144.94) (432.47, 151.76) (428.43, 151.76) /T1_0 d <|special_separator|> +(432.58, 144.94) (434.17, 144.94) (434.17, 151.76) (432.58, 151.76) /T1_0 l <|special_separator|> +(434.23, 144.94) (436.06, 144.94) (436.06, 151.76) (434.23, 151.76) /T1_0 i <|special_separator|> +(436.10, 144.94) (439.80, 144.94) (439.80, 151.76) (436.10, 151.76) /T1_0 n <|special_separator|> +(439.95, 144.94) (444.01, 144.94) (444.01, 151.76) (439.95, 151.76) /T1_0 g <|special_separator|> +(395.45, 128.94) (397.13, 128.94) (397.13, 135.75) (395.45, 135.75) /T1_0 I <|special_separator|> +(397.27, 128.94) (400.96, 128.94) (400.96, 135.75) (397.27, 135.75) /T1_0 n <|special_separator|> +(401.03, 128.94) (403.82, 128.94) (403.82, 135.75) (401.03, 135.75) /T1_0 s <|special_separator|> +(403.91, 128.94) (407.49, 128.94) (407.49, 135.75) (403.91, 135.75) /T1_0 u <|special_separator|> +(407.61, 128.94) (409.96, 128.94) (409.96, 135.75) (407.61, 135.75) /T1_0 r <|special_separator|> +(409.99, 128.94) (414.02, 128.94) (414.02, 135.75) (409.99, 135.75) /T1_0 a <|special_separator|> +(414.13, 128.94) (417.83, 128.94) (417.83, 135.75) (414.13, 135.75) /T1_0 n <|special_separator|> +(417.97, 128.94) (421.30, 128.94) (421.30, 135.75) (417.97, 135.75) /T1_0 c <|special_separator|> +(421.46, 128.94) (425.09, 128.94) (425.09, 135.75) (421.46, 135.75) /T1_0 e <|special_separator|> +(425.13, 128.94) (427.28, 128.94) (427.28, 135.75) (425.13, 135.75) /T1_0 <|special_separator|> +(427.32, 128.94) (432.34, 128.94) (432.34, 135.75) (427.32, 135.75) /T1_0 C <|special_separator|> +(432.41, 128.94) (436.34, 128.94) (436.34, 135.75) (432.41, 135.75) /T1_0 o <|special_separator|> +(436.45, 128.94) (439.24, 128.94) (439.24, 135.75) (436.45, 135.75) /T1_0 s <|special_separator|> +(439.34, 128.94) (441.02, 128.94) (441.02, 135.75) (439.34, 135.75) /T1_0 t <|special_separator|> +(441.20, 128.94) (443.99, 128.94) (443.99, 135.75) (441.20, 135.75) /T1_0 s <|special_separator|> +(423.74, 112.94) (428.63, 112.94) (428.63, 119.75) (423.74, 119.75) /T1_0 A <|special_separator|> +(428.79, 112.94) (431.59, 112.94) (431.59, 119.75) (428.79, 119.75) /T1_0 s <|special_separator|> +(431.74, 112.94) (434.53, 112.94) (434.53, 119.75) (431.74, 119.75) /T1_0 s <|special_separator|> +(434.58, 112.94) (436.42, 112.94) (436.42, 119.75) (434.58, 119.75) /T1_0 i <|special_separator|> +(436.45, 112.94) (439.25, 112.94) (439.25, 119.75) (436.45, 119.75) /T1_0 s <|special_separator|> +(439.35, 112.94) (441.03, 112.94) (441.03, 119.75) (439.35, 119.75) /T1_0 t <|special_separator|> +(441.21, 112.94) (444.00, 112.94) (444.00, 119.75) (441.21, 119.75) /T1_0 s <|special_separator|> +(050.00, 098.16) (053.92, 098.16) (053.92, 104.97) (050.00, 104.97) /T1_0 S <|special_separator|> +(054.04, 098.16) (055.71, 098.16) (055.71, 104.97) (054.04, 104.97) /T1_0 I <|special_separator|> +(055.91, 098.16) (061.65, 098.16) (061.65, 104.97) (055.91, 104.97) /T1_0 G <|special_separator|> +(061.80, 098.16) (067.64, 098.16) (067.64, 104.97) (061.80, 104.97) /T1_0 N <|special_separator|> +(067.78, 098.16) (072.68, 098.16) (072.68, 104.97) (067.78, 104.97) /T1_0 A <|special_separator|> +(072.46, 098.16) (075.75, 098.16) (075.75, 104.97) (072.46, 104.97) /T1_0 T <|special_separator|> +(075.90, 098.16) (080.70, 098.16) (080.70, 104.97) (075.90, 104.97) /T1_0 U <|special_separator|> +(080.90, 098.16) (084.70, 098.16) (084.70, 104.97) (080.90, 104.97) /T1_0 R <|special_separator|> +(084.79, 098.16) (088.53, 098.16) (088.53, 104.97) (084.79, 104.97) /T1_0 E <|special_separator|> +(088.57, 098.16) (090.72, 098.16) (090.72, 104.97) (088.57, 104.97) /T1_0 <|special_separator|> +(090.76, 098.16) (095.62, 098.16) (095.62, 104.97) (090.76, 104.97) /T1_0 & <|special_separator|> +(095.66, 098.16) (097.81, 098.16) (097.81, 104.97) (095.66, 104.97) /T1_0 <|special_separator|> +(097.85, 098.16) (101.76, 098.16) (101.76, 104.97) (097.85, 104.97) /T1_0 S <|special_separator|> +(101.89, 098.16) (105.18, 098.16) (105.18, 104.97) (101.89, 104.97) /T1_0 T <|special_separator|> +(104.95, 098.16) (109.85, 098.16) (109.85, 104.97) (104.95, 104.97) /T1_0 A <|special_separator|> +(109.63, 098.16) (112.92, 098.16) (112.92, 104.97) (109.63, 104.97) /T1_0 T <|special_separator|> +(113.07, 098.16) (117.87, 098.16) (117.87, 104.97) (113.07, 104.97) /T1_0 U <|special_separator|> +(117.97, 098.16) (121.88, 098.16) (121.88, 104.97) (117.97, 104.97) /T1_0 S <|special_separator|> +(121.91, 098.16) (124.07, 098.16) (124.07, 104.97) (121.91, 104.97) /T1_0 <|special_separator|> +(124.11, 098.16) (130.14, 098.16) (130.14, 104.97) (124.11, 104.97) /T1_0 O <|special_separator|> +(130.34, 098.16) (133.69, 098.16) (133.69, 104.97) (130.34, 104.97) /T1_0 F <|special_separator|> +(133.72, 098.16) (135.88, 098.16) (135.88, 104.97) (133.72, 104.97) /T1_0 <|special_separator|> +(135.91, 098.16) (140.81, 098.16) (140.81, 104.97) (135.91, 104.97) /T1_0 A <|special_separator|> +(140.75, 098.16) (145.55, 098.16) (145.55, 104.97) (140.75, 104.97) /T1_0 U <|special_separator|> +(145.70, 098.16) (148.99, 098.16) (148.99, 104.97) (145.70, 104.97) /T1_0 T <|special_separator|> +(149.12, 098.16) (154.12, 098.16) (154.12, 104.97) (149.12, 104.97) /T1_0 h <|special_separator|> +(154.31, 098.16) (160.34, 098.16) (160.34, 104.97) (154.31, 104.97) /T1_0 O <|special_separator|> +(160.55, 098.16) (164.34, 098.16) (164.34, 104.97) (160.55, 104.97) /T1_0 R <|special_separator|> +(164.43, 098.16) (166.11, 098.16) (166.11, 104.97) (164.43, 104.97) /T1_0 I <|special_separator|> +(166.22, 098.16) (170.33, 098.16) (170.33, 104.97) (166.22, 104.97) /T1_0 z <|special_separator|> +(170.40, 098.16) (174.14, 098.16) (174.14, 104.97) (170.40, 104.97) /T1_0 E <|special_separator|> +(174.19, 098.16) (178.94, 098.16) (178.94, 104.97) (174.19, 104.97) /T1_0 D <|special_separator|> +(178.97, 098.16) (181.13, 098.16) (181.13, 104.97) (178.97, 104.97) /T1_0 <|special_separator|> +(181.16, 098.16) (184.68, 098.16) (184.68, 104.97) (181.16, 104.97) /T1_0 P <|special_separator|> +(184.76, 098.16) (188.50, 098.16) (188.50, 104.97) (184.76, 104.97) /T1_0 E <|special_separator|> +(188.55, 098.16) (192.34, 098.16) (192.34, 104.97) (188.55, 104.97) /T1_0 R <|special_separator|> +(192.34, 098.16) (196.25, 098.16) (196.25, 104.97) (192.34, 104.97) /T1_0 S <|special_separator|> +(196.35, 098.16) (202.39, 098.16) (202.39, 104.97) (196.35, 104.97) /T1_0 O <|special_separator|> +(202.58, 098.16) (208.41, 098.16) (208.41, 104.97) (202.58, 104.97) /T1_0 N <|special_separator|> +(395.50, 096.93) (400.40, 096.93) (400.40, 103.75) (395.50, 103.75) /T1_0 A <|special_separator|> +(400.51, 096.93) (404.55, 096.93) (404.55, 103.75) (400.51, 103.75) /T1_0 d <|special_separator|> +(404.70, 096.93) (408.74, 096.93) (408.74, 103.75) (404.70, 103.75) /T1_0 d <|special_separator|> +(408.80, 096.93) (410.63, 096.93) (410.63, 103.75) (408.80, 103.75) /T1_0 i <|special_separator|> +(410.70, 096.93) (412.38, 096.93) (412.38, 103.75) (410.70, 103.75) /T1_0 t <|special_separator|> +(412.49, 096.93) (414.33, 096.93) (414.33, 103.75) (412.49, 103.75) /T1_0 i <|special_separator|> +(414.40, 096.93) (418.33, 096.93) (418.33, 103.75) (414.40, 103.75) /T1_0 o <|special_separator|> +(418.46, 096.93) (422.16, 096.93) (422.16, 103.75) (418.46, 103.75) /T1_0 n <|special_separator|> +(422.29, 096.93) (426.33, 096.93) (426.33, 103.75) (422.29, 103.75) /T1_0 a <|special_separator|> +(426.44, 096.93) (428.03, 096.93) (428.03, 103.75) (426.44, 103.75) /T1_0 l <|special_separator|> +(428.07, 096.93) (430.22, 096.93) (430.22, 103.75) (428.07, 103.75) /T1_0 <|special_separator|> +(430.26, 096.93) (433.60, 096.93) (433.60, 103.75) (430.26, 103.75) /T1_0 F <|special_separator|> +(433.60, 096.93) (437.23, 096.93) (437.23, 103.75) (433.60, 103.75) /T1_0 e <|special_separator|> +(437.42, 096.93) (441.05, 096.93) (441.05, 103.75) (437.42, 103.75) /T1_0 e <|special_separator|> +(441.21, 096.93) (444.00, 096.93) (444.00, 103.75) (441.21, 103.75) /T1_0 s <|special_separator|> +(398.38, 080.93) (403.13, 080.93) (403.13, 087.75) (398.38, 087.75) /T1_0 D <|special_separator|> +(403.29, 080.93) (406.88, 080.93) (406.88, 087.75) (403.29, 087.75) /T1_0 u <|special_separator|> +(407.00, 080.93) (408.68, 080.93) (408.68, 087.75) (407.00, 087.75) /T1_0 t <|special_separator|> +(408.80, 080.93) (410.63, 080.93) (410.63, 087.75) (408.80, 087.75) /T1_0 i <|special_separator|> +(410.71, 080.93) (414.35, 080.93) (414.35, 087.75) (410.71, 087.75) /T1_0 e <|special_separator|> +(414.50, 080.93) (417.29, 080.93) (417.29, 087.75) (414.50, 087.75) /T1_0 s <|special_separator|> +(417.33, 080.93) (419.48, 080.93) (419.48, 087.75) (417.33, 087.75) /T1_0 <|special_separator|> +(419.52, 080.93) (424.38, 080.93) (424.38, 087.75) (419.52, 087.75) /T1_0 & <|special_separator|> +(424.42, 080.93) (426.58, 080.93) (426.58, 087.75) (424.42, 087.75) /T1_0 <|special_separator|> +(426.61, 080.93) (429.90, 080.93) (429.90, 087.75) (426.61, 087.75) /T1_0 T <|special_separator|> +(429.68, 080.93) (433.72, 080.93) (433.72, 087.75) (429.68, 087.75) /T1_0 a <|special_separator|> +(433.88, 080.93) (437.36, 080.93) (437.36, 087.75) (433.88, 087.75) /T1_0 x <|special_separator|> +(437.42, 080.93) (441.05, 080.93) (441.05, 087.75) (437.42, 087.75) /T1_0 e <|special_separator|> +(441.21, 080.93) (444.00, 080.93) (444.00, 087.75) (441.21, 087.75) /T1_0 s <|special_separator|> +(050.01, 066.16) (053.53, 066.16) (053.53, 072.97) (050.01, 072.97) /T1_0 P <|special_separator|> +(053.61, 066.16) (057.40, 066.16) (057.40, 072.97) (053.61, 072.97) /T1_0 R <|special_separator|> +(057.49, 066.16) (059.17, 066.16) (059.17, 072.97) (057.49, 072.97) /T1_0 I <|special_separator|> +(059.34, 066.16) (065.18, 066.16) (065.18, 072.97) (059.34, 072.97) /T1_0 N <|special_separator|> +(065.31, 066.16) (068.60, 066.16) (068.60, 072.97) (065.31, 072.97) /T1_0 T <|special_separator|> +(068.64, 066.16) (070.79, 066.16) (070.79, 072.97) (068.64, 072.97) /T1_0 <|special_separator|> +(070.83, 066.16) (076.67, 066.16) (076.67, 072.97) (070.83, 072.97) /T1_0 N <|special_separator|> +(076.81, 066.16) (081.71, 066.16) (081.71, 072.97) (076.81, 072.97) /T1_0 A <|special_separator|> +(082.04, 066.16) (088.31, 066.16) (088.31, 072.97) (082.04, 072.97) /T1_0 M <|special_separator|> +(088.52, 066.16) (092.26, 066.16) (092.26, 072.97) (088.52, 072.97) /T1_0 E <|special_separator|> +(092.30, 066.16) (094.45, 066.16) (094.45, 072.97) (092.30, 072.97) /T1_0 <|special_separator|> +(249.01, 066.16) (253.75, 066.16) (253.75, 072.97) (249.01, 072.97) /T1_0 D <|special_separator|> +(253.65, 066.16) (258.54, 066.16) (258.54, 072.97) (253.65, 072.97) /T1_0 A <|special_separator|> +(258.32, 066.16) (261.61, 066.16) (261.61, 072.97) (258.32, 072.97) /T1_0 T <|special_separator|> +(261.76, 066.16) (265.50, 066.16) (265.50, 072.97) (261.76, 072.97) /T1_0 E <|special_separator|> +(361.26, 065.13) (364.99, 065.13) (364.99, 071.75) (361.26, 071.75) /T1_1 t <|special_separator|> +(365.05, 065.13) (371.26, 065.13) (371.26, 071.75) (365.05, 071.75) /T1_1 o <|special_separator|> +(371.33, 065.13) (375.06, 065.13) (375.06, 071.75) (371.33, 071.75) /T1_1 t <|special_separator|> +(374.86, 065.13) (380.33, 065.13) (380.33, 071.75) (374.86, 071.75) /T1_1 a <|special_separator|> +(380.47, 065.13) (383.93, 065.13) (383.93, 071.75) (380.47, 071.75) /T1_1 l <|special_separator|> +(383.97, 065.13) (386.37, 065.13) (386.37, 071.75) (383.97, 071.75) /T1_1 <|special_separator|> +(386.40, 065.13) (388.67, 065.13) (388.67, 071.75) (386.40, 071.75) /T1_1 i <|special_separator|> +(388.84, 065.13) (395.01, 065.13) (395.01, 071.75) (388.84, 071.75) /T1_1 n <|special_separator|> +(395.16, 065.13) (400.49, 065.13) (400.49, 071.75) (395.16, 071.75) /T1_1 v <|special_separator|> +(400.42, 065.13) (406.63, 065.13) (406.63, 071.75) (400.42, 071.75) /T1_1 o <|special_separator|> +(406.81, 065.13) (409.08, 065.13) (409.08, 071.75) (406.81, 071.75) /T1_1 i <|special_separator|> +(409.25, 065.13) (413.87, 065.13) (413.87, 071.75) (409.25, 071.75) /T1_1 c <|special_separator|> +(414.05, 065.13) (417.90, 065.13) (417.90, 071.75) (414.05, 071.75) /T1_1 e <|special_separator|> +(417.93, 065.13) (420.33, 065.13) (420.33, 071.75) (417.93, 071.75) /T1_1 <|special_separator|> +(420.37, 065.13) (425.69, 065.13) (425.69, 071.75) (420.37, 071.75) /T1_1 v <|special_separator|> +(425.37, 065.13) (430.84, 065.13) (430.84, 071.75) (425.37, 071.75) /T1_1 a <|special_separator|> +(430.98, 065.13) (434.44, 065.13) (434.44, 071.75) (430.98, 071.75) /T1_1 l <|special_separator|> +(434.53, 065.13) (439.98, 065.13) (439.98, 071.75) (434.53, 071.75) /T1_1 u <|special_separator|> +(440.16, 065.13) (444.01, 065.13) (444.01, 071.75) (440.16, 071.75) /T1_1 e <|special_separator|> +(048.76, 046.04) (051.83, 046.04) (051.83, 052.89) (048.76, 052.89) /T1_2 " <|special_separator|> +(051.94, 046.04) (053.57, 046.04) (053.57, 052.89) (051.94, 052.89) /T1_2 I <|special_separator|> +(053.78, 046.04) (057.44, 046.04) (057.44, 052.89) (053.78, 052.89) /T1_2 n <|special_separator|> +(057.65, 046.04) (060.74, 046.04) (060.74, 052.89) (057.65, 052.89) /T1_2 c <|special_separator|> +(061.00, 046.04) (064.78, 046.04) (064.78, 052.89) (061.00, 052.89) /T1_2 o <|special_separator|> +(065.00, 046.04) (066.68, 046.04) (066.68, 052.89) (065.00, 052.89) /T1_2 t <|special_separator|> +(066.92, 046.04) (070.34, 046.04) (070.34, 052.89) (066.92, 052.89) /T1_2 e <|special_separator|> +(070.60, 046.04) (073.05, 046.04) (073.05, 052.89) (070.60, 052.89) /T1_2 r <|special_separator|> +(073.17, 046.04) (078.54, 046.04) (078.54, 052.89) (073.17, 052.89) /T1_2 m <|special_separator|> +(078.70, 046.04) (081.38, 046.04) (081.38, 052.89) (078.70, 052.89) /T1_2 s <|special_separator|> +(081.14, 046.04) (084.21, 046.04) (084.21, 052.89) (081.14, 052.89) /T1_2 " <|special_separator|> +(084.39, 046.04) (086.41, 046.04) (086.41, 052.89) (084.39, 052.89) /T1_2 <|special_separator|> +(086.59, 046.04) (088.36, 046.04) (088.36, 052.89) (086.59, 052.89) /T1_2 i <|special_separator|> +(088.45, 046.04) (091.14, 046.04) (091.14, 052.89) (088.45, 052.89) /T1_2 s <|special_separator|> +(091.32, 046.04) (093.34, 046.04) (093.34, 052.89) (091.32, 052.89) /T1_2 <|special_separator|> +(093.52, 046.04) (097.41, 046.04) (097.41, 052.89) (093.52, 052.89) /T1_2 a <|special_separator|> +(097.58, 046.04) (099.61, 046.04) (099.61, 052.89) (097.58, 052.89) /T1_2 <|special_separator|> +(099.78, 046.04) (101.46, 046.04) (101.46, 052.89) (099.78, 052.89) /T1_2 t <|special_separator|> +(101.68, 046.04) (104.14, 046.04) (104.14, 052.89) (101.68, 052.89) /T1_2 r <|special_separator|> +(104.14, 046.04) (108.03, 046.04) (108.03, 052.89) (104.14, 052.89) /T1_2 a <|special_separator|> +(108.30, 046.04) (112.19, 046.04) (112.19, 052.89) (108.30, 052.89) /T1_2 d <|special_separator|> +(112.44, 046.04) (115.86, 046.04) (115.86, 052.89) (112.44, 052.89) /T1_2 e <|special_separator|> +(116.15, 046.04) (121.52, 046.04) (121.52, 052.89) (116.15, 052.89) /T1_2 m <|special_separator|> +(121.76, 046.04) (125.65, 046.04) (125.65, 052.89) (121.76, 052.89) /T1_2 a <|special_separator|> +(125.88, 046.04) (128.33, 046.04) (128.33, 052.89) (125.88, 052.89) /T1_2 r <|special_separator|> +(128.42, 046.04) (131.65, 046.04) (131.65, 052.89) (128.42, 052.89) /T1_2 k <|special_separator|> +(131.83, 046.04) (133.85, 046.04) (133.85, 052.89) (131.83, 052.89) /T1_2 <|special_separator|> +(134.02, 046.04) (137.80, 046.04) (137.80, 052.89) (134.02, 052.89) /T1_2 o <|special_separator|> +(138.01, 046.04) (139.94, 046.04) (139.94, 052.89) (138.01, 052.89) /T1_2 f <|special_separator|> +(140.11, 046.04) (142.14, 046.04) (142.14, 052.89) (140.11, 052.89) /T1_2 <|special_separator|> +(142.31, 046.04) (143.99, 046.04) (143.99, 052.89) (142.31, 052.89) /T1_2 t <|special_separator|> +(144.24, 046.04) (147.90, 046.04) (147.90, 052.89) (144.24, 052.89) /T1_2 h <|special_separator|> +(148.12, 046.04) (151.54, 046.04) (151.54, 052.89) (148.12, 052.89) /T1_2 e <|special_separator|> +(151.71, 046.04) (153.74, 046.04) (153.74, 052.89) (151.71, 052.89) /T1_2 <|special_separator|> +(153.91, 046.04) (155.54, 046.04) (155.54, 052.89) (153.91, 052.89) /T1_2 I <|special_separator|> +(155.75, 046.04) (159.41, 046.04) (159.41, 052.89) (155.75, 052.89) /T1_2 n <|special_separator|> +(159.60, 046.04) (161.28, 046.04) (161.28, 052.89) (159.60, 052.89) /T1_2 t <|special_separator|> +(161.51, 046.04) (164.93, 046.04) (164.93, 052.89) (161.51, 052.89) /T1_2 e <|special_separator|> +(165.19, 046.04) (167.65, 046.04) (167.65, 052.89) (165.19, 052.89) /T1_2 r <|special_separator|> +(167.75, 046.04) (171.41, 046.04) (171.41, 052.89) (167.75, 052.89) /T1_2 n <|special_separator|> +(171.64, 046.04) (175.53, 046.04) (175.53, 052.89) (171.64, 052.89) /T1_2 a <|special_separator|> +(175.76, 046.04) (177.44, 046.04) (177.44, 052.89) (175.76, 052.89) /T1_2 t <|special_separator|> +(177.62, 046.04) (179.40, 046.04) (179.40, 052.89) (177.62, 052.89) /T1_2 i <|special_separator|> +(179.56, 046.04) (183.34, 046.04) (183.34, 052.89) (179.56, 052.89) /T1_2 o <|special_separator|> +(183.59, 046.04) (187.25, 046.04) (187.25, 052.89) (183.59, 052.89) /T1_2 n <|special_separator|> +(187.48, 046.04) (191.37, 046.04) (191.37, 052.89) (187.48, 052.89) /T1_2 a <|special_separator|> +(191.59, 046.04) (193.15, 046.04) (193.15, 052.89) (191.59, 052.89) /T1_2 l <|special_separator|> +(193.32, 046.04) (195.34, 046.04) (195.34, 052.89) (193.32, 052.89) /T1_2 <|special_separator|> +(195.52, 046.04) (200.15, 046.04) (200.15, 052.89) (195.52, 052.89) /T1_2 C <|special_separator|> +(200.12, 046.04) (203.78, 046.04) (203.78, 052.89) (200.12, 052.89) /T1_2 h <|special_separator|> +(204.00, 046.04) (207.90, 046.04) (207.90, 052.89) (204.00, 052.89) /T1_2 a <|special_separator|> +(208.15, 046.04) (213.52, 046.04) (213.52, 052.89) (208.15, 052.89) /T1_2 m <|special_separator|> +(213.76, 046.04) (217.65, 046.04) (217.65, 052.89) (213.76, 052.89) /T1_2 b <|special_separator|> +(217.93, 046.04) (221.34, 046.04) (221.34, 052.89) (217.93, 052.89) /T1_2 e <|special_separator|> +(221.60, 046.04) (224.06, 046.04) (224.06, 052.89) (221.60, 052.89) /T1_2 r <|special_separator|> +(224.23, 046.04) (226.26, 046.04) (226.26, 052.89) (224.23, 052.89) /T1_2 <|special_separator|> +(226.43, 046.04) (230.21, 046.04) (230.21, 052.89) (226.43, 052.89) /T1_2 o <|special_separator|> +(230.42, 046.04) (232.35, 046.04) (232.35, 052.89) (230.42, 052.89) /T1_2 f <|special_separator|> +(232.52, 046.04) (234.54, 046.04) (234.54, 052.89) (232.52, 052.89) /T1_2 <|special_separator|> +(234.72, 046.04) (239.35, 046.04) (239.35, 052.89) (234.72, 052.89) /T1_2 C <|special_separator|> +(239.34, 046.04) (243.12, 046.04) (243.12, 052.89) (239.34, 052.89) /T1_2 o <|special_separator|> +(243.38, 046.04) (248.75, 046.04) (248.75, 052.89) (243.38, 052.89) /T1_2 m <|special_separator|> +(248.99, 046.04) (254.35, 046.04) (254.35, 052.89) (248.99, 052.89) /T1_2 m <|special_separator|> +(254.60, 046.04) (258.02, 046.04) (258.02, 052.89) (254.60, 052.89) /T1_2 e <|special_separator|> +(258.27, 046.04) (260.73, 046.04) (260.73, 052.89) (258.27, 052.89) /T1_2 r <|special_separator|> +(260.72, 046.04) (263.80, 046.04) (263.80, 052.89) (260.72, 052.89) /T1_2 c <|special_separator|> +(264.07, 046.04) (267.49, 046.04) (267.49, 052.89) (264.07, 052.89) /T1_2 e <|special_separator|> +(267.54, 046.04) (269.57, 046.04) (269.57, 052.89) (267.54, 052.89) /T1_2 . <|special_separator|> +(269.78, 046.02) (272.10, 046.02) (272.10, 053.68) (269.78, 053.68) /T1_4 <|special_separator|> +(050.00, 731.61) (065.84, 731.61) (065.84, 754.30) (050.00, 754.30) /T1_1 c <|special_separator|> +(066.70, 731.61) (087.99, 731.61) (087.99, 754.30) (066.70, 754.30) /T1_1 o <|special_separator|> +(088.83, 731.61) (112.42, 731.61) (112.42, 754.30) (088.83, 754.30) /T1_1 m <|special_separator|> +(113.72, 731.61) (137.31, 731.61) (137.31, 754.30) (113.72, 754.30) /T1_1 m <|special_separator|> +(138.49, 731.61) (151.69, 731.61) (151.69, 754.30) (138.49, 754.30) /T1_1 e <|special_separator|> +(152.79, 731.61) (169.11, 731.61) (169.11, 754.30) (152.79, 754.30) /T1_1 r <|special_separator|> +(169.78, 731.61) (185.62, 731.61) (185.62, 754.30) (169.78, 754.30) /T1_1 c <|special_separator|> +(186.80, 731.61) (194.58, 731.61) (194.58, 754.30) (186.80, 754.30) /T1_1 i <|special_separator|> +(195.56, 731.61) (214.30, 731.61) (214.30, 754.30) (195.56, 754.30) /T1_1 a <|special_separator|> +(215.31, 731.61) (227.19, 731.61) (227.19, 754.30) (215.31, 754.30) /T1_1 l <|special_separator|> +(228.39, 731.61) (236.62, 731.61) (236.62, 754.30) (228.39, 754.30) /T1_1 <|special_separator|> +(237.82, 731.61) (245.60, 731.61) (245.60, 754.30) (237.82, 754.30) /T1_1 i <|special_separator|> +(246.70, 731.61) (267.85, 731.61) (267.85, 754.30) (246.70, 754.30) /T1_1 n <|special_separator|> +(268.90, 731.61) (287.17, 731.61) (287.17, 754.30) (268.90, 754.30) /T1_1 v <|special_separator|> +(287.41, 731.61) (308.70, 731.61) (308.70, 754.30) (287.41, 754.30) /T1_1 o <|special_separator|> +(309.87, 731.61) (317.65, 731.61) (317.65, 754.30) (309.87, 754.30) /T1_1 i <|special_separator|> +(318.75, 731.61) (334.59, 731.61) (334.59, 754.30) (318.75, 754.30) /T1_1 c <|special_separator|> +(335.74, 731.61) (348.94, 731.61) (348.94, 754.30) (335.74, 754.30) /T1_1 e <|special_separator|> +(050.89, 196.90) (054.55, 196.90) (054.55, 202.53) (050.89, 202.53) /C2_2 T <|special_separator|> +(054.55, 196.90) (057.89, 196.90) (057.89, 202.53) (054.55, 202.53) /C2_2 h <|special_separator|> +(057.89, 196.90) (061.22, 196.90) (061.22, 202.53) (057.89, 202.53) /C2_2 e <|special_separator|> +(061.22, 196.90) (064.22, 196.90) (064.22, 202.53) (061.22, 202.53) /C2_2 s <|special_separator|> +(064.22, 196.90) (067.56, 196.90) (067.56, 202.53) (064.22, 202.53) /C2_2 e <|special_separator|> +(067.56, 196.90) (069.23, 196.90) (069.23, 202.53) (067.56, 202.53) /C2_2 <|special_separator|> +(069.23, 196.90) (070.56, 196.90) (070.56, 202.53) (069.23, 202.53) /C2_2 i <|special_separator|> +(070.56, 196.90) (072.23, 196.90) (072.23, 202.53) (070.56, 202.53) /C2_2 t <|special_separator|> +(072.23, 196.90) (075.56, 196.90) (075.56, 202.53) (072.23, 202.53) /C2_2 e <|special_separator|> +(075.56, 196.90) (080.56, 196.90) (080.56, 202.53) (075.56, 202.53) /C2_2 m <|special_separator|> +(080.56, 196.90) (083.56, 196.90) (083.56, 202.53) (080.56, 202.53) /C2_2 s <|special_separator|> +(083.56, 196.90) (085.23, 196.90) (085.23, 202.53) (083.56, 202.53) /C2_2 <|special_separator|> +(085.23, 196.90) (088.57, 196.90) (088.57, 202.53) (085.23, 202.53) /C2_2 a <|special_separator|> +(088.57, 196.90) (090.57, 196.90) (090.57, 202.53) (088.57, 202.53) /C2_2 r <|special_separator|> +(090.57, 196.90) (093.90, 196.90) (093.90, 202.53) (090.57, 202.53) /C2_2 e <|special_separator|> +(093.90, 196.90) (095.57, 196.90) (095.57, 202.53) (093.90, 202.53) /C2_2 <|special_separator|> +(095.57, 196.90) (098.57, 196.90) (098.57, 202.53) (095.57, 202.53) /C2_2 c <|special_separator|> +(098.57, 196.90) (101.91, 196.90) (101.91, 202.53) (098.57, 202.53) /C2_2 o <|special_separator|> +(101.91, 196.90) (105.24, 196.90) (105.24, 202.53) (101.91, 202.53) /C2_2 n <|special_separator|> +(105.24, 196.90) (106.91, 196.90) (106.91, 202.53) (105.24, 202.53) /C2_2 t <|special_separator|> +(106.91, 196.90) (108.91, 196.90) (108.91, 202.53) (106.91, 202.53) /C2_2 r <|special_separator|> +(108.91, 196.90) (112.24, 196.90) (112.24, 202.53) (108.91, 202.53) /C2_2 o <|special_separator|> +(112.24, 196.90) (113.58, 196.90) (113.58, 202.53) (112.24, 202.53) /C2_2 l <|special_separator|> +(113.58, 196.90) (114.91, 196.90) (114.91, 202.53) (113.58, 202.53) /C2_2 l <|special_separator|> +(114.91, 196.90) (118.24, 196.90) (118.24, 202.53) (114.91, 202.53) /C2_2 e <|special_separator|> +(118.24, 196.90) (121.58, 196.90) (121.58, 202.53) (118.24, 202.53) /C2_2 d <|special_separator|> +(121.58, 196.90) (123.25, 196.90) (123.25, 202.53) (121.58, 202.53) /C2_2 <|special_separator|> +(123.25, 196.90) (126.58, 196.90) (126.58, 202.53) (123.25, 202.53) /C2_2 b <|special_separator|> +(126.58, 196.90) (129.58, 196.90) (129.58, 202.53) (126.58, 202.53) /C2_2 y <|special_separator|> +(129.58, 196.90) (131.25, 196.90) (131.25, 202.53) (129.58, 202.53) /C2_2 <|special_separator|> +(131.25, 196.90) (132.92, 196.90) (132.92, 202.53) (131.25, 202.53) /C2_2 t <|special_separator|> +(132.92, 196.90) (136.26, 196.90) (136.26, 202.53) (132.92, 202.53) /C2_2 h <|special_separator|> +(136.26, 196.90) (139.59, 196.90) (139.59, 202.53) (136.26, 202.53) /C2_2 e <|special_separator|> +(139.59, 196.90) (141.26, 196.90) (141.26, 202.53) (139.59, 202.53) /C2_2 <|special_separator|> +(141.26, 196.90) (145.59, 196.90) (145.59, 202.53) (141.26, 202.53) /C2_2 U <|special_separator|> +(145.61, 196.90) (147.27, 196.90) (147.27, 202.53) (145.61, 202.53) /C2_3 . <|special_separator|> +(147.27, 196.90) (151.28, 196.90) (151.28, 202.53) (147.27, 202.53) /C2_2 S <|special_separator|> +(151.28, 196.90) (152.94, 196.90) (152.94, 202.53) (151.28, 202.53) /C2_3 . <|special_separator|> +(152.94, 196.90) (154.61, 196.90) (154.61, 202.53) (152.94, 202.53) /C2_2 <|special_separator|> +(154.61, 196.90) (157.95, 196.90) (157.95, 202.53) (154.61, 202.53) /C2_2 g <|special_separator|> +(157.95, 196.90) (161.28, 196.90) (161.28, 202.53) (157.95, 202.53) /C2_2 o <|special_separator|> +(161.28, 196.90) (164.28, 196.90) (164.28, 202.53) (161.28, 202.53) /C2_2 v <|special_separator|> +(164.28, 196.90) (167.62, 196.90) (167.62, 202.53) (164.28, 202.53) /C2_2 e <|special_separator|> +(167.62, 196.90) (169.62, 196.90) (169.62, 202.53) (167.62, 202.53) /C2_2 r <|special_separator|> +(169.62, 196.90) (172.95, 196.90) (172.95, 202.53) (169.62, 202.53) /C2_2 n <|special_separator|> +(172.95, 196.90) (177.95, 196.90) (177.95, 202.53) (172.95, 202.53) /C2_2 m <|special_separator|> +(177.95, 196.90) (181.29, 196.90) (181.29, 202.53) (177.95, 202.53) /C2_2 e <|special_separator|> +(181.29, 196.90) (184.62, 196.90) (184.62, 202.53) (181.29, 202.53) /C2_2 n <|special_separator|> +(184.62, 196.90) (186.29, 196.90) (186.29, 202.53) (184.62, 202.53) /C2_2 t <|special_separator|> +(186.29, 196.90) (187.96, 196.90) (187.96, 202.53) (186.29, 202.53) /C2_2 <|special_separator|> +(187.96, 196.90) (191.30, 196.90) (191.30, 202.53) (187.96, 202.53) /C2_2 a <|special_separator|> +(191.30, 196.90) (194.63, 196.90) (194.63, 202.53) (191.30, 202.53) /C2_2 n <|special_separator|> +(194.63, 196.90) (197.97, 196.90) (197.97, 202.53) (194.63, 202.53) /C2_2 d <|special_separator|> +(197.97, 196.90) (199.64, 196.90) (199.64, 202.53) (197.97, 202.53) /C2_2 <|special_separator|> +(199.64, 196.90) (202.97, 196.90) (202.97, 202.53) (199.64, 202.53) /C2_2 a <|special_separator|> +(202.97, 196.90) (206.31, 196.90) (206.31, 202.53) (202.97, 202.53) /C2_2 u <|special_separator|> +(206.31, 196.90) (207.98, 196.90) (207.98, 202.53) (206.31, 202.53) /C2_2 t <|special_separator|> +(207.98, 196.90) (211.31, 196.90) (211.31, 202.53) (207.98, 202.53) /C2_2 h <|special_separator|> +(211.31, 196.90) (214.65, 196.90) (214.65, 202.53) (211.31, 202.53) /C2_2 o <|special_separator|> +(214.65, 196.90) (216.65, 196.90) (216.65, 202.53) (214.65, 202.53) /C2_2 r <|special_separator|> +(216.65, 196.90) (217.98, 196.90) (217.98, 202.53) (216.65, 202.53) /C2_2 i <|special_separator|> +(217.98, 196.90) (220.98, 196.90) (220.98, 202.53) (217.98, 202.53) /C2_2 z <|special_separator|> +(220.98, 196.90) (224.31, 196.90) (224.31, 202.53) (220.98, 202.53) /C2_2 e <|special_separator|> +(224.31, 196.90) (227.65, 196.90) (227.65, 202.53) (224.31, 202.53) /C2_2 d <|special_separator|> +(227.65, 196.90) (229.32, 196.90) (229.32, 202.53) (227.65, 202.53) /C2_2 <|special_separator|> +(229.32, 196.90) (230.99, 196.90) (230.99, 202.53) (229.32, 202.53) /C2_2 f <|special_separator|> +(230.99, 196.90) (234.32, 196.90) (234.32, 202.53) (230.99, 202.53) /C2_2 o <|special_separator|> +(234.32, 196.90) (236.32, 196.90) (236.32, 202.53) (234.32, 202.53) /C2_2 r <|special_separator|> +(236.32, 196.90) (237.99, 196.90) (237.99, 202.53) (236.32, 202.53) /C2_2 <|special_separator|> +(237.99, 196.90) (241.32, 196.90) (241.32, 202.53) (237.99, 202.53) /C2_2 e <|special_separator|> +(241.32, 196.90) (244.32, 196.90) (244.32, 202.53) (241.32, 202.53) /C2_2 x <|special_separator|> +(244.32, 196.90) (247.66, 196.90) (247.66, 202.53) (244.32, 202.53) /C2_2 p <|special_separator|> +(247.66, 196.90) (251.00, 196.90) (251.00, 202.53) (247.66, 202.53) /C2_2 o <|special_separator|> +(251.00, 196.90) (252.99, 196.90) (252.99, 202.53) (251.00, 202.53) /C2_2 r <|special_separator|> +(252.99, 196.90) (254.66, 196.90) (254.66, 202.53) (252.99, 202.53) /C2_2 t <|special_separator|> +(254.67, 196.90) (256.34, 196.90) (256.34, 202.53) (254.67, 202.53) /C2_3 <|special_separator|> +(256.34, 196.90) (259.68, 196.90) (259.68, 202.53) (256.34, 202.53) /C2_2 o <|special_separator|> +(259.68, 196.90) (263.01, 196.90) (263.01, 202.53) (259.68, 202.53) /C2_2 n <|special_separator|> +(263.01, 196.90) (264.35, 196.90) (264.35, 202.53) (263.01, 202.53) /C2_2 l <|special_separator|> +(264.35, 196.90) (267.35, 196.90) (267.35, 202.53) (264.35, 202.53) /C2_2 y <|special_separator|> +(267.35, 196.90) (269.01, 196.90) (269.01, 202.53) (267.35, 202.53) /C2_2 <|special_separator|> +(269.01, 196.90) (270.68, 196.90) (270.68, 202.53) (269.01, 202.53) /C2_2 t <|special_separator|> +(270.68, 196.90) (274.02, 196.90) (274.02, 202.53) (270.68, 202.53) /C2_2 o <|special_separator|> +(274.02, 196.90) (275.69, 196.90) (275.69, 202.53) (274.02, 202.53) /C2_2 <|special_separator|> +(275.69, 196.90) (277.35, 196.90) (277.35, 202.53) (275.69, 202.53) /C2_2 t <|special_separator|> +(277.35, 196.90) (280.69, 196.90) (280.69, 202.53) (277.35, 202.53) /C2_2 h <|special_separator|> +(280.69, 196.90) (284.03, 196.90) (284.03, 202.53) (280.69, 202.53) /C2_2 e <|special_separator|> +(284.03, 196.90) (285.69, 196.90) (285.69, 202.53) (284.03, 202.53) /C2_2 <|special_separator|> +(050.89, 189.70) (053.89, 189.70) (053.89, 195.33) (050.89, 195.33) /C2_2 c <|special_separator|> +(053.89, 189.70) (057.22, 189.70) (057.22, 195.33) (053.89, 195.33) /C2_2 o <|special_separator|> +(057.22, 189.70) (060.56, 189.70) (060.56, 195.33) (057.22, 195.33) /C2_2 u <|special_separator|> +(060.56, 189.70) (063.89, 189.70) (063.89, 195.33) (060.56, 195.33) /C2_2 n <|special_separator|> +(063.89, 189.70) (065.56, 189.70) (065.56, 195.33) (063.89, 195.33) /C2_2 t <|special_separator|> +(065.56, 189.70) (067.56, 189.70) (067.56, 195.33) (065.56, 195.33) /C2_2 r <|special_separator|> +(067.56, 189.70) (070.56, 189.70) (070.56, 195.33) (067.56, 195.33) /C2_2 y <|special_separator|> +(070.56, 189.70) (072.23, 189.70) (072.23, 195.33) (070.56, 195.33) /C2_2 <|special_separator|> +(072.23, 189.70) (075.56, 189.70) (075.56, 195.33) (072.23, 195.33) /C2_2 o <|special_separator|> +(075.56, 189.70) (077.23, 189.70) (077.23, 195.33) (075.56, 195.33) /C2_2 f <|special_separator|> +(077.23, 189.70) (078.90, 189.70) (078.90, 195.33) (077.23, 195.33) /C2_2 <|special_separator|> +(078.90, 189.70) (082.24, 189.70) (082.24, 195.33) (078.90, 195.33) /C2_2 u <|special_separator|> +(082.24, 189.70) (083.57, 189.70) (083.57, 195.33) (082.24, 195.33) /C2_2 l <|special_separator|> +(083.57, 189.70) (085.24, 189.70) (085.24, 195.33) (083.57, 195.33) /C2_2 t <|special_separator|> +(085.24, 189.70) (086.57, 189.70) (086.57, 195.33) (085.24, 195.33) /C2_2 i <|special_separator|> +(086.57, 189.70) (091.57, 189.70) (091.57, 195.33) (086.57, 195.33) /C2_2 m <|special_separator|> +(091.57, 189.70) (094.90, 189.70) (094.90, 195.33) (091.57, 195.33) /C2_2 a <|special_separator|> +(094.90, 189.70) (096.57, 189.70) (096.57, 195.33) (094.90, 195.33) /C2_2 t <|special_separator|> +(096.57, 189.70) (099.91, 189.70) (099.91, 195.33) (096.57, 195.33) /C2_2 e <|special_separator|> +(099.91, 189.70) (101.58, 189.70) (101.58, 195.33) (099.91, 195.33) /C2_2 <|special_separator|> +(101.58, 189.70) (104.91, 189.70) (104.91, 195.33) (101.58, 195.33) /C2_2 d <|special_separator|> +(104.91, 189.70) (108.25, 189.70) (108.25, 195.33) (104.91, 195.33) /C2_2 e <|special_separator|> +(108.25, 189.70) (111.25, 189.70) (111.25, 195.33) (108.25, 195.33) /C2_2 s <|special_separator|> +(111.25, 189.70) (112.92, 189.70) (112.92, 195.33) (111.25, 195.33) /C2_2 t <|special_separator|> +(112.92, 189.70) (114.25, 189.70) (114.25, 195.33) (112.92, 195.33) /C2_2 i <|special_separator|> +(114.25, 189.70) (117.58, 189.70) (117.58, 195.33) (114.25, 195.33) /C2_2 n <|special_separator|> +(117.58, 189.70) (120.92, 189.70) (120.92, 195.33) (117.58, 195.33) /C2_2 a <|special_separator|> +(120.92, 189.70) (122.59, 189.70) (122.59, 195.33) (120.92, 195.33) /C2_2 t <|special_separator|> +(122.59, 189.70) (123.92, 189.70) (123.92, 195.33) (122.59, 195.33) /C2_2 i <|special_separator|> +(123.92, 189.70) (127.25, 189.70) (127.25, 195.33) (123.92, 195.33) /C2_2 o <|special_separator|> +(127.25, 189.70) (130.59, 189.70) (130.59, 195.33) (127.25, 195.33) /C2_2 n <|special_separator|> +(130.59, 189.70) (132.26, 189.70) (132.26, 195.33) (130.59, 195.33) /C2_2 <|special_separator|> +(132.26, 189.70) (133.93, 189.70) (133.93, 195.33) (132.26, 195.33) /C2_2 f <|special_separator|> +(133.93, 189.70) (137.26, 189.70) (137.26, 195.33) (133.93, 195.33) /C2_2 o <|special_separator|> +(137.26, 189.70) (139.26, 189.70) (139.26, 195.33) (137.26, 195.33) /C2_2 r <|special_separator|> +(139.26, 189.70) (140.93, 189.70) (140.93, 195.33) (139.26, 195.33) /C2_2 <|special_separator|> +(140.93, 189.70) (144.27, 189.70) (144.27, 195.33) (140.93, 195.33) /C2_2 u <|special_separator|> +(144.27, 189.70) (147.27, 189.70) (147.27, 195.33) (144.27, 195.33) /C2_2 s <|special_separator|> +(147.27, 189.70) (150.60, 189.70) (150.60, 195.33) (147.27, 195.33) /C2_2 e <|special_separator|> +(150.60, 189.70) (152.27, 189.70) (152.27, 195.33) (150.60, 195.33) /C2_2 <|special_separator|> +(152.27, 189.70) (155.61, 189.70) (155.61, 195.33) (152.27, 195.33) /C2_2 b <|special_separator|> +(155.61, 189.70) (158.61, 189.70) (158.61, 195.33) (155.61, 195.33) /C2_2 y <|special_separator|> +(158.61, 189.70) (160.27, 189.70) (160.27, 195.33) (158.61, 195.33) /C2_2 <|special_separator|> +(160.27, 189.70) (161.94, 189.70) (161.94, 195.33) (160.27, 195.33) /C2_2 t <|special_separator|> +(161.94, 189.70) (165.28, 189.70) (165.28, 195.33) (161.94, 195.33) /C2_2 h <|special_separator|> +(165.28, 189.70) (168.61, 189.70) (168.61, 195.33) (165.28, 195.33) /C2_2 e <|special_separator|> +(168.61, 189.70) (170.28, 189.70) (170.28, 195.33) (168.61, 195.33) /C2_2 <|special_separator|> +(170.28, 189.70) (173.62, 189.70) (173.62, 195.33) (170.28, 195.33) /C2_2 u <|special_separator|> +(173.62, 189.70) (174.95, 189.70) (174.95, 195.33) (173.62, 195.33) /C2_2 l <|special_separator|> +(174.95, 189.70) (176.62, 189.70) (176.62, 195.33) (174.95, 195.33) /C2_2 t <|special_separator|> +(176.62, 189.70) (177.95, 189.70) (177.95, 195.33) (176.62, 195.33) /C2_2 i <|special_separator|> +(177.95, 189.70) (182.95, 189.70) (182.95, 195.33) (177.95, 195.33) /C2_2 m <|special_separator|> +(182.95, 189.70) (186.28, 189.70) (186.28, 195.33) (182.95, 195.33) /C2_2 a <|special_separator|> +(186.28, 189.70) (187.95, 189.70) (187.95, 195.33) (186.28, 195.33) /C2_2 t <|special_separator|> +(187.95, 189.70) (191.29, 189.70) (191.29, 195.33) (187.95, 195.33) /C2_2 e <|special_separator|> +(191.29, 189.70) (192.96, 189.70) (192.96, 195.33) (191.29, 195.33) /C2_2 <|special_separator|> +(192.96, 189.70) (195.96, 189.70) (195.96, 195.33) (192.96, 195.33) /C2_2 c <|special_separator|> +(195.96, 189.70) (199.29, 189.70) (199.29, 195.33) (195.96, 195.33) /C2_2 o <|special_separator|> +(199.29, 189.70) (202.63, 189.70) (202.63, 195.33) (199.29, 195.33) /C2_2 n <|special_separator|> +(202.63, 189.70) (205.63, 189.70) (205.63, 195.33) (202.63, 195.33) /C2_2 s <|special_separator|> +(205.63, 189.70) (206.96, 189.70) (206.96, 195.33) (205.63, 195.33) /C2_2 i <|special_separator|> +(206.96, 189.70) (210.30, 189.70) (210.30, 195.33) (206.96, 195.33) /C2_2 g <|special_separator|> +(210.30, 189.70) (213.63, 189.70) (213.63, 195.33) (210.30, 195.33) /C2_2 n <|special_separator|> +(213.63, 189.70) (216.97, 189.70) (216.97, 195.33) (213.63, 195.33) /C2_2 e <|special_separator|> +(216.97, 189.70) (220.30, 189.70) (220.30, 195.33) (216.97, 195.33) /C2_2 e <|special_separator|> +(220.32, 189.70) (221.98, 189.70) (221.98, 195.33) (220.32, 195.33) /C2_3 <|special_separator|> +(222.00, 189.70) (225.33, 189.70) (225.33, 195.33) (222.00, 195.33) /C2_2 o <|special_separator|> +(225.33, 189.70) (227.33, 189.70) (227.33, 195.33) (225.33, 195.33) /C2_2 r <|special_separator|> +(227.33, 189.70) (229.00, 189.70) (229.00, 195.33) (227.33, 195.33) /C2_2 <|special_separator|> +(229.00, 189.70) (232.34, 189.70) (232.34, 195.33) (229.00, 195.33) /C2_2 e <|special_separator|> +(232.34, 189.70) (235.67, 189.70) (235.67, 195.33) (232.34, 195.33) /C2_2 n <|special_separator|> +(235.67, 189.70) (239.01, 189.70) (239.01, 195.33) (235.67, 195.33) /C2_2 d <|special_separator|> +(239.01, 189.70) (241.01, 189.70) (241.01, 195.33) (239.01, 195.33) /C2_2 - <|special_separator|> +(241.01, 189.70) (244.34, 189.70) (244.34, 195.33) (241.01, 195.33) /C2_2 u <|special_separator|> +(244.34, 189.70) (247.34, 189.70) (247.34, 195.33) (244.34, 195.33) /C2_2 s <|special_separator|> +(247.34, 189.70) (250.68, 189.70) (250.68, 195.33) (247.34, 195.33) /C2_2 e <|special_separator|> +(250.68, 189.70) (252.68, 189.70) (252.68, 195.33) (250.68, 195.33) /C2_2 r <|special_separator|> +(252.68, 189.70) (254.67, 189.70) (254.67, 195.33) (252.68, 195.33) /C2_2 ( <|special_separator|> +(254.67, 189.70) (257.67, 189.70) (257.67, 195.33) (254.67, 195.33) /C2_2 s <|special_separator|> +(257.67, 189.70) (259.67, 189.70) (259.67, 195.33) (257.67, 195.33) /C2_2 ) <|special_separator|> +(259.67, 189.70) (261.34, 189.70) (261.34, 195.33) (259.67, 195.33) /C2_2 <|special_separator|> +(261.34, 189.70) (264.68, 189.70) (264.68, 195.33) (261.34, 195.33) /C2_3 h <|special_separator|> +(264.68, 189.70) (268.01, 189.70) (268.01, 195.33) (264.68, 195.33) /C2_3 e <|special_separator|> +(268.01, 189.70) (270.01, 189.70) (270.01, 195.33) (268.01, 195.33) /C2_3 r <|special_separator|> +(270.01, 189.70) (273.35, 189.70) (273.35, 195.33) (270.01, 195.33) /C2_3 e <|special_separator|> +(273.35, 189.70) (274.68, 189.70) (274.68, 195.33) (273.35, 195.33) /C2_3 i <|special_separator|> +(274.68, 189.70) (278.01, 189.70) (278.01, 195.33) (274.68, 195.33) /C2_3 n <|special_separator|> +(278.01, 189.70) (279.68, 189.70) (279.68, 195.33) (278.01, 195.33) /C2_3 <|special_separator|> +(050.89, 182.50) (052.22, 182.50) (052.22, 188.13) (050.89, 188.13) /C2_3 i <|special_separator|> +(052.22, 182.50) (055.56, 182.50) (055.56, 188.13) (052.22, 188.13) /C2_3 d <|special_separator|> +(055.56, 182.50) (058.89, 182.50) (058.89, 188.13) (055.56, 188.13) /C2_3 e <|special_separator|> +(058.89, 182.50) (062.23, 182.50) (062.23, 188.13) (058.89, 188.13) /C2_3 n <|special_separator|> +(062.23, 182.50) (063.90, 182.50) (063.90, 188.13) (062.23, 188.13) /C2_3 t <|special_separator|> +(063.90, 182.50) (065.23, 182.50) (065.23, 188.13) (063.90, 188.13) /C2_3 i <|special_separator|> +(065.23, 182.50) (066.90, 182.50) (066.90, 188.13) (065.23, 188.13) /C2_3 f <|special_separator|> +(066.90, 182.50) (068.23, 182.50) (068.23, 188.13) (066.90, 188.13) /C2_3 i <|special_separator|> +(068.23, 182.50) (071.56, 182.50) (071.56, 188.13) (068.23, 188.13) /C2_3 e <|special_separator|> +(071.56, 182.50) (074.90, 182.50) (074.90, 188.13) (071.56, 188.13) /C2_3 d <|special_separator|> +(074.90, 182.50) (076.57, 182.50) (076.57, 188.13) (074.90, 188.13) /C2_3 . <|special_separator|> +(076.57, 182.50) (078.24, 182.50) (078.24, 188.13) (076.57, 188.13) /C2_3 <|special_separator|> +(078.24, 182.50) (079.90, 182.50) (079.90, 188.13) (078.24, 188.13) /C2_3 <|special_separator|> +(079.90, 182.50) (083.57, 182.50) (083.57, 188.13) (079.90, 188.13) /C2_3 T <|special_separator|> +(083.57, 182.50) (086.91, 182.50) (086.91, 188.13) (083.57, 188.13) /C2_3 h <|special_separator|> +(086.91, 182.50) (090.24, 182.50) (090.24, 188.13) (086.91, 188.13) /C2_3 e <|special_separator|> +(090.24, 182.50) (093.24, 182.50) (093.24, 188.13) (090.24, 188.13) /C2_3 y <|special_separator|> +(093.24, 182.50) (094.91, 182.50) (094.91, 188.13) (093.24, 188.13) /C2_3 <|special_separator|> +(094.91, 182.50) (099.91, 182.50) (099.91, 188.13) (094.91, 188.13) /C2_3 m <|special_separator|> +(099.91, 182.50) (103.24, 182.50) (103.24, 188.13) (099.91, 188.13) /C2_3 a <|special_separator|> +(103.24, 182.50) (106.24, 182.50) (106.24, 188.13) (103.24, 188.13) /C2_3 y <|special_separator|> +(106.24, 182.50) (107.91, 182.50) (107.91, 188.13) (106.24, 188.13) /C2_3 <|special_separator|> +(107.91, 182.50) (111.25, 182.50) (111.25, 188.13) (107.91, 188.13) /C2_3 n <|special_separator|> +(111.25, 182.50) (114.58, 182.50) (114.58, 188.13) (111.25, 188.13) /C2_3 o <|special_separator|> +(114.58, 182.50) (116.25, 182.50) (116.25, 188.13) (114.58, 188.13) /C2_3 t <|special_separator|> +(116.25, 182.50) (117.92, 182.50) (117.92, 188.13) (116.25, 188.13) /C2_3 <|special_separator|> +(117.92, 182.50) (121.26, 182.50) (121.26, 188.13) (117.92, 188.13) /C2_3 b <|special_separator|> +(121.26, 182.50) (124.59, 182.50) (124.59, 188.13) (121.26, 188.13) /C2_3 e <|special_separator|> +(124.59, 182.50) (126.26, 182.50) (126.26, 188.13) (124.59, 188.13) /C2_3 <|special_separator|> +(126.26, 182.50) (128.26, 182.50) (128.26, 188.13) (126.26, 188.13) /C2_3 r <|special_separator|> +(128.26, 182.50) (131.59, 182.50) (131.59, 188.13) (128.26, 188.13) /C2_3 e <|special_separator|> +(131.59, 182.50) (134.59, 182.50) (134.59, 188.13) (131.59, 188.13) /C2_3 s <|special_separator|> +(134.59, 182.50) (137.93, 182.50) (137.93, 188.13) (134.59, 188.13) /C2_3 o <|special_separator|> +(137.93, 182.50) (139.26, 182.50) (139.26, 188.13) (137.93, 188.13) /C2_3 l <|special_separator|> +(139.26, 182.50) (142.60, 182.50) (142.60, 188.13) (139.26, 188.13) /C2_3 d <|special_separator|> +(142.60, 182.50) (144.27, 182.50) (144.27, 188.13) (142.60, 188.13) /C2_3 , <|special_separator|> +(144.27, 182.50) (145.93, 182.50) (145.93, 188.13) (144.27, 188.13) /C2_3 <|special_separator|> +(145.93, 182.50) (147.60, 182.50) (147.60, 188.13) (145.93, 188.13) /C2_3 t <|special_separator|> +(147.60, 182.50) (149.60, 182.50) (149.60, 188.13) (147.60, 188.13) /C2_3 r <|special_separator|> +(149.60, 182.50) (152.94, 182.50) (152.94, 188.13) (149.60, 188.13) /C2_3 a <|special_separator|> +(152.94, 182.50) (156.27, 182.50) (156.27, 188.13) (152.94, 188.13) /C2_3 n <|special_separator|> +(156.27, 182.50) (159.27, 182.50) (159.27, 188.13) (156.27, 188.13) /C2_3 s <|special_separator|> +(159.27, 182.50) (160.94, 182.50) (160.94, 188.13) (159.27, 188.13) /C2_3 f <|special_separator|> +(160.94, 182.50) (164.28, 182.50) (164.28, 188.13) (160.94, 188.13) /C2_3 e <|special_separator|> +(164.28, 182.50) (166.27, 182.50) (166.27, 188.13) (164.28, 188.13) /C2_3 r <|special_separator|> +(166.27, 182.50) (168.27, 182.50) (168.27, 188.13) (166.27, 188.13) /C2_3 r <|special_separator|> +(168.27, 182.50) (171.61, 182.50) (171.61, 188.13) (168.27, 188.13) /C2_3 e <|special_separator|> +(171.61, 182.50) (174.94, 182.50) (174.94, 188.13) (171.61, 188.13) /C2_3 d <|special_separator|> +(174.94, 182.50) (176.61, 182.50) (176.61, 188.13) (174.94, 188.13) /C2_3 , <|special_separator|> +(176.61, 182.50) (178.28, 182.50) (178.28, 188.13) (176.61, 188.13) /C2_3 <|special_separator|> +(178.28, 182.50) (181.62, 182.50) (181.62, 188.13) (178.28, 188.13) /C2_3 o <|special_separator|> +(181.62, 182.50) (183.61, 182.50) (183.61, 188.13) (181.62, 188.13) /C2_3 r <|special_separator|> +(183.61, 182.50) (185.28, 182.50) (185.28, 188.13) (183.61, 188.13) /C2_3 <|special_separator|> +(185.28, 182.50) (188.62, 182.50) (188.62, 188.13) (185.28, 188.13) /C2_3 o <|special_separator|> +(188.62, 182.50) (190.29, 182.50) (190.29, 188.13) (188.62, 188.13) /C2_3 t <|special_separator|> +(190.29, 182.50) (193.62, 182.50) (193.62, 188.13) (190.29, 188.13) /C2_3 h <|special_separator|> +(193.62, 182.50) (196.96, 182.50) (196.96, 188.13) (193.62, 188.13) /C2_3 e <|special_separator|> +(196.96, 182.50) (198.96, 182.50) (198.96, 188.13) (196.96, 188.13) /C2_3 r <|special_separator|> +(198.96, 182.50) (203.29, 182.50) (203.29, 188.13) (198.96, 188.13) /C2_3 w <|special_separator|> +(203.29, 182.50) (204.62, 182.50) (204.62, 188.13) (203.29, 188.13) /C2_3 i <|special_separator|> +(204.62, 182.50) (207.62, 182.50) (207.62, 188.13) (204.62, 188.13) /C2_3 s <|special_separator|> +(207.62, 182.50) (210.96, 182.50) (210.96, 188.13) (207.62, 188.13) /C2_3 e <|special_separator|> +(210.96, 182.50) (212.62, 182.50) (212.62, 188.13) (210.96, 188.13) /C2_3 <|special_separator|> +(212.62, 182.50) (215.96, 182.50) (215.96, 188.13) (212.62, 188.13) /C2_3 d <|special_separator|> +(215.96, 182.50) (217.29, 182.50) (217.29, 188.13) (215.96, 188.13) /C2_3 i <|special_separator|> +(217.29, 182.50) (220.29, 182.50) (220.29, 188.13) (217.29, 188.13) /C2_3 s <|special_separator|> +(220.29, 182.50) (223.63, 182.50) (223.63, 188.13) (220.29, 188.13) /C2_3 p <|special_separator|> +(223.63, 182.50) (226.96, 182.50) (226.96, 188.13) (223.63, 188.13) /C2_3 o <|special_separator|> +(226.96, 182.50) (229.96, 182.50) (229.96, 188.13) (226.96, 188.13) /C2_3 s <|special_separator|> +(229.96, 182.50) (233.30, 182.50) (233.30, 188.13) (229.96, 188.13) /C2_3 e <|special_separator|> +(233.30, 182.50) (236.64, 182.50) (236.64, 188.13) (233.30, 188.13) /C2_3 d <|special_separator|> +(236.64, 182.50) (238.30, 182.50) (238.30, 188.13) (236.64, 188.13) /C2_3 <|special_separator|> +(238.30, 182.50) (241.64, 182.50) (241.64, 188.13) (238.30, 188.13) /C2_3 o <|special_separator|> +(241.64, 182.50) (243.31, 182.50) (243.31, 188.13) (241.64, 188.13) /C2_3 f <|special_separator|> +(243.31, 182.50) (244.98, 182.50) (244.98, 188.13) (243.31, 188.13) /C2_3 , <|special_separator|> +(244.98, 182.50) (246.64, 182.50) (246.64, 188.13) (244.98, 188.13) /C2_3 <|special_separator|> +(246.64, 182.50) (248.31, 182.50) (248.31, 188.13) (246.64, 188.13) /C2_3 t <|special_separator|> +(248.31, 182.50) (251.65, 182.50) (251.65, 188.13) (248.31, 188.13) /C2_3 o <|special_separator|> +(251.65, 182.50) (253.32, 182.50) (253.32, 188.13) (251.65, 188.13) /C2_3 <|special_separator|> +(253.32, 182.50) (256.65, 182.50) (256.65, 188.13) (253.32, 188.13) /C2_3 a <|special_separator|> +(256.65, 182.50) (259.99, 182.50) (259.99, 188.13) (256.65, 188.13) /C2_3 n <|special_separator|> +(259.99, 182.50) (262.99, 182.50) (262.99, 188.13) (259.99, 188.13) /C2_3 y <|special_separator|> +(262.99, 182.50) (264.66, 182.50) (264.66, 188.13) (262.99, 188.13) /C2_3 <|special_separator|> +(264.66, 182.50) (267.99, 182.50) (267.99, 188.13) (264.66, 188.13) /C2_3 o <|special_separator|> +(267.99, 182.50) (269.66, 182.50) (269.66, 188.13) (267.99, 188.13) /C2_3 t <|special_separator|> +(269.66, 182.50) (273.00, 182.50) (273.00, 188.13) (269.66, 188.13) /C2_3 h <|special_separator|> +(273.00, 182.50) (276.33, 182.50) (276.33, 188.13) (273.00, 188.13) /C2_3 e <|special_separator|> +(276.33, 182.50) (278.33, 182.50) (278.33, 188.13) (276.33, 188.13) /C2_3 r <|special_separator|> +(278.33, 182.50) (280.00, 182.50) (280.00, 188.13) (278.33, 188.13) /C2_3 <|special_separator|> +(050.89, 175.30) (053.89, 175.30) (053.89, 180.93) (050.89, 180.93) /C2_3 c <|special_separator|> +(053.89, 175.30) (057.22, 175.30) (057.22, 180.93) (053.89, 180.93) /C2_3 o <|special_separator|> +(057.22, 175.30) (060.56, 175.30) (060.56, 180.93) (057.22, 180.93) /C2_3 u <|special_separator|> +(060.56, 175.30) (063.90, 175.30) (063.90, 180.93) (060.56, 180.93) /C2_3 n <|special_separator|> +(063.90, 175.30) (065.56, 175.30) (065.56, 180.93) (063.90, 180.93) /C2_3 t <|special_separator|> +(065.56, 175.30) (067.56, 175.30) (067.56, 180.93) (065.56, 180.93) /C2_3 r <|special_separator|> +(067.56, 175.30) (070.56, 175.30) (070.56, 180.93) (067.56, 180.93) /C2_3 y <|special_separator|> +(070.56, 175.30) (072.23, 175.30) (072.23, 180.93) (070.56, 180.93) /C2_3 <|special_separator|> +(072.23, 175.30) (075.57, 175.30) (075.57, 180.93) (072.23, 180.93) /C2_3 o <|special_separator|> +(075.57, 175.30) (077.56, 175.30) (077.56, 180.93) (075.57, 180.93) /C2_3 r <|special_separator|> +(077.56, 175.30) (079.23, 175.30) (079.23, 180.93) (077.56, 180.93) /C2_3 <|special_separator|> +(079.23, 175.30) (080.90, 175.30) (080.90, 180.93) (079.23, 180.93) /C2_3 t <|special_separator|> +(080.90, 175.30) (084.24, 175.30) (084.24, 180.93) (080.90, 180.93) /C2_3 o <|special_separator|> +(084.24, 175.30) (085.90, 175.30) (085.90, 180.93) (084.24, 180.93) /C2_3 <|special_separator|> +(085.90, 175.30) (089.24, 175.30) (089.24, 180.93) (085.90, 180.93) /C2_3 a <|special_separator|> +(089.24, 175.30) (092.58, 175.30) (092.58, 180.93) (089.24, 180.93) /C2_3 n <|special_separator|> +(092.58, 175.30) (095.58, 175.30) (095.58, 180.93) (092.58, 180.93) /C2_3 y <|special_separator|> +(095.58, 175.30) (097.24, 175.30) (097.24, 180.93) (095.58, 180.93) /C2_3 <|special_separator|> +(097.24, 175.30) (100.58, 175.30) (100.58, 180.93) (097.24, 180.93) /C2_3 p <|special_separator|> +(100.58, 175.30) (103.92, 175.30) (103.92, 180.93) (100.58, 180.93) /C2_3 e <|special_separator|> +(103.92, 175.30) (105.91, 175.30) (105.91, 180.93) (103.92, 180.93) /C2_3 r <|special_separator|> +(105.91, 175.30) (108.91, 175.30) (108.91, 180.93) (105.91, 180.93) /C2_3 s <|special_separator|> +(108.91, 175.30) (112.25, 175.30) (112.25, 180.93) (108.91, 180.93) /C2_3 o <|special_separator|> +(112.25, 175.30) (115.59, 175.30) (115.59, 180.93) (112.25, 180.93) /C2_3 n <|special_separator|> +(115.59, 175.30) (117.25, 175.30) (117.25, 180.93) (115.59, 180.93) /C2_3 <|special_separator|> +(117.25, 175.30) (120.59, 175.30) (120.59, 180.93) (117.25, 180.93) /C2_3 o <|special_separator|> +(120.59, 175.30) (122.26, 175.30) (122.26, 180.93) (120.59, 180.93) /C2_3 t <|special_separator|> +(122.26, 175.30) (125.59, 175.30) (125.59, 180.93) (122.26, 180.93) /C2_3 h <|special_separator|> +(125.59, 175.30) (128.93, 175.30) (128.93, 180.93) (125.59, 180.93) /C2_3 e <|special_separator|> +(128.93, 175.30) (130.93, 175.30) (130.93, 180.93) (128.93, 180.93) /C2_3 r <|special_separator|> +(130.93, 175.30) (132.60, 175.30) (132.60, 180.93) (130.93, 180.93) /C2_3 <|special_separator|> +(132.60, 175.30) (134.26, 175.30) (134.26, 180.93) (132.60, 180.93) /C2_3 t <|special_separator|> +(134.26, 175.30) (137.60, 175.30) (137.60, 180.93) (134.26, 180.93) /C2_3 h <|special_separator|> +(137.60, 175.30) (140.94, 175.30) (140.94, 180.93) (137.60, 180.93) /C2_3 a <|special_separator|> +(140.94, 175.30) (144.27, 175.30) (144.27, 180.93) (140.94, 180.93) /C2_3 n <|special_separator|> +(144.27, 175.30) (145.94, 175.30) (145.94, 180.93) (144.27, 180.93) /C2_3 <|special_separator|> +(145.94, 175.30) (147.61, 175.30) (147.61, 180.93) (145.94, 180.93) /C2_3 t <|special_separator|> +(147.61, 175.30) (150.94, 175.30) (150.94, 180.93) (147.61, 180.93) /C2_3 h <|special_separator|> +(150.94, 175.30) (154.28, 175.30) (154.28, 180.93) (150.94, 180.93) /C2_3 e <|special_separator|> +(154.28, 175.30) (155.95, 175.30) (155.95, 180.93) (154.28, 180.93) /C2_3 <|special_separator|> +(155.95, 175.30) (159.28, 175.30) (159.28, 180.93) (155.95, 180.93) /C2_3 a <|special_separator|> +(159.28, 175.30) (162.62, 175.30) (162.62, 180.93) (159.28, 180.93) /C2_3 u <|special_separator|> +(162.62, 175.30) (164.29, 175.30) (164.29, 180.93) (162.62, 180.93) /C2_3 t <|special_separator|> +(164.29, 175.30) (167.62, 175.30) (167.62, 180.93) (164.29, 180.93) /C2_3 h <|special_separator|> +(167.62, 175.30) (170.96, 175.30) (170.96, 180.93) (167.62, 180.93) /C2_3 o <|special_separator|> +(170.96, 175.30) (172.96, 175.30) (172.96, 180.93) (170.96, 180.93) /C2_3 r <|special_separator|> +(172.96, 175.30) (174.29, 175.30) (174.29, 180.93) (172.96, 180.93) /C2_3 i <|special_separator|> +(174.29, 175.30) (177.29, 175.30) (177.29, 180.93) (174.29, 180.93) /C2_3 z <|special_separator|> +(177.29, 175.30) (180.63, 175.30) (180.63, 180.93) (177.29, 180.93) /C2_3 e <|special_separator|> +(180.63, 175.30) (183.96, 175.30) (183.96, 180.93) (180.63, 180.93) /C2_3 d <|special_separator|> +(183.96, 175.30) (185.63, 175.30) (185.63, 180.93) (183.96, 180.93) /C2_3 <|special_separator|> +(185.63, 175.30) (188.97, 175.30) (188.97, 180.93) (185.63, 180.93) /C2_3 u <|special_separator|> +(188.97, 175.30) (190.30, 175.30) (190.30, 180.93) (188.97, 180.93) /C2_3 l <|special_separator|> +(190.30, 175.30) (191.97, 175.30) (191.97, 180.93) (190.30, 180.93) /C2_3 t <|special_separator|> +(191.97, 175.30) (193.30, 175.30) (193.30, 180.93) (191.97, 180.93) /C2_3 i <|special_separator|> +(193.30, 175.30) (198.30, 175.30) (198.30, 180.93) (193.30, 180.93) /C2_3 m <|special_separator|> +(198.30, 175.30) (201.63, 175.30) (201.63, 180.93) (198.30, 180.93) /C2_3 a <|special_separator|> +(201.63, 175.30) (203.30, 175.30) (203.30, 180.93) (201.63, 180.93) /C2_3 t <|special_separator|> +(203.30, 175.30) (206.64, 175.30) (206.64, 180.93) (203.30, 180.93) /C2_3 e <|special_separator|> +(206.64, 175.30) (208.30, 175.30) (208.30, 180.93) (206.64, 180.93) /C2_3 <|special_separator|> +(208.30, 175.30) (211.30, 175.30) (211.30, 180.93) (208.30, 180.93) /C2_3 c <|special_separator|> +(211.30, 175.30) (214.64, 175.30) (214.64, 180.93) (211.30, 180.93) /C2_3 o <|special_separator|> +(214.64, 175.30) (217.98, 175.30) (217.98, 180.93) (214.64, 180.93) /C2_3 n <|special_separator|> +(217.98, 175.30) (220.98, 175.30) (220.98, 180.93) (217.98, 180.93) /C2_3 s <|special_separator|> +(220.98, 175.30) (222.31, 175.30) (222.31, 180.93) (220.98, 180.93) /C2_3 i <|special_separator|> +(222.31, 175.30) (225.64, 175.30) (225.64, 180.93) (222.31, 180.93) /C2_3 g <|special_separator|> +(225.64, 175.30) (228.98, 175.30) (228.98, 180.93) (225.64, 180.93) /C2_3 n <|special_separator|> +(228.98, 175.30) (232.32, 175.30) (232.32, 180.93) (228.98, 180.93) /C2_3 e <|special_separator|> +(232.32, 175.30) (235.65, 175.30) (235.65, 180.93) (232.32, 180.93) /C2_3 e <|special_separator|> +(235.65, 175.30) (237.32, 175.30) (237.32, 180.93) (235.65, 180.93) /C2_3 <|special_separator|> +(237.32, 175.30) (240.66, 175.30) (240.66, 180.93) (237.32, 180.93) /C2_3 o <|special_separator|> +(240.66, 175.30) (242.65, 175.30) (242.65, 180.93) (240.66, 180.93) /C2_3 r <|special_separator|> +(242.65, 175.30) (244.32, 175.30) (244.32, 180.93) (242.65, 180.93) /C2_3 <|special_separator|> +(244.32, 175.30) (247.66, 175.30) (247.66, 180.93) (244.32, 180.93) /C2_3 e <|special_separator|> +(247.66, 175.30) (250.99, 175.30) (250.99, 180.93) (247.66, 180.93) /C2_3 n <|special_separator|> +(251.01, 175.30) (254.35, 175.30) (254.35, 180.93) (251.01, 180.93) /C2_0 d <|special_separator|> +(254.35, 175.30) (256.35, 175.30) (256.35, 180.93) (254.35, 180.93) /C2_3 - <|special_separator|> +(256.35, 175.30) (259.68, 175.30) (259.68, 180.93) (256.35, 180.93) /C2_3 u <|special_separator|> +(259.68, 175.30) (262.68, 175.30) (262.68, 180.93) (259.68, 180.93) /C2_3 s <|special_separator|> +(262.68, 175.30) (266.02, 175.30) (266.02, 180.93) (262.68, 180.93) /C2_3 e <|special_separator|> +(266.02, 175.30) (268.02, 175.30) (268.02, 180.93) (266.02, 180.93) /C2_3 r <|special_separator|> +(268.02, 175.30) (270.01, 175.30) (270.01, 180.93) (268.02, 180.93) /C2_3 ( <|special_separator|> +(270.01, 175.30) (273.01, 175.30) (273.01, 180.93) (270.01, 180.93) /C2_3 s <|special_separator|> +(273.01, 175.30) (275.01, 175.30) (275.01, 180.93) (273.01, 180.93) /C2_3 ) <|special_separator|> +(275.01, 175.30) (276.68, 175.30) (276.68, 180.93) (275.01, 180.93) /C2_3 , <|special_separator|> +(276.68, 175.30) (278.35, 175.30) (278.35, 180.93) (276.68, 180.93) /C2_3 <|special_separator|> +(278.37, 175.30) (281.70, 175.30) (281.70, 180.93) (278.37, 180.93) /C2_2 e <|special_separator|> +(281.70, 175.30) (283.03, 175.30) (283.03, 180.93) (281.70, 180.93) /C2_2 i <|special_separator|> +(283.03, 175.30) (284.70, 175.30) (284.70, 180.93) (283.03, 180.93) /C2_2 t <|special_separator|> +(284.70, 175.30) (288.04, 175.30) (288.04, 180.93) (284.70, 180.93) /C2_2 h <|special_separator|> +(288.04, 175.30) (291.37, 175.30) (291.37, 180.93) (288.04, 180.93) /C2_2 e <|special_separator|> +(291.37, 175.30) (293.37, 175.30) (293.37, 180.93) (291.37, 180.93) /C2_2 r <|special_separator|> +(293.37, 175.30) (295.04, 175.30) (295.04, 180.93) (293.37, 180.93) /C2_2 <|special_separator|> +(050.89, 168.10) (052.22, 168.10) (052.22, 173.73) (050.89, 173.73) /C2_2 i <|special_separator|> +(052.22, 168.10) (055.56, 168.10) (055.56, 173.73) (052.22, 173.73) /C2_2 n <|special_separator|> +(055.56, 168.10) (057.22, 168.10) (057.22, 173.73) (055.56, 173.73) /C2_2 <|special_separator|> +(057.22, 168.10) (058.89, 168.10) (058.89, 173.73) (057.22, 173.73) /C2_2 t <|special_separator|> +(058.89, 168.10) (062.23, 168.10) (062.23, 173.73) (058.89, 173.73) /C2_2 h <|special_separator|> +(062.23, 168.10) (065.56, 168.10) (065.56, 173.73) (062.23, 173.73) /C2_2 e <|special_separator|> +(065.56, 168.10) (066.90, 168.10) (066.90, 173.73) (065.56, 173.73) /C2_2 i <|special_separator|> +(066.90, 168.10) (068.89, 168.10) (068.89, 173.73) (066.90, 173.73) /C2_2 r <|special_separator|> +(068.89, 168.10) (070.56, 168.10) (070.56, 173.73) (068.89, 173.73) /C2_2 <|special_separator|> +(070.56, 168.10) (073.90, 168.10) (073.90, 173.73) (070.56, 173.73) /C2_2 o <|special_separator|> +(073.90, 168.10) (075.90, 168.10) (075.90, 173.73) (073.90, 173.73) /C2_2 r <|special_separator|> +(075.90, 168.10) (077.23, 168.10) (077.23, 173.73) (075.90, 173.73) /C2_2 i <|special_separator|> +(077.23, 168.10) (080.56, 168.10) (080.56, 173.73) (077.23, 173.73) /C2_2 g <|special_separator|> +(080.56, 168.10) (081.90, 168.10) (081.90, 173.73) (080.56, 173.73) /C2_2 i <|special_separator|> +(081.90, 168.10) (085.23, 168.10) (085.23, 173.73) (081.90, 173.73) /C2_2 n <|special_separator|> +(085.23, 168.10) (088.57, 168.10) (088.57, 173.73) (085.23, 173.73) /C2_2 a <|special_separator|> +(088.57, 168.10) (089.90, 168.10) (089.90, 173.73) (088.57, 173.73) /C2_2 l <|special_separator|> +(089.90, 168.10) (091.57, 168.10) (091.57, 173.73) (089.90, 173.73) /C2_2 <|special_separator|> +(091.57, 168.10) (093.24, 168.10) (093.24, 173.73) (091.57, 173.73) /C2_2 f <|special_separator|> +(093.24, 168.10) (096.57, 168.10) (096.57, 173.73) (093.24, 173.73) /C2_2 o <|special_separator|> +(096.57, 168.10) (098.57, 168.10) (098.57, 173.73) (096.57, 173.73) /C2_2 r <|special_separator|> +(098.57, 168.10) (103.57, 168.10) (103.57, 173.73) (098.57, 173.73) /C2_2 m <|special_separator|> +(103.57, 168.10) (105.24, 168.10) (105.24, 173.73) (103.57, 173.73) /C2_2 <|special_separator|> +(105.24, 168.10) (108.57, 168.10) (108.57, 173.73) (105.24, 173.73) /C2_2 o <|special_separator|> +(108.57, 168.10) (110.57, 168.10) (110.57, 173.73) (108.57, 173.73) /C2_2 r <|special_separator|> +(110.57, 168.10) (112.24, 168.10) (112.24, 173.73) (110.57, 173.73) /C2_2 <|special_separator|> +(112.24, 168.10) (115.57, 168.10) (115.57, 173.73) (112.24, 173.73) /C2_2 a <|special_separator|> +(115.57, 168.10) (117.24, 168.10) (117.24, 173.73) (115.57, 173.73) /C2_2 f <|special_separator|> +(117.24, 168.10) (118.91, 168.10) (118.91, 173.73) (117.24, 173.73) /C2_2 t <|special_separator|> +(118.91, 168.10) (122.25, 168.10) (122.25, 173.73) (118.91, 173.73) /C2_2 e <|special_separator|> +(122.25, 168.10) (124.24, 168.10) (124.24, 173.73) (122.25, 173.73) /C2_2 r <|special_separator|> +(124.24, 168.10) (125.91, 168.10) (125.91, 173.73) (124.24, 173.73) /C2_2 <|special_separator|> +(125.91, 168.10) (129.25, 168.10) (129.25, 173.73) (125.91, 173.73) /C2_2 b <|special_separator|> +(129.25, 168.10) (132.58, 168.10) (132.58, 173.73) (129.25, 173.73) /C2_2 e <|special_separator|> +(132.58, 168.10) (133.92, 168.10) (133.92, 173.73) (132.58, 173.73) /C2_2 i <|special_separator|> +(133.92, 168.10) (137.25, 168.10) (137.25, 173.73) (133.92, 173.73) /C2_2 n <|special_separator|> +(137.25, 168.10) (140.59, 168.10) (140.59, 173.73) (137.25, 173.73) /C2_2 g <|special_separator|> +(140.59, 168.10) (142.26, 168.10) (142.26, 173.73) (140.59, 173.73) /C2_2 <|special_separator|> +(142.26, 168.10) (143.59, 168.10) (143.59, 173.73) (142.26, 173.73) /C2_2 i <|special_separator|> +(143.59, 168.10) (146.92, 168.10) (146.92, 173.73) (143.59, 173.73) /C2_2 n <|special_separator|> +(146.92, 168.10) (149.92, 168.10) (149.92, 173.73) (146.92, 173.73) /C2_2 c <|special_separator|> +(149.92, 168.10) (153.26, 168.10) (153.26, 173.73) (149.92, 173.73) /C2_2 o <|special_separator|> +(153.26, 168.10) (155.26, 168.10) (155.26, 173.73) (153.26, 173.73) /C2_2 r <|special_separator|> +(155.26, 168.10) (158.59, 168.10) (158.59, 173.73) (155.26, 173.73) /C2_2 p <|special_separator|> +(158.59, 168.10) (161.93, 168.10) (161.93, 173.73) (158.59, 173.73) /C2_2 o <|special_separator|> +(161.93, 168.10) (163.93, 168.10) (163.93, 173.73) (161.93, 173.73) /C2_2 r <|special_separator|> +(163.93, 168.10) (167.26, 168.10) (167.26, 173.73) (163.93, 173.73) /C2_2 a <|special_separator|> +(167.26, 168.10) (168.93, 168.10) (168.93, 173.73) (167.26, 173.73) /C2_2 t <|special_separator|> +(168.93, 168.10) (172.27, 168.10) (172.27, 173.73) (168.93, 173.73) /C2_2 e <|special_separator|> +(172.27, 168.10) (175.60, 168.10) (175.60, 173.73) (172.27, 173.73) /C2_2 d <|special_separator|> +(175.60, 168.10) (177.27, 168.10) (177.27, 173.73) (175.60, 173.73) /C2_2 <|special_separator|> +(177.27, 168.10) (178.60, 168.10) (178.60, 173.73) (177.27, 173.73) /C2_2 i <|special_separator|> +(178.60, 168.10) (181.94, 168.10) (181.94, 173.73) (178.60, 173.73) /C2_2 n <|special_separator|> +(181.94, 168.10) (183.61, 168.10) (183.61, 173.73) (181.94, 173.73) /C2_2 t <|special_separator|> +(183.61, 168.10) (186.94, 168.10) (186.94, 173.73) (183.61, 173.73) /C2_2 o <|special_separator|> +(186.94, 168.10) (188.61, 168.10) (188.61, 173.73) (186.94, 173.73) /C2_2 <|special_separator|> +(188.61, 168.10) (191.95, 168.10) (191.95, 173.73) (188.61, 173.73) /C2_2 o <|special_separator|> +(191.95, 168.10) (193.62, 168.10) (193.62, 173.73) (191.95, 173.73) /C2_2 t <|special_separator|> +(193.62, 168.10) (196.95, 168.10) (196.95, 173.73) (193.62, 173.73) /C2_2 h <|special_separator|> +(196.95, 168.10) (200.29, 168.10) (200.29, 173.73) (196.95, 173.73) /C2_2 e <|special_separator|> +(200.29, 168.10) (202.29, 168.10) (202.29, 173.73) (200.29, 173.73) /C2_2 r <|special_separator|> +(202.29, 168.10) (203.95, 168.10) (203.95, 173.73) (202.29, 173.73) /C2_2 <|special_separator|> +(203.95, 168.10) (205.29, 168.10) (205.29, 173.73) (203.95, 173.73) /C2_2 i <|special_separator|> +(205.29, 168.10) (206.95, 168.10) (206.95, 173.73) (205.29, 173.73) /C2_2 t <|special_separator|> +(206.95, 168.10) (210.29, 168.10) (210.29, 173.73) (206.95, 173.73) /C2_2 e <|special_separator|> +(210.29, 168.10) (215.29, 168.10) (215.29, 173.73) (210.29, 173.73) /C2_2 m <|special_separator|> +(215.29, 168.10) (218.29, 168.10) (218.29, 173.73) (215.29, 173.73) /C2_2 s <|special_separator|> +(218.29, 168.10) (219.96, 168.10) (219.96, 173.73) (218.29, 173.73) /C2_2 , <|special_separator|> +(219.96, 168.10) (221.62, 168.10) (221.62, 173.73) (219.96, 173.73) /C2_2 <|special_separator|> +(221.62, 168.10) (225.96, 168.10) (225.96, 173.73) (221.62, 173.73) /C2_2 w <|special_separator|> +(225.96, 168.10) (227.29, 168.10) (227.29, 173.73) (225.96, 173.73) /C2_2 i <|special_separator|> +(227.29, 168.10) (228.96, 168.10) (228.96, 173.73) (227.29, 173.73) /C2_2 t <|special_separator|> +(228.96, 168.10) (232.29, 168.10) (232.29, 173.73) (228.96, 173.73) /C2_2 h <|special_separator|> +(232.29, 168.10) (235.63, 168.10) (235.63, 173.73) (232.29, 173.73) /C2_2 o <|special_separator|> +(235.63, 168.10) (238.96, 168.10) (238.96, 173.73) (235.63, 173.73) /C2_2 u <|special_separator|> +(238.96, 168.10) (240.63, 168.10) (240.63, 173.73) (238.96, 173.73) /C2_2 t <|special_separator|> +(240.63, 168.10) (242.30, 168.10) (242.30, 173.73) (240.63, 173.73) /C2_2 <|special_separator|> +(242.30, 168.10) (243.97, 168.10) (243.97, 173.73) (242.30, 173.73) /C2_2 f <|special_separator|> +(243.97, 168.10) (245.30, 168.10) (245.30, 173.73) (243.97, 173.73) /C2_2 i <|special_separator|> +(245.30, 168.10) (247.30, 168.10) (247.30, 173.73) (245.30, 173.73) /C2_2 r <|special_separator|> +(247.30, 168.10) (250.30, 168.10) (250.30, 173.73) (247.30, 173.73) /C2_2 s <|special_separator|> +(250.30, 168.10) (251.97, 168.10) (251.97, 173.73) (250.30, 173.73) /C2_2 t <|special_separator|> +(251.97, 168.10) (253.63, 168.10) (253.63, 173.73) (251.97, 173.73) /C2_2 <|special_separator|> +(253.63, 168.10) (256.97, 168.10) (256.97, 173.73) (253.63, 173.73) /C2_2 o <|special_separator|> +(256.97, 168.10) (260.31, 168.10) (260.31, 173.73) (256.97, 173.73) /C2_2 b <|special_separator|> +(260.31, 168.10) (261.97, 168.10) (261.97, 173.73) (260.31, 173.73) /C2_2 t <|special_separator|> +(261.97, 168.10) (265.31, 168.10) (265.31, 173.73) (261.97, 173.73) /C2_2 a <|special_separator|> +(265.31, 168.10) (266.64, 168.10) (266.64, 173.73) (265.31, 173.73) /C2_2 i <|special_separator|> +(266.64, 168.10) (269.98, 168.10) (269.98, 173.73) (266.64, 173.73) /C2_2 n <|special_separator|> +(269.98, 168.10) (271.31, 168.10) (271.31, 173.73) (269.98, 173.73) /C2_2 i <|special_separator|> +(271.31, 168.10) (274.65, 168.10) (274.65, 173.73) (271.31, 173.73) /C2_2 n <|special_separator|> +(274.65, 168.10) (277.98, 168.10) (277.98, 173.73) (274.65, 173.73) /C2_2 g <|special_separator|> +(277.98, 168.10) (279.65, 168.10) (279.65, 173.73) (277.98, 173.73) /C2_2 <|special_separator|> +(050.89, 160.90) (054.22, 160.90) (054.22, 166.53) (050.89, 166.53) /C2_2 a <|special_separator|> +(054.22, 160.90) (057.56, 160.90) (057.56, 166.53) (054.22, 166.53) /C2_2 p <|special_separator|> +(057.56, 160.90) (060.90, 160.90) (060.90, 166.53) (057.56, 166.53) /C2_2 p <|special_separator|> +(060.90, 160.90) (062.89, 160.90) (062.89, 166.53) (060.90, 166.53) /C2_2 r <|special_separator|> +(062.89, 160.90) (066.23, 160.90) (066.23, 166.53) (062.89, 166.53) /C2_2 o <|special_separator|> +(066.23, 160.90) (069.23, 160.90) (069.23, 166.53) (066.23, 166.53) /C2_2 v <|special_separator|> +(069.23, 160.90) (072.57, 160.90) (072.57, 166.53) (069.23, 166.53) /C2_2 a <|special_separator|> +(072.57, 160.90) (073.90, 160.90) (073.90, 166.53) (072.57, 166.53) /C2_2 l <|special_separator|> +(073.90, 160.90) (075.57, 160.90) (075.57, 166.53) (073.90, 166.53) /C2_2 <|special_separator|> +(075.57, 160.90) (077.23, 160.90) (077.23, 166.53) (075.57, 166.53) /C2_2 f <|special_separator|> +(077.23, 160.90) (079.23, 160.90) (079.23, 166.53) (077.23, 166.53) /C2_2 r <|special_separator|> +(079.23, 160.90) (082.57, 160.90) (082.57, 166.53) (079.23, 166.53) /C2_2 o <|special_separator|> +(082.57, 160.90) (087.57, 160.90) (087.57, 166.53) (082.57, 166.53) /C2_2 m <|special_separator|> +(087.57, 160.90) (089.23, 160.90) (089.23, 166.53) (087.57, 166.53) /C2_2 <|special_separator|> +(089.23, 160.90) (090.90, 160.90) (090.90, 166.53) (089.23, 166.53) /C2_2 t <|special_separator|> +(090.90, 160.90) (094.24, 160.90) (094.24, 166.53) (090.90, 166.53) /C2_2 h <|special_separator|> +(094.24, 160.90) (097.57, 160.90) (097.57, 166.53) (094.24, 166.53) /C2_2 e <|special_separator|> +(097.57, 160.90) (099.24, 160.90) (099.24, 166.53) (097.57, 166.53) /C2_2 <|special_separator|> +(099.24, 160.90) (103.57, 160.90) (103.57, 166.53) (099.24, 166.53) /C2_2 U <|special_separator|> +(103.57, 160.90) (105.24, 160.90) (105.24, 166.53) (103.57, 166.53) /C2_2 . <|special_separator|> +(105.24, 160.90) (109.24, 160.90) (109.24, 166.53) (105.24, 166.53) /C2_2 S <|special_separator|> +(109.24, 160.90) (110.91, 160.90) (110.91, 166.53) (109.24, 166.53) /C2_2 . <|special_separator|> +(110.91, 160.90) (112.58, 160.90) (112.58, 166.53) (110.91, 166.53) /C2_2 <|special_separator|> +(112.58, 160.90) (115.92, 160.90) (115.92, 166.53) (112.58, 166.53) /C2_2 g <|special_separator|> +(115.92, 160.90) (119.25, 160.90) (119.25, 166.53) (115.92, 166.53) /C2_2 o <|special_separator|> +(119.25, 160.90) (122.25, 160.90) (122.25, 166.53) (119.25, 166.53) /C2_2 v <|special_separator|> +(122.25, 160.90) (125.59, 160.90) (125.59, 166.53) (122.25, 166.53) /C2_2 e <|special_separator|> +(125.59, 160.90) (127.59, 160.90) (127.59, 166.53) (125.59, 166.53) /C2_2 r <|special_separator|> +(127.59, 160.90) (130.92, 160.90) (130.92, 166.53) (127.59, 166.53) /C2_2 n <|special_separator|> +(130.92, 160.90) (135.92, 160.90) (135.92, 166.53) (130.92, 166.53) /C2_2 m <|special_separator|> +(135.92, 160.90) (139.26, 160.90) (139.26, 166.53) (135.92, 166.53) /C2_2 e <|special_separator|> +(139.26, 160.90) (142.59, 160.90) (142.59, 166.53) (139.26, 166.53) /C2_2 n <|special_separator|> +(142.59, 160.90) (144.26, 160.90) (144.26, 166.53) (142.59, 166.53) /C2_2 t <|special_separator|> +(144.26, 160.90) (145.93, 160.90) (145.93, 166.53) (144.26, 166.53) /C2_2 <|special_separator|> +(145.93, 160.90) (149.26, 160.90) (149.26, 166.53) (145.93, 166.53) /C2_2 o <|special_separator|> +(149.26, 160.90) (151.26, 160.90) (151.26, 166.53) (149.26, 166.53) /C2_2 r <|special_separator|> +(151.26, 160.90) (152.93, 160.90) (152.93, 166.53) (151.26, 166.53) /C2_2 <|special_separator|> +(152.93, 160.90) (156.27, 160.90) (156.27, 166.53) (152.93, 166.53) /C2_2 a <|special_separator|> +(156.27, 160.90) (159.27, 160.90) (159.27, 166.53) (156.27, 166.53) /C2_2 s <|special_separator|> +(159.27, 160.90) (160.93, 160.90) (160.93, 166.53) (159.27, 166.53) /C2_2 <|special_separator|> +(160.93, 160.90) (164.27, 160.90) (164.27, 166.53) (160.93, 166.53) /C2_2 o <|special_separator|> +(164.27, 160.90) (165.94, 160.90) (165.94, 166.53) (164.27, 166.53) /C2_2 t <|special_separator|> +(165.94, 160.90) (169.27, 160.90) (169.27, 166.53) (165.94, 166.53) /C2_2 h <|special_separator|> +(169.27, 160.90) (172.61, 160.90) (172.61, 166.53) (169.27, 166.53) /C2_2 e <|special_separator|> +(172.61, 160.90) (174.61, 160.90) (174.61, 166.53) (172.61, 166.53) /C2_2 r <|special_separator|> +(174.61, 160.90) (178.94, 160.90) (178.94, 166.53) (174.61, 166.53) /C2_2 w <|special_separator|> +(178.94, 160.90) (180.27, 160.90) (180.27, 166.53) (178.94, 166.53) /C2_2 i <|special_separator|> +(180.27, 160.90) (183.27, 160.90) (183.27, 166.53) (180.27, 166.53) /C2_2 s <|special_separator|> +(183.27, 160.90) (186.61, 160.90) (186.61, 166.53) (183.27, 166.53) /C2_2 e <|special_separator|> +(186.61, 160.90) (188.28, 160.90) (188.28, 166.53) (186.61, 166.53) /C2_2 <|special_separator|> +(188.28, 160.90) (191.61, 160.90) (191.61, 166.53) (188.28, 166.53) /C2_2 a <|special_separator|> +(191.61, 160.90) (194.95, 160.90) (194.95, 166.53) (191.61, 166.53) /C2_2 u <|special_separator|> +(194.95, 160.90) (196.62, 160.90) (196.62, 166.53) (194.95, 166.53) /C2_2 t <|special_separator|> +(196.62, 160.90) (199.95, 160.90) (199.95, 166.53) (196.62, 166.53) /C2_2 h <|special_separator|> +(199.95, 160.90) (203.29, 160.90) (203.29, 166.53) (199.95, 166.53) /C2_2 o <|special_separator|> +(203.29, 160.90) (205.29, 160.90) (205.29, 166.53) (203.29, 166.53) /C2_2 r <|special_separator|> +(205.29, 160.90) (206.62, 160.90) (206.62, 166.53) (205.29, 166.53) /C2_2 i <|special_separator|> +(206.62, 160.90) (209.62, 160.90) (209.62, 166.53) (206.62, 166.53) /C2_2 z <|special_separator|> +(209.62, 160.90) (212.95, 160.90) (212.95, 166.53) (209.62, 166.53) /C2_2 e <|special_separator|> +(212.95, 160.90) (216.29, 160.90) (216.29, 166.53) (212.95, 166.53) /C2_2 d <|special_separator|> +(216.29, 160.90) (217.96, 160.90) (217.96, 166.53) (216.29, 166.53) /C2_2 <|special_separator|> +(217.96, 160.90) (221.29, 160.90) (221.29, 166.53) (217.96, 166.53) /C2_2 b <|special_separator|> +(221.29, 160.90) (224.29, 160.90) (224.29, 166.53) (221.29, 166.53) /C2_2 y <|special_separator|> +(224.29, 160.90) (225.96, 160.90) (225.96, 166.53) (224.29, 166.53) /C2_2 <|special_separator|> +(225.96, 160.90) (230.29, 160.90) (230.29, 166.53) (225.96, 166.53) /C2_2 U <|special_separator|> +(230.29, 160.90) (231.96, 160.90) (231.96, 166.53) (230.29, 166.53) /C2_2 . <|special_separator|> +(231.96, 160.90) (235.96, 160.90) (235.96, 166.53) (231.96, 166.53) /C2_2 S <|special_separator|> +(235.96, 160.90) (237.63, 160.90) (237.63, 166.53) (235.96, 166.53) /C2_2 . <|special_separator|> +(237.63, 160.90) (239.30, 160.90) (239.30, 166.53) (237.63, 166.53) /C2_2 <|special_separator|> +(239.30, 160.90) (240.63, 160.90) (240.63, 166.53) (239.30, 166.53) /C2_2 l <|special_separator|> +(240.63, 160.90) (243.97, 160.90) (243.97, 166.53) (240.63, 166.53) /C2_2 a <|special_separator|> +(243.97, 160.90) (248.30, 160.90) (248.30, 166.53) (243.97, 166.53) /C2_2 w <|special_separator|> +(248.30, 160.90) (249.97, 160.90) (249.97, 166.53) (248.30, 166.53) /C2_2 <|special_separator|> +(249.97, 160.90) (253.30, 160.90) (253.30, 166.53) (249.97, 166.53) /C2_2 a <|special_separator|> +(253.30, 160.90) (256.64, 160.90) (256.64, 166.53) (253.30, 166.53) /C2_2 n <|special_separator|> +(256.64, 160.90) (259.98, 160.90) (259.98, 166.53) (256.64, 166.53) /C2_2 d <|special_separator|> +(259.98, 160.90) (261.64, 160.90) (261.64, 166.53) (259.98, 166.53) /C2_2 <|special_separator|> +(261.64, 160.90) (263.64, 160.90) (263.64, 166.53) (261.64, 166.53) /C2_2 r <|special_separator|> +(263.64, 160.90) (266.98, 160.90) (266.98, 166.53) (263.64, 166.53) /C2_2 e <|special_separator|> +(266.98, 160.90) (270.31, 160.90) (270.31, 166.53) (266.98, 166.53) /C2_2 g <|special_separator|> +(270.31, 160.90) (273.65, 160.90) (273.65, 166.53) (270.31, 166.53) /C2_2 u <|special_separator|> +(273.65, 160.90) (274.98, 160.90) (274.98, 166.53) (273.65, 166.53) /C2_2 l <|special_separator|> +(274.98, 160.90) (278.32, 160.90) (278.32, 166.53) (274.98, 166.53) /C2_2 a <|special_separator|> +(278.32, 160.90) (279.99, 160.90) (279.99, 166.53) (278.32, 166.53) /C2_2 t <|special_separator|> +(279.99, 160.90) (281.32, 160.90) (281.32, 166.53) (279.99, 166.53) /C2_2 i <|special_separator|> +(281.32, 160.90) (284.65, 160.90) (284.65, 166.53) (281.32, 166.53) /C2_2 o <|special_separator|> +(284.65, 160.90) (287.99, 160.90) (287.99, 166.53) (284.65, 166.53) /C2_2 n <|special_separator|> +(288.01, 160.90) (291.01, 160.90) (291.01, 166.53) (288.01, 166.53) /C2_3 s <|special_separator|> +(291.01, 160.90) (292.68, 160.90) (292.68, 166.53) (291.01, 166.53) /C2_2 . <|special_separator|> +(053.60, 510.12) (058.66, 510.12) (058.66, 516.70) (053.60, 516.70) /C2_4 C <|special_separator|> +(058.66, 510.12) (062.55, 510.12) (062.55, 516.70) (058.66, 516.70) /C2_4 o <|special_separator|> +(062.55, 510.12) (066.44, 510.12) (066.44, 516.70) (062.55, 516.70) /C2_4 u <|special_separator|> +(066.44, 510.12) (070.33, 510.12) (070.33, 516.70) (066.44, 516.70) /C2_4 n <|special_separator|> +(070.33, 510.12) (072.28, 510.12) (072.28, 516.70) (070.33, 516.70) /C2_4 t <|special_separator|> +(072.28, 510.12) (074.61, 510.12) (074.61, 516.70) (072.28, 516.70) /C2_4 r <|special_separator|> +(074.61, 510.12) (078.11, 510.12) (078.11, 516.70) (074.61, 516.70) /C2_4 y <|special_separator|> +(078.11, 510.12) (080.05, 510.12) (080.05, 516.70) (078.11, 516.70) /C2_4 <|special_separator|> +(080.05, 510.12) (083.95, 510.12) (083.95, 516.70) (080.05, 516.70) /C2_4 o <|special_separator|> +(083.95, 510.12) (085.89, 510.12) (085.89, 516.70) (083.95, 516.70) /C2_4 f <|special_separator|> +(085.89, 510.12) (087.84, 510.12) (087.84, 516.70) (085.89, 516.70) /C2_4 <|special_separator|> +(087.84, 510.12) (092.89, 510.12) (092.89, 516.70) (087.84, 516.70) /C2_4 U <|special_separator|> +(092.89, 510.12) (094.45, 510.12) (094.45, 516.70) (092.89, 516.70) /C2_4 l <|special_separator|> +(094.45, 510.12) (096.39, 510.12) (096.39, 516.70) (094.45, 516.70) /C2_4 t <|special_separator|> +(096.39, 510.12) (097.95, 510.12) (097.95, 516.70) (096.39, 516.70) /C2_4 i <|special_separator|> +(097.95, 510.12) (103.78, 510.12) (103.78, 516.70) (097.95, 516.70) /C2_4 m <|special_separator|> +(103.78, 510.12) (107.67, 510.12) (107.67, 516.70) (103.78, 516.70) /C2_4 a <|special_separator|> +(107.67, 510.12) (109.61, 510.12) (109.61, 516.70) (107.67, 516.70) /C2_4 t <|special_separator|> +(109.61, 510.12) (113.51, 510.12) (113.51, 516.70) (109.61, 516.70) /C2_4 e <|special_separator|> +(113.51, 510.12) (115.45, 510.12) (115.45, 516.70) (113.51, 516.70) /C2_4 <|special_separator|> +(053.60, 501.72) (058.66, 501.72) (058.66, 508.30) (053.60, 508.30) /C2_4 D <|special_separator|> +(058.66, 501.72) (062.55, 501.72) (062.55, 508.30) (058.66, 508.30) /C2_4 e <|special_separator|> +(062.55, 501.72) (066.05, 501.72) (066.05, 508.30) (062.55, 508.30) /C2_4 s <|special_separator|> +(066.05, 501.72) (067.99, 501.72) (067.99, 508.30) (066.05, 508.30) /C2_4 t <|special_separator|> +(067.99, 501.72) (069.55, 501.72) (069.55, 508.30) (067.99, 508.30) /C2_4 i <|special_separator|> +(069.55, 501.72) (073.44, 501.72) (073.44, 508.30) (069.55, 508.30) /C2_4 n <|special_separator|> +(073.44, 501.72) (077.33, 501.72) (077.33, 508.30) (073.44, 508.30) /C2_4 a <|special_separator|> +(077.33, 501.72) (079.28, 501.72) (079.28, 508.30) (077.33, 508.30) /C2_4 t <|special_separator|> +(079.28, 501.72) (080.83, 501.72) (080.83, 508.30) (079.28, 508.30) /C2_4 i <|special_separator|> +(080.83, 501.72) (084.72, 501.72) (084.72, 508.30) (080.83, 508.30) /C2_4 o <|special_separator|> +(084.72, 501.72) (088.61, 501.72) (088.61, 508.30) (084.72, 508.30) /C2_4 n <|special_separator|> +(065.26, 693.04) (070.27, 693.04) (070.27, 701.36) (065.26, 701.36) /Helv 0 <|special_separator|> +(070.27, 693.04) (075.27, 693.04) (075.27, 701.36) (070.27, 701.36) /Helv 1 <|special_separator|> +(075.27, 693.04) (077.77, 693.04) (077.77, 701.36) (075.27, 701.36) /Helv / <|special_separator|> +(077.77, 693.04) (082.78, 693.04) (082.78, 701.36) (077.77, 701.36) /Helv 2 <|special_separator|> +(082.78, 693.04) (087.78, 693.04) (087.78, 701.36) (082.78, 701.36) /Helv 0 <|special_separator|> +(087.78, 693.04) (090.28, 693.04) (090.28, 701.36) (087.78, 701.36) /Helv / <|special_separator|> +(090.28, 693.04) (095.29, 693.04) (095.29, 701.36) (090.28, 701.36) /Helv 2 <|special_separator|> +(095.29, 693.04) (100.29, 693.04) (100.29, 701.36) (095.29, 701.36) /Helv 0 <|special_separator|> +(160.47, 693.04) (165.47, 693.04) (165.47, 701.36) (160.47, 701.36) /Helv 0 <|special_separator|> +(165.47, 693.04) (170.48, 693.04) (170.48, 701.36) (165.47, 701.36) /Helv 0 <|special_separator|> +(170.48, 693.04) (175.48, 693.04) (175.48, 701.36) (170.48, 701.36) /Helv 2 <|special_separator|> +(257.88, 693.04) (262.88, 693.04) (262.88, 701.36) (257.88, 701.36) /Helv 8 <|special_separator|> +(262.88, 693.04) (267.89, 693.04) (267.89, 701.36) (262.88, 701.36) /Helv 8 <|special_separator|> +(267.89, 693.04) (272.89, 693.04) (272.89, 701.36) (267.89, 701.36) /Helv 2 <|special_separator|> +(272.89, 693.04) (277.89, 693.04) (277.89, 701.36) (272.89, 701.36) /Helv 9 <|special_separator|> +(277.89, 693.04) (282.90, 693.04) (282.90, 701.36) (277.89, 701.36) /Helv 9 <|special_separator|> +(282.90, 693.04) (287.90, 693.04) (287.90, 701.36) (282.90, 701.36) /Helv 1 <|special_separator|> +(442.71, 693.04) (445.71, 693.04) (445.71, 701.36) (442.71, 701.36) /Helv - <|special_separator|> +(170.87, 659.70) (177.87, 659.70) (177.87, 668.02) (170.87, 668.02) /Helv G <|special_separator|> +(177.87, 659.70) (182.88, 659.70) (182.88, 668.02) (177.87, 668.02) /Helv o <|special_separator|> +(182.88, 659.70) (187.88, 659.70) (187.88, 668.02) (182.88, 668.02) /Helv o <|special_separator|> +(187.88, 659.70) (192.88, 659.70) (192.88, 668.02) (187.88, 668.02) /Helv d <|special_separator|> +(192.88, 659.70) (199.38, 659.70) (199.38, 668.02) (192.88, 668.02) /Helv w <|special_separator|> +(199.38, 659.70) (201.38, 659.70) (201.38, 668.02) (199.38, 668.02) /Helv i <|special_separator|> +(201.38, 659.70) (206.38, 659.70) (206.38, 668.02) (201.38, 668.02) /Helv n <|special_separator|> +(206.38, 659.70) (208.88, 659.70) (208.88, 668.02) (206.38, 668.02) /Helv <|special_separator|> +(208.88, 659.70) (215.89, 659.70) (215.89, 668.02) (208.88, 668.02) /Helv G <|special_separator|> +(215.89, 659.70) (218.88, 659.70) (218.88, 668.02) (215.89, 668.02) /Helv r <|special_separator|> +(218.88, 659.70) (223.89, 659.70) (223.89, 668.02) (218.88, 668.02) /Helv o <|special_separator|> +(223.89, 659.70) (228.89, 659.70) (228.89, 668.02) (223.89, 668.02) /Helv u <|special_separator|> +(228.89, 659.70) (233.90, 659.70) (233.90, 668.02) (228.89, 668.02) /Helv p <|special_separator|> +(170.87, 640.30) (175.87, 640.30) (175.87, 648.62) (170.87, 648.62) /Helv 9 <|special_separator|> +(175.87, 640.30) (180.88, 640.30) (180.88, 648.62) (175.87, 648.62) /Helv 1 <|special_separator|> +(180.88, 640.30) (185.88, 640.30) (185.88, 648.62) (180.88, 648.62) /Helv 8 <|special_separator|> +(185.88, 640.30) (190.88, 640.30) (190.88, 648.62) (185.88, 648.62) /Helv 9 <|special_separator|> +(190.88, 640.30) (193.39, 640.30) (193.39, 648.62) (190.88, 648.62) /Helv <|special_separator|> +(193.39, 640.30) (199.39, 640.30) (199.39, 648.62) (193.39, 648.62) /Helv E <|special_separator|> +(199.39, 640.30) (201.39, 640.30) (201.39, 648.62) (199.39, 648.62) /Helv l <|special_separator|> +(201.39, 640.30) (208.88, 640.30) (208.88, 648.62) (201.39, 648.62) /Helv m <|special_separator|> +(208.88, 640.30) (215.38, 640.30) (215.38, 648.62) (208.88, 648.62) /Helv w <|special_separator|> +(215.38, 640.30) (220.39, 640.30) (220.39, 648.62) (215.38, 648.62) /Helv o <|special_separator|> +(220.39, 640.30) (225.39, 640.30) (225.39, 648.62) (220.39, 648.62) /Helv o <|special_separator|> +(225.39, 640.30) (230.39, 640.30) (230.39, 648.62) (225.39, 648.62) /Helv d <|special_separator|> +(230.39, 640.30) (232.90, 640.30) (232.90, 648.62) (230.39, 648.62) /Helv <|special_separator|> +(232.90, 640.30) (238.90, 640.30) (238.90, 648.62) (232.90, 648.62) /Helv S <|special_separator|> +(238.90, 640.30) (241.40, 640.30) (241.40, 648.62) (238.90, 648.62) /Helv t <|special_separator|> +(241.40, 640.30) (243.90, 640.30) (243.90, 648.62) (241.40, 648.62) /Helv . <|special_separator|> +(243.90, 640.30) (246.41, 640.30) (246.41, 648.62) (243.90, 648.62) /Helv <|special_separator|> +(246.41, 640.30) (252.41, 640.30) (252.41, 648.62) (246.41, 648.62) /Helv B <|special_separator|> +(252.41, 640.30) (255.41, 640.30) (255.41, 648.62) (252.41, 648.62) /Helv r <|special_separator|> +(255.41, 640.30) (260.41, 640.30) (260.41, 648.62) (255.41, 648.62) /Helv o <|special_separator|> +(260.41, 640.30) (265.41, 640.30) (265.41, 648.62) (260.41, 648.62) /Helv n <|special_separator|> +(265.41, 640.30) (269.91, 640.30) (269.91, 648.62) (265.41, 648.62) /Helv x <|special_separator|> +(269.91, 640.30) (272.42, 640.30) (272.42, 648.62) (269.91, 648.62) /Helv , <|special_separator|> +(272.42, 640.30) (274.92, 640.30) (274.92, 648.62) (272.42, 648.62) /Helv <|special_separator|> +(274.92, 640.30) (281.42, 640.30) (281.42, 648.62) (274.92, 648.62) /Helv N <|special_separator|> +(281.42, 640.30) (287.42, 640.30) (287.42, 648.62) (281.42, 648.62) /Helv Y <|special_separator|> +(287.42, 640.30) (289.92, 640.30) (289.92, 648.62) (287.42, 648.62) /Helv <|special_separator|> +(289.92, 640.30) (294.92, 640.30) (294.92, 648.62) (289.92, 648.62) /Helv 1 <|special_separator|> +(294.92, 640.30) (299.93, 640.30) (299.93, 648.62) (294.92, 648.62) /Helv 0 <|special_separator|> +(299.93, 640.30) (304.93, 640.30) (304.93, 648.62) (299.93, 648.62) /Helv 4 <|special_separator|> +(304.93, 640.30) (309.94, 640.30) (309.94, 648.62) (304.93, 648.62) /Helv 6 <|special_separator|> +(309.94, 640.30) (314.94, 640.30) (314.94, 648.62) (309.94, 648.62) /Helv 5 <|special_separator|> +(170.87, 619.95) (176.87, 619.95) (176.87, 628.28) (170.87, 628.28) /Helv K <|special_separator|> +(176.87, 619.95) (181.88, 619.95) (181.88, 628.28) (176.87, 628.28) /Helv e <|special_separator|> +(181.88, 619.95) (184.87, 619.95) (184.87, 628.28) (181.88, 628.28) /Helv r <|special_separator|> +(184.87, 619.95) (186.87, 619.95) (186.87, 628.28) (184.87, 628.28) /Helv l <|special_separator|> +(186.87, 619.95) (191.88, 619.95) (191.88, 628.28) (186.87, 628.28) /Helv u <|special_separator|> +(191.88, 619.95) (196.38, 619.95) (196.38, 628.28) (191.88, 628.28) /Helv k <|special_separator|> +(196.38, 619.95) (201.38, 619.95) (201.38, 628.28) (196.38, 628.28) /Helv e <|special_separator|> +(201.38, 619.95) (203.88, 619.95) (203.88, 628.28) (201.38, 628.28) /Helv , <|special_separator|> +(203.88, 619.95) (206.38, 619.95) (206.38, 628.28) (203.88, 628.28) /Helv <|special_separator|> +(206.38, 619.95) (212.39, 619.95) (212.39, 628.28) (206.38, 628.28) /Helv V <|special_separator|> +(212.39, 619.95) (217.39, 619.95) (217.39, 628.28) (212.39, 628.28) /Helv e <|special_separator|> +(217.39, 619.95) (222.39, 619.95) (222.39, 628.28) (217.39, 628.28) /Helv u <|special_separator|> +(222.39, 619.95) (229.89, 619.95) (229.89, 628.28) (222.39, 628.28) /Helv m <|special_separator|> +(229.89, 619.95) (232.39, 619.95) (232.39, 628.28) (229.89, 628.28) /Helv <|special_separator|> +(232.39, 619.95) (237.40, 619.95) (237.40, 628.28) (232.39, 628.28) /Helv a <|special_separator|> +(237.40, 619.95) (242.40, 619.95) (242.40, 628.28) (237.40, 628.28) /Helv n <|special_separator|> +(242.40, 619.95) (247.41, 619.95) (247.41, 628.28) (242.40, 628.28) /Helv d <|special_separator|> +(247.41, 619.95) (249.91, 619.95) (249.91, 628.28) (247.41, 628.28) /Helv <|special_separator|> +(249.91, 619.95) (256.41, 619.95) (256.41, 628.28) (249.91, 628.28) /Helv C <|special_separator|> +(256.41, 619.95) (259.40, 619.95) (259.40, 628.28) (256.41, 628.28) /Helv r <|special_separator|> +(259.40, 619.95) (261.40, 619.95) (261.40, 628.28) (259.40, 628.28) /Helv i <|special_separator|> +(261.40, 619.95) (265.90, 619.95) (265.90, 628.28) (261.40, 628.28) /Helv s <|special_separator|> +(265.90, 619.95) (268.40, 619.95) (268.40, 628.28) (265.90, 628.28) /Helv t <|special_separator|> +(170.87, 599.55) (175.87, 599.55) (175.87, 607.88) (170.87, 607.88) /Helv 1 <|special_separator|> +(175.87, 599.55) (180.88, 599.55) (180.88, 607.88) (175.87, 607.88) /Helv 4 <|special_separator|> +(180.88, 599.55) (185.88, 599.55) (185.88, 607.88) (180.88, 607.88) /Helv 9 <|special_separator|> +(185.88, 599.55) (190.88, 599.55) (190.88, 607.88) (185.88, 607.88) /Helv 9 <|special_separator|> +(190.88, 599.55) (193.39, 599.55) (193.39, 607.88) (190.88, 607.88) /Helv <|special_separator|> +(193.39, 599.55) (201.88, 599.55) (201.88, 607.88) (193.39, 607.88) /Helv W <|special_separator|> +(201.88, 599.55) (204.38, 599.55) (204.38, 607.88) (201.88, 607.88) /Helv <|special_separator|> +(204.38, 599.55) (210.88, 599.55) (210.88, 607.88) (204.38, 607.88) /Helv C <|special_separator|> +(210.88, 599.55) (215.89, 599.55) (215.89, 607.88) (210.88, 607.88) /Helv o <|special_separator|> +(215.89, 599.55) (217.88, 599.55) (217.88, 607.88) (215.89, 607.88) /Helv l <|special_separator|> +(217.88, 599.55) (222.89, 599.55) (222.89, 607.88) (217.88, 607.88) /Helv e <|special_separator|> +(222.89, 599.55) (225.39, 599.55) (225.39, 607.88) (222.89, 607.88) /Helv <|special_separator|> +(225.39, 599.55) (231.89, 599.55) (231.89, 607.88) (225.39, 607.88) /Helv R <|special_separator|> +(231.89, 599.55) (236.89, 599.55) (236.89, 607.88) (231.89, 607.88) /Helv d <|special_separator|> +(236.89, 599.55) (239.39, 599.55) (239.39, 607.88) (236.89, 607.88) /Helv <|special_separator|> +(239.39, 599.55) (244.89, 599.55) (244.89, 607.88) (239.39, 607.88) /Helv F <|special_separator|> +(244.89, 599.55) (247.89, 599.55) (247.89, 607.88) (244.89, 607.88) /Helv r <|special_separator|> +(247.89, 599.55) (252.89, 599.55) (252.89, 607.88) (247.89, 607.88) /Helv e <|special_separator|> +(252.89, 599.55) (260.39, 599.55) (260.39, 607.88) (252.89, 607.88) /Helv m <|special_separator|> +(260.39, 599.55) (265.40, 599.55) (265.40, 607.88) (260.39, 607.88) /Helv o <|special_separator|> +(265.40, 599.55) (270.40, 599.55) (270.40, 607.88) (265.40, 607.88) /Helv n <|special_separator|> +(270.40, 599.55) (272.90, 599.55) (272.90, 607.88) (270.40, 607.88) /Helv t <|special_separator|> +(272.90, 599.55) (275.40, 599.55) (275.40, 607.88) (272.90, 607.88) /Helv , <|special_separator|> +(275.40, 599.55) (277.91, 599.55) (277.91, 607.88) (275.40, 607.88) /Helv <|special_separator|> +(277.91, 599.55) (284.91, 599.55) (284.91, 607.88) (277.91, 607.88) /Helv O <|special_separator|> +(284.91, 599.55) (289.91, 599.55) (289.91, 607.88) (284.91, 607.88) /Helv h <|special_separator|> +(289.91, 599.55) (291.91, 599.55) (291.91, 607.88) (289.91, 607.88) /Helv i <|special_separator|> +(291.91, 599.55) (296.91, 599.55) (296.91, 607.88) (291.91, 607.88) /Helv o <|special_separator|> +(296.91, 599.55) (299.91, 599.55) (299.91, 607.88) (296.91, 607.88) /Helv ( <|special_separator|> +(299.91, 599.55) (306.91, 599.55) (306.91, 607.88) (299.91, 607.88) /Helv O <|special_separator|> +(306.91, 599.55) (313.41, 599.55) (313.41, 607.88) (306.91, 607.88) /Helv H <|special_separator|> +(313.41, 599.55) (316.41, 599.55) (316.41, 607.88) (313.41, 607.88) /Helv ) <|special_separator|> +(316.41, 599.55) (318.91, 599.55) (318.91, 607.88) (316.41, 607.88) /Helv , <|special_separator|> +(318.91, 599.55) (321.41, 599.55) (321.41, 607.88) (318.91, 607.88) /Helv <|special_separator|> +(321.41, 599.55) (326.42, 599.55) (326.42, 607.88) (321.41, 607.88) /Helv 4 <|special_separator|> +(326.42, 599.55) (331.42, 599.55) (331.42, 607.88) (326.42, 607.88) /Helv 3 <|special_separator|> +(331.42, 599.55) (336.42, 599.55) (336.42, 607.88) (331.42, 607.88) /Helv 4 <|special_separator|> +(336.42, 599.55) (341.43, 599.55) (341.43, 607.88) (336.42, 607.88) /Helv 2 <|special_separator|> +(341.43, 599.55) (346.43, 599.55) (346.43, 607.88) (341.43, 607.88) /Helv 0 <|special_separator|> +(170.87, 559.26) (176.87, 559.26) (176.87, 567.59) (170.87, 567.59) /Helv K <|special_separator|> +(176.87, 559.26) (181.88, 559.26) (181.88, 567.59) (176.87, 567.59) /Helv e <|special_separator|> +(181.88, 559.26) (184.87, 559.26) (184.87, 567.59) (181.88, 567.59) /Helv r <|special_separator|> +(184.87, 559.26) (186.87, 559.26) (186.87, 567.59) (184.87, 567.59) /Helv l <|special_separator|> +(186.87, 559.26) (191.88, 559.26) (191.88, 567.59) (186.87, 567.59) /Helv u <|special_separator|> +(191.88, 559.26) (196.38, 559.26) (196.38, 567.59) (191.88, 567.59) /Helv k <|special_separator|> +(196.38, 559.26) (201.38, 559.26) (201.38, 567.59) (196.38, 567.59) /Helv e <|special_separator|> +(201.38, 559.26) (203.88, 559.26) (203.88, 567.59) (201.38, 567.59) /Helv , <|special_separator|> +(203.88, 559.26) (206.38, 559.26) (206.38, 567.59) (203.88, 567.59) /Helv <|special_separator|> +(206.38, 559.26) (212.39, 559.26) (212.39, 567.59) (206.38, 567.59) /Helv V <|special_separator|> +(212.39, 559.26) (217.39, 559.26) (217.39, 567.59) (212.39, 567.59) /Helv e <|special_separator|> +(217.39, 559.26) (222.39, 559.26) (222.39, 567.59) (217.39, 567.59) /Helv u <|special_separator|> +(222.39, 559.26) (229.89, 559.26) (229.89, 567.59) (222.39, 567.59) /Helv m <|special_separator|> +(229.89, 559.26) (232.39, 559.26) (232.39, 567.59) (229.89, 567.59) /Helv <|special_separator|> +(232.39, 559.26) (237.40, 559.26) (237.40, 567.59) (232.39, 567.59) /Helv a <|special_separator|> +(237.40, 559.26) (242.40, 559.26) (242.40, 567.59) (237.40, 567.59) /Helv n <|special_separator|> +(242.40, 559.26) (247.41, 559.26) (247.41, 567.59) (242.40, 567.59) /Helv d <|special_separator|> +(247.41, 559.26) (249.91, 559.26) (249.91, 567.59) (247.41, 567.59) /Helv <|special_separator|> +(249.91, 559.26) (256.41, 559.26) (256.41, 567.59) (249.91, 567.59) /Helv C <|special_separator|> +(256.41, 559.26) (259.40, 559.26) (259.40, 567.59) (256.41, 567.59) /Helv r <|special_separator|> +(259.40, 559.26) (261.40, 559.26) (261.40, 567.59) (259.40, 567.59) /Helv i <|special_separator|> +(261.40, 559.26) (265.90, 559.26) (265.90, 567.59) (261.40, 567.59) /Helv s <|special_separator|> +(265.90, 559.26) (268.40, 559.26) (268.40, 567.59) (265.90, 567.59) /Helv t <|special_separator|> +(170.87, 539.99) (175.87, 539.99) (175.87, 548.31) (170.87, 548.31) /Helv 1 <|special_separator|> +(175.87, 539.99) (180.88, 539.99) (180.88, 548.31) (175.87, 548.31) /Helv 4 <|special_separator|> +(180.88, 539.99) (185.88, 539.99) (185.88, 548.31) (180.88, 548.31) /Helv 9 <|special_separator|> +(185.88, 539.99) (190.88, 539.99) (190.88, 548.31) (185.88, 548.31) /Helv 9 <|special_separator|> +(190.88, 539.99) (193.39, 539.99) (193.39, 548.31) (190.88, 548.31) /Helv <|special_separator|> +(193.39, 539.99) (201.88, 539.99) (201.88, 548.31) (193.39, 548.31) /Helv W <|special_separator|> +(201.88, 539.99) (204.38, 539.99) (204.38, 548.31) (201.88, 548.31) /Helv <|special_separator|> +(204.38, 539.99) (210.88, 539.99) (210.88, 548.31) (204.38, 548.31) /Helv C <|special_separator|> +(210.88, 539.99) (215.89, 539.99) (215.89, 548.31) (210.88, 548.31) /Helv o <|special_separator|> +(215.89, 539.99) (217.88, 539.99) (217.88, 548.31) (215.89, 548.31) /Helv l <|special_separator|> +(217.88, 539.99) (222.89, 539.99) (222.89, 548.31) (217.88, 548.31) /Helv e <|special_separator|> +(222.89, 539.99) (225.39, 539.99) (225.39, 548.31) (222.89, 548.31) /Helv <|special_separator|> +(225.39, 539.99) (231.89, 539.99) (231.89, 548.31) (225.39, 548.31) /Helv R <|special_separator|> +(231.89, 539.99) (236.89, 539.99) (236.89, 548.31) (231.89, 548.31) /Helv d <|special_separator|> +(236.89, 539.99) (239.39, 539.99) (239.39, 548.31) (236.89, 548.31) /Helv <|special_separator|> +(239.39, 539.99) (244.89, 539.99) (244.89, 548.31) (239.39, 548.31) /Helv F <|special_separator|> +(244.89, 539.99) (247.89, 539.99) (247.89, 548.31) (244.89, 548.31) /Helv r <|special_separator|> +(247.89, 539.99) (252.89, 539.99) (252.89, 548.31) (247.89, 548.31) /Helv e <|special_separator|> +(252.89, 539.99) (260.39, 539.99) (260.39, 548.31) (252.89, 548.31) /Helv m <|special_separator|> +(260.39, 539.99) (265.40, 539.99) (265.40, 548.31) (260.39, 548.31) /Helv o <|special_separator|> +(265.40, 539.99) (270.40, 539.99) (270.40, 548.31) (265.40, 548.31) /Helv n <|special_separator|> +(270.40, 539.99) (272.90, 539.99) (272.90, 548.31) (270.40, 548.31) /Helv t <|special_separator|> +(272.90, 539.99) (275.40, 539.99) (275.40, 548.31) (272.90, 548.31) /Helv , <|special_separator|> +(275.40, 539.99) (277.91, 539.99) (277.91, 548.31) (275.40, 548.31) /Helv <|special_separator|> +(277.91, 539.99) (284.91, 539.99) (284.91, 548.31) (277.91, 548.31) /Helv O <|special_separator|> +(284.91, 539.99) (289.91, 539.99) (289.91, 548.31) (284.91, 548.31) /Helv h <|special_separator|> +(289.91, 539.99) (291.91, 539.99) (291.91, 548.31) (289.91, 548.31) /Helv i <|special_separator|> +(291.91, 539.99) (296.91, 539.99) (296.91, 548.31) (291.91, 548.31) /Helv o <|special_separator|> +(296.91, 539.99) (299.91, 539.99) (299.91, 548.31) (296.91, 548.31) /Helv ( <|special_separator|> +(299.91, 539.99) (306.91, 539.99) (306.91, 548.31) (299.91, 548.31) /Helv O <|special_separator|> +(306.91, 539.99) (313.41, 539.99) (313.41, 548.31) (306.91, 548.31) /Helv H <|special_separator|> +(313.41, 539.99) (316.41, 539.99) (316.41, 548.31) (313.41, 548.31) /Helv ) <|special_separator|> +(316.41, 539.99) (318.91, 539.99) (318.91, 548.31) (316.41, 548.31) /Helv , <|special_separator|> +(318.91, 539.99) (321.41, 539.99) (321.41, 548.31) (318.91, 548.31) /Helv <|special_separator|> +(321.41, 539.99) (326.42, 539.99) (326.42, 548.31) (321.41, 548.31) /Helv 4 <|special_separator|> +(326.42, 539.99) (331.42, 539.99) (331.42, 548.31) (326.42, 548.31) /Helv 3 <|special_separator|> +(331.42, 539.99) (336.42, 539.99) (336.42, 548.31) (331.42, 548.31) /Helv 4 <|special_separator|> +(336.42, 539.99) (341.43, 539.99) (341.43, 548.31) (336.42, 548.31) /Helv 2 <|special_separator|> +(341.43, 539.99) (346.43, 539.99) (346.43, 548.31) (341.43, 548.31) /Helv 0 <|special_separator|> +(138.17, 521.15) (144.66, 521.15) (144.66, 529.48) (138.17, 529.48) /Helv N <|special_separator|> +(144.66, 521.15) (149.67, 521.15) (149.67, 529.48) (144.66, 529.48) /Helv e <|special_separator|> +(149.67, 521.15) (156.17, 521.15) (156.17, 529.48) (149.67, 529.48) /Helv w <|special_separator|> +(156.17, 521.15) (158.67, 521.15) (158.67, 529.48) (156.17, 529.48) /Helv <|special_separator|> +(158.67, 521.15) (164.67, 521.15) (164.67, 529.48) (158.67, 529.48) /Helv Y <|special_separator|> +(164.67, 521.15) (169.68, 521.15) (169.68, 529.48) (164.67, 529.48) /Helv o <|special_separator|> +(169.68, 521.15) (172.67, 521.15) (172.67, 529.48) (169.68, 529.48) /Helv r <|special_separator|> +(172.67, 521.15) (177.17, 521.15) (177.17, 529.48) (172.67, 529.48) /Helv k <|special_separator|> +(177.17, 521.15) (179.67, 521.15) (179.67, 529.48) (177.17, 529.48) /Helv <|special_separator|> +(179.67, 521.15) (186.17, 521.15) (186.17, 529.48) (179.67, 529.48) /Helv H <|special_separator|> +(186.17, 521.15) (191.18, 521.15) (191.18, 529.48) (186.17, 529.48) /Helv a <|special_separator|> +(191.18, 521.15) (194.17, 521.15) (194.17, 529.48) (191.18, 529.48) /Helv r <|special_separator|> +(194.17, 521.15) (199.18, 521.15) (199.18, 529.48) (194.17, 529.48) /Helv b <|special_separator|> +(199.18, 521.15) (204.18, 521.15) (204.18, 529.48) (199.18, 529.48) /Helv o <|special_separator|> +(204.18, 521.15) (207.18, 521.15) (207.18, 529.48) (204.18, 529.48) /Helv r <|special_separator|> +(138.17, 505.90) (144.66, 505.90) (144.66, 514.23) (138.17, 514.23) /Helv U <|special_separator|> +(144.66, 505.90) (150.67, 505.90) (150.67, 514.23) (144.66, 514.23) /Helv S <|special_separator|> +(150.67, 505.90) (156.67, 505.90) (156.67, 514.23) (150.67, 514.23) /Helv A <|special_separator|> +(138.17, 489.90) (144.66, 489.90) (144.66, 498.23) (138.17, 498.23) /Helv H <|special_separator|> +(144.66, 489.90) (146.66, 489.90) (146.66, 498.23) (144.66, 498.23) /Helv i <|special_separator|> +(146.66, 489.90) (151.67, 489.90) (151.67, 498.23) (146.66, 498.23) /Helv n <|special_separator|> +(151.67, 489.90) (154.17, 489.90) (154.17, 498.23) (151.67, 498.23) /Helv t <|special_separator|> +(154.17, 489.90) (158.67, 489.90) (158.67, 498.23) (154.17, 498.23) /Helv z <|special_separator|> +(158.67, 489.90) (161.66, 489.90) (161.66, 498.23) (158.67, 498.23) /Helv - <|special_separator|> +(161.66, 489.90) (168.16, 489.90) (168.16, 498.23) (161.66, 498.23) /Helv R <|special_separator|> +(168.16, 489.90) (173.17, 489.90) (173.17, 498.23) (168.16, 498.23) /Helv a <|special_separator|> +(173.17, 489.90) (177.67, 489.90) (177.67, 498.23) (173.17, 498.23) /Helv y <|special_separator|> +(177.67, 489.90) (182.67, 489.90) (182.67, 498.23) (177.67, 498.23) /Helv n <|special_separator|> +(182.67, 489.90) (187.67, 489.90) (187.67, 498.23) (182.67, 498.23) /Helv o <|special_separator|> +(187.67, 489.90) (190.67, 489.90) (190.67, 498.23) (187.67, 498.23) /Helv r <|special_separator|> +(138.17, 442.47) (144.17, 442.47) (144.17, 450.79) (138.17, 450.79) /Helv P <|special_separator|> +(144.17, 442.47) (149.17, 442.47) (149.17, 450.79) (144.17, 450.79) /Helv a <|special_separator|> +(149.17, 442.47) (153.67, 442.47) (153.67, 450.79) (149.17, 450.79) /Helv y <|special_separator|> +(153.67, 442.47) (161.17, 442.47) (161.17, 450.79) (153.67, 450.79) /Helv m <|special_separator|> +(161.17, 442.47) (166.17, 442.47) (166.17, 450.79) (161.17, 450.79) /Helv e <|special_separator|> +(166.17, 442.47) (171.18, 442.47) (171.18, 450.79) (166.17, 450.79) /Helv n <|special_separator|> +(171.18, 442.47) (173.68, 442.47) (173.68, 450.79) (171.18, 450.79) /Helv t <|special_separator|> +(173.68, 442.47) (176.18, 442.47) (176.18, 450.79) (173.68, 450.79) /Helv <|special_separator|> +(176.18, 442.47) (178.18, 442.47) (178.18, 450.79) (176.18, 450.79) /Helv i <|special_separator|> +(178.18, 442.47) (183.18, 442.47) (183.18, 450.79) (178.18, 450.79) /Helv n <|special_separator|> +(183.18, 442.47) (185.69, 442.47) (185.69, 450.79) (183.18, 450.79) /Helv <|special_separator|> +(185.69, 442.47) (191.69, 442.47) (191.69, 450.79) (185.69, 450.79) /Helv A <|special_separator|> +(191.69, 442.47) (196.69, 442.47) (196.69, 450.79) (191.69, 450.79) /Helv d <|special_separator|> +(196.69, 442.47) (201.19, 442.47) (201.19, 450.79) (196.69, 450.79) /Helv v <|special_separator|> +(201.19, 442.47) (206.20, 442.47) (206.20, 450.79) (201.19, 450.79) /Helv a <|special_separator|> +(206.20, 442.47) (211.20, 442.47) (211.20, 450.79) (206.20, 450.79) /Helv n <|special_separator|> +(211.20, 442.47) (215.70, 442.47) (215.70, 450.79) (211.20, 450.79) /Helv c <|special_separator|> +(215.70, 442.47) (220.71, 442.47) (220.71, 450.79) (215.70, 450.79) /Helv e <|special_separator|> +(138.17, 426.33) (144.66, 426.33) (144.66, 434.65) (138.17, 434.65) /Helv U <|special_separator|> +(144.66, 426.33) (150.67, 426.33) (150.67, 434.65) (144.66, 434.65) /Helv S <|special_separator|> +(150.67, 426.33) (153.17, 426.33) (153.17, 434.65) (150.67, 434.65) /Helv <|special_separator|> +(153.17, 426.33) (159.67, 426.33) (159.67, 434.65) (153.17, 434.65) /Helv D <|special_separator|> +(159.67, 426.33) (166.67, 426.33) (166.67, 434.65) (159.67, 434.65) /Helv O <|special_separator|> +(166.67, 426.33) (171.67, 426.33) (171.67, 434.65) (166.67, 434.65) /Helv L <|special_separator|> +(171.67, 426.33) (176.68, 426.33) (176.68, 434.65) (171.67, 434.65) /Helv L <|special_separator|> +(176.68, 426.33) (182.68, 426.33) (182.68, 434.65) (176.68, 434.65) /Helv A <|special_separator|> +(182.68, 426.33) (189.18, 426.33) (189.18, 434.65) (182.68, 434.65) /Helv R <|special_separator|> +(395.99, 521.15) (400.99, 521.15) (400.99, 529.48) (395.99, 529.48) /Helv 1 <|special_separator|> +(400.99, 521.15) (406.00, 521.15) (406.00, 529.48) (400.99, 529.48) /Helv 0 <|special_separator|> +(406.00, 521.15) (411.00, 521.15) (411.00, 529.48) (406.00, 529.48) /Helv 0 <|special_separator|> +(395.99, 505.90) (400.99, 505.90) (400.99, 514.23) (395.99, 514.23) /Helv 8 <|special_separator|> +(400.99, 505.90) (406.00, 505.90) (406.00, 514.23) (400.99, 514.23) /Helv 6 <|special_separator|> +(406.00, 505.90) (411.00, 505.90) (411.00, 514.23) (406.00, 514.23) /Helv 0 <|special_separator|> +(411.00, 505.90) (416.00, 505.90) (416.00, 514.23) (411.00, 514.23) /Helv 0 <|special_separator|> +(416.00, 505.90) (420.50, 505.90) (420.50, 514.23) (416.00, 514.23) /Helv k <|special_separator|> +(420.50, 505.90) (425.51, 505.90) (425.51, 514.23) (420.50, 514.23) /Helv g <|special_separator|> +(425.51, 505.90) (430.01, 505.90) (430.01, 514.23) (425.51, 514.23) /Helv s <|special_separator|> +(395.99, 489.90) (400.99, 489.90) (400.99, 498.23) (395.99, 498.23) /Helv 1 <|special_separator|> +(400.99, 489.90) (406.00, 489.90) (406.00, 498.23) (400.99, 498.23) /Helv 7 <|special_separator|> +(406.00, 489.90) (411.00, 489.90) (411.00, 498.23) (406.00, 498.23) /Helv 0 <|special_separator|> +(411.00, 489.90) (413.50, 489.90) (413.50, 498.23) (411.00, 498.23) /Helv . <|special_separator|> +(413.50, 489.90) (418.51, 489.90) (418.51, 498.23) (413.50, 498.23) /Helv 2 <|special_separator|> +(418.51, 489.90) (423.51, 489.90) (423.51, 498.23) (418.51, 498.23) /Helv 9 <|special_separator|> +(052.00, 376.08) (059.00, 376.08) (059.00, 384.41) (052.00, 384.41) /Helv O <|special_separator|> +(059.00, 376.08) (062.00, 376.08) (062.00, 384.41) (059.00, 384.41) /Helv r <|special_separator|> +(062.00, 376.08) (064.00, 376.08) (064.00, 384.41) (062.00, 384.41) /Helv i <|special_separator|> +(064.00, 376.08) (069.00, 376.08) (069.00, 384.41) (064.00, 384.41) /Helv g <|special_separator|> +(069.00, 376.08) (071.00, 376.08) (071.00, 384.41) (069.00, 384.41) /Helv i <|special_separator|> +(071.00, 376.08) (076.00, 376.08) (076.00, 384.41) (071.00, 384.41) /Helv n <|special_separator|> +(076.00, 376.08) (081.01, 376.08) (081.01, 384.41) (076.00, 384.41) /Helv a <|special_separator|> +(081.01, 376.08) (083.01, 376.08) (083.01, 384.41) (081.01, 384.41) /Helv l <|special_separator|> +(083.01, 376.08) (085.51, 376.08) (085.51, 384.41) (083.01, 384.41) /Helv <|special_separator|> +(085.51, 376.08) (092.01, 376.08) (092.01, 384.41) (085.51, 384.41) /Helv H <|special_separator|> +(092.01, 376.08) (097.01, 376.08) (097.01, 384.41) (092.01, 384.41) /Helv o <|special_separator|> +(097.01, 376.08) (102.01, 376.08) (102.01, 384.41) (097.01, 384.41) /Helv n <|special_separator|> +(102.01, 376.08) (107.02, 376.08) (107.02, 384.41) (102.01, 384.41) /Helv d <|special_separator|> +(107.02, 376.08) (112.02, 376.08) (112.02, 384.41) (107.02, 384.41) /Helv a <|special_separator|> +(112.02, 376.08) (114.52, 376.08) (114.52, 384.41) (112.02, 384.41) /Helv <|special_separator|> +(114.52, 376.08) (121.02, 376.08) (121.02, 384.41) (114.52, 384.41) /Helv C <|special_separator|> +(121.02, 376.08) (126.03, 376.08) (126.03, 384.41) (121.02, 384.41) /Helv o <|special_separator|> +(126.03, 376.08) (130.53, 376.08) (130.53, 384.41) (126.03, 384.41) /Helv v <|special_separator|> +(130.53, 376.08) (135.53, 376.08) (135.53, 384.41) (130.53, 384.41) /Helv e <|special_separator|> +(135.53, 376.08) (138.53, 376.08) (138.53, 384.41) (135.53, 384.41) /Helv r <|special_separator|> +(138.53, 376.08) (141.03, 376.08) (141.03, 384.41) (138.53, 384.41) /Helv <|special_separator|> +(141.03, 376.08) (147.03, 376.08) (147.03, 384.41) (141.03, 384.41) /Helv S <|special_separator|> +(147.03, 376.08) (152.04, 376.08) (152.04, 384.41) (147.03, 384.41) /Helv e <|special_separator|> +(152.04, 376.08) (154.54, 376.08) (154.54, 384.41) (152.04, 384.41) /Helv t <|special_separator|> +(154.54, 376.08) (157.04, 376.08) (157.04, 384.41) (154.54, 384.41) /Helv <|special_separator|> +(157.04, 376.08) (162.04, 376.08) (162.04, 384.41) (157.04, 384.41) /Helv L <|special_separator|> +(162.04, 376.08) (167.05, 376.08) (167.05, 384.41) (162.04, 384.41) /Helv e <|special_separator|> +(167.05, 376.08) (169.55, 376.08) (169.55, 384.41) (167.05, 384.41) /Helv f <|special_separator|> +(169.55, 376.08) (172.05, 376.08) (172.05, 384.41) (169.55, 384.41) /Helv t <|special_separator|> +(172.05, 376.08) (174.55, 376.08) (174.55, 384.41) (172.05, 384.41) /Helv <|special_separator|> +(174.55, 376.08) (179.56, 376.08) (179.56, 384.41) (174.55, 384.41) /Helv a <|special_separator|> +(179.56, 376.08) (184.56, 376.08) (184.56, 384.41) (179.56, 384.41) /Helv n <|special_separator|> +(184.56, 376.08) (189.57, 376.08) (189.57, 384.41) (184.56, 384.41) /Helv d <|special_separator|> +(189.57, 376.08) (192.07, 376.08) (192.07, 384.41) (189.57, 384.41) /Helv <|special_separator|> +(192.07, 376.08) (198.57, 376.08) (198.57, 384.41) (192.07, 384.41) /Helv R <|special_separator|> +(198.57, 376.08) (200.56, 376.08) (200.56, 384.41) (198.57, 384.41) /Helv i <|special_separator|> +(200.56, 376.08) (205.57, 376.08) (205.57, 384.41) (200.56, 384.41) /Helv g <|special_separator|> +(205.57, 376.08) (210.57, 376.08) (210.57, 384.41) (205.57, 384.41) /Helv h <|special_separator|> +(210.57, 376.08) (213.07, 376.08) (213.07, 384.41) (210.57, 384.41) /Helv t <|special_separator|> +(213.07, 376.08) (215.58, 376.08) (215.58, 384.41) (213.07, 384.41) /Helv <|special_separator|> +(215.58, 376.08) (221.07, 376.08) (221.07, 384.41) (215.58, 384.41) /Helv F <|special_separator|> +(221.07, 376.08) (226.08, 376.08) (226.08, 384.41) (221.07, 384.41) /Helv o <|special_separator|> +(226.08, 376.08) (229.08, 376.08) (229.08, 384.41) (226.08, 384.41) /Helv r <|special_separator|> +(229.08, 376.08) (231.58, 376.08) (231.58, 384.41) (229.08, 384.41) /Helv <|special_separator|> +(231.58, 376.08) (237.58, 376.08) (237.58, 384.41) (231.58, 384.41) /Helv X <|special_separator|> +(237.58, 376.08) (244.08, 376.08) (244.08, 384.41) (237.58, 384.41) /Helv R <|special_separator|> +(244.08, 376.08) (251.58, 376.08) (251.58, 384.41) (244.08, 384.41) /Helv M <|special_separator|> +(251.58, 376.08) (254.08, 376.08) (254.08, 384.41) (251.58, 384.41) /Helv <|special_separator|> +(254.08, 376.08) (259.08, 376.08) (259.08, 384.41) (254.08, 384.41) /Helv 1 <|special_separator|> +(259.08, 376.08) (264.09, 376.08) (264.09, 384.41) (259.08, 384.41) /Helv 1 <|special_separator|> +(264.09, 376.08) (269.09, 376.08) (269.09, 384.41) (264.09, 384.41) /Helv 0 <|special_separator|> +(269.09, 376.08) (271.59, 376.08) (271.59, 384.41) (269.09, 384.41) /Helv <|special_separator|> +(271.59, 376.08) (280.59, 376.08) (280.59, 384.41) (271.59, 384.41) /Helv Œ <|special_separator|> +(280.59, 376.08) (283.09, 376.08) (283.09, 384.41) (280.59, 384.41) /Helv <|special_separator|> +(279.10, 376.08) (285.60, 376.08) (285.60, 384.41) (279.10, 384.41) /Helv R <|special_separator|> +(285.60, 376.08) (290.60, 376.08) (290.60, 384.41) (285.60, 384.41) /Helv e <|special_separator|> +(290.60, 376.08) (295.60, 376.08) (295.60, 384.41) (290.60, 384.41) /Helv d <|special_separator|> +(338.74, 373.67) (345.24, 373.67) (345.24, 382.00) (338.74, 382.00) /Helv U <|special_separator|> +(345.24, 373.67) (351.24, 373.67) (351.24, 382.00) (345.24, 382.00) /Helv S <|special_separator|> +(351.24, 373.67) (357.24, 373.67) (357.24, 382.00) (351.24, 382.00) /Helv A <|special_separator|> +(414.17, 373.67) (419.17, 373.67) (419.17, 382.00) (414.17, 382.00) /Helv 1 <|special_separator|> +(419.17, 373.67) (424.18, 373.67) (424.18, 382.00) (419.17, 382.00) /Helv 0 <|special_separator|> +(468.12, 373.73) (473.12, 373.73) (473.12, 382.05) (468.12, 382.05) /Helv $ <|special_separator|> +(473.12, 373.73) (478.13, 373.73) (478.13, 382.05) (473.12, 382.05) /Helv 3 <|special_separator|> +(478.13, 373.73) (483.13, 373.73) (483.13, 382.05) (478.13, 382.05) /Helv 3 <|special_separator|> +(483.13, 373.73) (488.13, 373.73) (488.13, 382.05) (483.13, 382.05) /Helv 3 <|special_separator|> +(488.13, 373.73) (490.64, 373.73) (490.64, 382.05) (488.13, 382.05) /Helv . <|special_separator|> +(490.64, 373.73) (495.64, 373.73) (495.64, 382.05) (490.64, 382.05) /Helv 2 <|special_separator|> +(495.64, 373.73) (500.64, 373.73) (500.64, 382.05) (495.64, 382.05) /Helv 1 <|special_separator|> +(517.82, 373.73) (522.82, 373.73) (522.82, 382.05) (517.82, 382.05) /Helv $ <|special_separator|> +(522.82, 373.73) (527.83, 373.73) (527.83, 382.05) (522.82, 382.05) /Helv 3 <|special_separator|> +(527.83, 373.73) (530.33, 373.73) (530.33, 382.05) (527.83, 382.05) /Helv , <|special_separator|> +(530.33, 373.73) (535.33, 373.73) (535.33, 382.05) (530.33, 382.05) /Helv 3 <|special_separator|> +(535.33, 373.73) (540.34, 373.73) (540.34, 382.05) (535.33, 382.05) /Helv 3 <|special_separator|> +(540.34, 373.73) (545.34, 373.73) (545.34, 382.05) (540.34, 382.05) /Helv 2 <|special_separator|> +(545.34, 373.73) (547.84, 373.73) (547.84, 382.05) (545.34, 382.05) /Helv . <|special_separator|> +(547.84, 373.73) (552.85, 373.73) (552.85, 382.05) (547.84, 382.05) /Helv 0 <|special_separator|> +(552.85, 373.73) (557.85, 373.73) (557.85, 382.05) (552.85, 382.05) /Helv 1 <|special_separator|> +(052.00, 340.15) (059.00, 340.15) (059.00, 348.48) (052.00, 348.48) /Helv O <|special_separator|> +(059.00, 340.15) (062.00, 340.15) (062.00, 348.48) (059.00, 348.48) /Helv r <|special_separator|> +(062.00, 340.15) (064.00, 340.15) (064.00, 348.48) (062.00, 348.48) /Helv i <|special_separator|> +(064.00, 340.15) (069.00, 340.15) (069.00, 348.48) (064.00, 348.48) /Helv g <|special_separator|> +(069.00, 340.15) (071.00, 340.15) (071.00, 348.48) (069.00, 348.48) /Helv i <|special_separator|> +(071.00, 340.15) (076.00, 340.15) (076.00, 348.48) (071.00, 348.48) /Helv n <|special_separator|> +(076.00, 340.15) (081.01, 340.15) (081.01, 348.48) (076.00, 348.48) /Helv a <|special_separator|> +(081.01, 340.15) (083.01, 340.15) (083.01, 348.48) (081.01, 348.48) /Helv l <|special_separator|> +(083.01, 340.15) (085.51, 340.15) (085.51, 348.48) (083.01, 348.48) /Helv <|special_separator|> +(085.51, 340.15) (092.01, 340.15) (092.01, 348.48) (085.51, 348.48) /Helv H <|special_separator|> +(092.01, 340.15) (097.01, 340.15) (097.01, 348.48) (092.01, 348.48) /Helv o <|special_separator|> +(097.01, 340.15) (102.01, 340.15) (102.01, 348.48) (097.01, 348.48) /Helv n <|special_separator|> +(102.01, 340.15) (107.02, 340.15) (107.02, 348.48) (102.01, 348.48) /Helv d <|special_separator|> +(107.02, 340.15) (112.02, 340.15) (112.02, 348.48) (107.02, 348.48) /Helv a <|special_separator|> +(112.02, 340.15) (114.52, 340.15) (114.52, 348.48) (112.02, 348.48) /Helv <|special_separator|> +(114.52, 340.15) (121.02, 340.15) (121.02, 348.48) (114.52, 348.48) /Helv C <|special_separator|> +(121.02, 340.15) (126.03, 340.15) (126.03, 348.48) (121.02, 348.48) /Helv o <|special_separator|> +(126.03, 340.15) (130.53, 340.15) (130.53, 348.48) (126.03, 348.48) /Helv v <|special_separator|> +(130.53, 340.15) (135.53, 340.15) (135.53, 348.48) (130.53, 348.48) /Helv e <|special_separator|> +(135.53, 340.15) (138.53, 340.15) (138.53, 348.48) (135.53, 348.48) /Helv r <|special_separator|> +(138.53, 340.15) (141.03, 340.15) (141.03, 348.48) (138.53, 348.48) /Helv <|special_separator|> +(141.03, 340.15) (147.53, 340.15) (147.53, 348.48) (141.03, 348.48) /Helv H <|special_separator|> +(147.53, 340.15) (152.53, 340.15) (152.53, 348.48) (147.53, 348.48) /Helv a <|special_separator|> +(152.53, 340.15) (157.53, 340.15) (157.53, 348.48) (152.53, 348.48) /Helv n <|special_separator|> +(157.53, 340.15) (162.54, 340.15) (162.54, 348.48) (157.53, 348.48) /Helv d <|special_separator|> +(162.54, 340.15) (164.54, 340.15) (164.54, 348.48) (162.54, 348.48) /Helv l <|special_separator|> +(164.54, 340.15) (169.54, 340.15) (169.54, 348.48) (164.54, 348.48) /Helv e <|special_separator|> +(169.54, 340.15) (172.04, 340.15) (172.04, 348.48) (169.54, 348.48) /Helv <|special_separator|> +(172.04, 340.15) (177.54, 340.15) (177.54, 348.48) (172.04, 348.48) /Helv F <|special_separator|> +(177.54, 340.15) (180.54, 340.15) (180.54, 348.48) (177.54, 348.48) /Helv r <|special_separator|> +(180.54, 340.15) (185.54, 340.15) (185.54, 348.48) (180.54, 348.48) /Helv o <|special_separator|> +(185.54, 340.15) (190.55, 340.15) (190.55, 348.48) (185.54, 348.48) /Helv n <|special_separator|> +(190.55, 340.15) (193.05, 340.15) (193.05, 348.48) (190.55, 348.48) /Helv t <|special_separator|> +(193.05, 340.15) (195.55, 340.15) (195.55, 348.48) (193.05, 348.48) /Helv <|special_separator|> +(195.55, 340.15) (198.55, 340.15) (198.55, 348.48) (195.55, 348.48) /Helv ( <|special_separator|> +(198.55, 340.15) (205.05, 340.15) (205.05, 348.48) (198.55, 348.48) /Helv D <|special_separator|> +(205.05, 340.15) (207.04, 340.15) (207.04, 348.48) (205.05, 348.48) /Helv i <|special_separator|> +(207.04, 340.15) (211.54, 340.15) (211.54, 348.48) (207.04, 348.48) /Helv s <|special_separator|> +(211.54, 340.15) (216.04, 340.15) (216.04, 348.48) (211.54, 348.48) /Helv k <|special_separator|> +(216.04, 340.15) (218.55, 340.15) (218.55, 348.48) (216.04, 348.48) /Helv <|special_separator|> +(218.55, 340.15) (224.55, 340.15) (224.55, 348.48) (218.55, 348.48) /Helv B <|special_separator|> +(224.55, 340.15) (227.55, 340.15) (227.55, 348.48) (224.55, 348.48) /Helv r <|special_separator|> +(227.55, 340.15) (232.55, 340.15) (232.55, 348.48) (227.55, 348.48) /Helv a <|special_separator|> +(232.55, 340.15) (237.05, 340.15) (237.05, 348.48) (232.55, 348.48) /Helv k <|special_separator|> +(237.05, 340.15) (242.05, 340.15) (242.05, 348.48) (237.05, 348.48) /Helv e <|special_separator|> +(242.05, 340.15) (245.05, 340.15) (245.05, 348.48) (242.05, 348.48) /Helv ) <|special_separator|> +(245.05, 340.15) (247.55, 340.15) (247.55, 348.48) (245.05, 348.48) /Helv <|special_separator|> +(247.55, 340.15) (253.05, 340.15) (253.05, 348.48) (247.55, 348.48) /Helv F <|special_separator|> +(253.05, 340.15) (258.06, 340.15) (258.06, 348.48) (253.05, 348.48) /Helv o <|special_separator|> +(258.06, 340.15) (261.05, 340.15) (261.05, 348.48) (258.06, 348.48) /Helv r <|special_separator|> +(261.05, 340.15) (263.55, 340.15) (263.55, 348.48) (261.05, 348.48) /Helv <|special_separator|> +(263.55, 340.15) (269.56, 340.15) (269.56, 348.48) (263.55, 348.48) /Helv B <|special_separator|> +(269.56, 340.15) (274.56, 340.15) (274.56, 348.48) (269.56, 348.48) /Helv e <|special_separator|> +(274.56, 340.15) (279.57, 340.15) (279.57, 348.48) (274.56, 348.48) /Helv a <|special_separator|> +(279.57, 340.15) (282.07, 340.15) (282.07, 348.48) (279.57, 348.48) /Helv t <|special_separator|> +(282.07, 340.15) (284.57, 340.15) (284.57, 348.48) (282.07, 348.48) /Helv <|special_separator|> +(052.00, 331.83) (058.50, 331.83) (058.50, 340.15) (052.00, 340.15) /Helv C <|special_separator|> +(058.50, 331.83) (063.50, 331.83) (063.50, 340.15) (058.50, 340.15) /Helv a <|special_separator|> +(063.50, 331.83) (066.50, 331.83) (066.50, 340.15) (063.50, 340.15) /Helv r <|special_separator|> +(066.50, 331.83) (071.50, 331.83) (071.50, 340.15) (066.50, 340.15) /Helv b <|special_separator|> +(071.50, 331.83) (074.01, 331.83) (074.01, 340.15) (071.50, 340.15) /Helv <|special_separator|> +(074.01, 331.83) (080.01, 331.83) (080.01, 340.15) (074.01, 340.15) /Helv V <|special_separator|> +(080.01, 331.83) (085.01, 331.83) (085.01, 340.15) (080.01, 340.15) /Helv e <|special_separator|> +(085.01, 331.83) (088.01, 331.83) (088.01, 340.15) (085.01, 340.15) /Helv r <|special_separator|> +(088.01, 331.83) (092.51, 331.83) (092.51, 340.15) (088.01, 340.15) /Helv s <|special_separator|> +(092.51, 331.83) (094.51, 331.83) (094.51, 340.15) (092.51, 340.15) /Helv i <|special_separator|> +(094.51, 331.83) (099.51, 331.83) (099.51, 340.15) (094.51, 340.15) /Helv o <|special_separator|> +(099.51, 331.83) (104.52, 331.83) (104.52, 340.15) (099.51, 340.15) /Helv n <|special_separator|> +(104.52, 331.83) (107.02, 331.83) (107.02, 340.15) (104.52, 340.15) /Helv <|special_separator|> +(107.02, 331.83) (112.02, 331.83) (112.02, 340.15) (107.02, 340.15) /Helv 1 <|special_separator|> +(338.74, 339.85) (345.24, 339.85) (345.24, 348.18) (338.74, 348.18) /Helv U <|special_separator|> +(345.24, 339.85) (351.24, 339.85) (351.24, 348.18) (345.24, 348.18) /Helv S <|special_separator|> +(351.24, 339.85) (357.24, 339.85) (357.24, 348.18) (351.24, 348.18) /Helv A <|special_separator|> +(414.17, 339.85) (419.17, 339.85) (419.17, 348.18) (414.17, 348.18) /Helv 1 <|special_separator|> +(419.17, 339.85) (424.18, 339.85) (424.18, 348.18) (419.17, 348.18) /Helv 2 <|special_separator|> +(468.12, 339.80) (473.12, 339.80) (473.12, 348.12) (468.12, 348.12) /Helv $ <|special_separator|> +(473.12, 339.80) (478.13, 339.80) (478.13, 348.12) (473.12, 348.12) /Helv 2 <|special_separator|> +(478.13, 339.80) (483.13, 339.80) (483.13, 348.12) (478.13, 348.12) /Helv 8 <|special_separator|> +(483.13, 339.80) (488.13, 339.80) (488.13, 348.12) (483.13, 348.12) /Helv 2 <|special_separator|> +(488.13, 339.80) (490.64, 339.80) (490.64, 348.12) (488.13, 348.12) /Helv . <|special_separator|> +(490.64, 339.80) (495.64, 339.80) (495.64, 348.12) (490.64, 348.12) /Helv 9 <|special_separator|> +(495.64, 339.80) (500.64, 339.80) (500.64, 348.12) (495.64, 348.12) /Helv 2 <|special_separator|> +(517.82, 339.80) (522.82, 339.80) (522.82, 348.12) (517.82, 348.12) /Helv $ <|special_separator|> +(522.82, 339.80) (527.83, 339.80) (527.83, 348.12) (522.82, 348.12) /Helv 3 <|special_separator|> +(527.83, 339.80) (530.33, 339.80) (530.33, 348.12) (527.83, 348.12) /Helv , <|special_separator|> +(530.33, 339.80) (535.33, 339.80) (535.33, 348.12) (530.33, 348.12) /Helv 3 <|special_separator|> +(535.33, 339.80) (540.34, 339.80) (540.34, 348.12) (535.33, 348.12) /Helv 9 <|special_separator|> +(540.34, 339.80) (545.34, 339.80) (545.34, 348.12) (540.34, 348.12) /Helv 5 <|special_separator|> +(545.34, 339.80) (547.84, 339.80) (547.84, 348.12) (545.34, 348.12) /Helv . <|special_separator|> +(547.84, 339.80) (552.85, 339.80) (552.85, 348.12) (547.84, 348.12) /Helv 0 <|special_separator|> +(552.85, 339.80) (557.85, 339.80) (557.85, 348.12) (552.85, 348.12) /Helv 4 <|special_separator|> +(052.00, 304.22) (059.00, 304.22) (059.00, 312.55) (052.00, 312.55) /Helv O <|special_separator|> +(059.00, 304.22) (062.00, 304.22) (062.00, 312.55) (059.00, 312.55) /Helv r <|special_separator|> +(062.00, 304.22) (064.00, 304.22) (064.00, 312.55) (062.00, 312.55) /Helv i <|special_separator|> +(064.00, 304.22) (069.00, 304.22) (069.00, 312.55) (064.00, 312.55) /Helv g <|special_separator|> +(069.00, 304.22) (071.00, 304.22) (071.00, 312.55) (069.00, 312.55) /Helv i <|special_separator|> +(071.00, 304.22) (076.00, 304.22) (076.00, 312.55) (071.00, 312.55) /Helv n <|special_separator|> +(076.00, 304.22) (081.01, 304.22) (081.01, 312.55) (076.00, 312.55) /Helv a <|special_separator|> +(081.01, 304.22) (083.01, 304.22) (083.01, 312.55) (081.01, 312.55) /Helv l <|special_separator|> +(083.01, 304.22) (085.51, 304.22) (085.51, 312.55) (083.01, 312.55) /Helv <|special_separator|> +(085.51, 304.22) (092.01, 304.22) (092.01, 312.55) (085.51, 312.55) /Helv H <|special_separator|> +(092.01, 304.22) (097.01, 304.22) (097.01, 312.55) (092.01, 312.55) /Helv o <|special_separator|> +(097.01, 304.22) (102.01, 304.22) (102.01, 312.55) (097.01, 312.55) /Helv n <|special_separator|> +(102.01, 304.22) (107.02, 304.22) (107.02, 312.55) (102.01, 312.55) /Helv d <|special_separator|> +(107.02, 304.22) (112.02, 304.22) (112.02, 312.55) (107.02, 312.55) /Helv a <|special_separator|> +(112.02, 304.22) (114.52, 304.22) (114.52, 312.55) (112.02, 312.55) /Helv <|special_separator|> +(114.52, 304.22) (121.02, 304.22) (121.02, 312.55) (114.52, 312.55) /Helv C <|special_separator|> +(121.02, 304.22) (126.03, 304.22) (126.03, 312.55) (121.02, 312.55) /Helv o <|special_separator|> +(126.03, 304.22) (132.52, 304.22) (132.52, 312.55) (126.03, 312.55) /Helv w <|special_separator|> +(132.52, 304.22) (134.52, 304.22) (134.52, 312.55) (132.52, 312.55) /Helv l <|special_separator|> +(134.52, 304.22) (137.02, 304.22) (137.02, 312.55) (134.52, 312.55) /Helv <|special_separator|> +(137.02, 304.22) (143.52, 304.22) (143.52, 312.55) (137.02, 312.55) /Helv U <|special_separator|> +(143.52, 304.22) (148.53, 304.22) (148.53, 312.55) (143.52, 312.55) /Helv n <|special_separator|> +(148.53, 304.22) (153.53, 304.22) (153.53, 312.55) (148.53, 312.55) /Helv d <|special_separator|> +(153.53, 304.22) (158.53, 304.22) (158.53, 312.55) (153.53, 312.55) /Helv e <|special_separator|> +(158.53, 304.22) (161.53, 304.22) (161.53, 312.55) (158.53, 312.55) /Helv r <|special_separator|> +(161.53, 304.22) (164.03, 304.22) (164.03, 312.55) (161.53, 312.55) /Helv <|special_separator|> +(164.03, 304.22) (167.03, 304.22) (167.03, 312.55) (164.03, 312.55) /Helv ( <|special_separator|> +(167.03, 304.22) (173.03, 304.22) (173.03, 312.55) (167.03, 312.55) /Helv E <|special_separator|> +(173.03, 304.22) (178.04, 304.22) (178.04, 312.55) (173.03, 312.55) /Helv n <|special_separator|> +(178.04, 304.22) (183.04, 304.22) (183.04, 312.55) (178.04, 312.55) /Helv g <|special_separator|> +(183.04, 304.22) (185.04, 304.22) (185.04, 312.55) (183.04, 312.55) /Helv i <|special_separator|> +(185.04, 304.22) (190.04, 304.22) (190.04, 312.55) (185.04, 312.55) /Helv n <|special_separator|> +(190.04, 304.22) (195.05, 304.22) (195.05, 312.55) (190.04, 312.55) /Helv e <|special_separator|> +(195.05, 304.22) (197.55, 304.22) (197.55, 312.55) (195.05, 312.55) /Helv <|special_separator|> +(197.55, 304.22) (204.05, 304.22) (204.05, 312.55) (197.55, 312.55) /Helv C <|special_separator|> +(204.05, 304.22) (209.05, 304.22) (209.05, 312.55) (204.05, 312.55) /Helv o <|special_separator|> +(209.05, 304.22) (213.55, 304.22) (213.55, 312.55) (209.05, 312.55) /Helv v <|special_separator|> +(213.55, 304.22) (218.55, 304.22) (218.55, 312.55) (213.55, 312.55) /Helv e <|special_separator|> +(218.55, 304.22) (221.55, 304.22) (221.55, 312.55) (218.55, 312.55) /Helv r <|special_separator|> +(221.55, 304.22) (224.55, 304.22) (224.55, 312.55) (221.55, 312.55) /Helv ) <|special_separator|> +(224.55, 304.22) (227.05, 304.22) (227.05, 312.55) (224.55, 312.55) /Helv <|special_separator|> +(227.05, 304.22) (232.55, 304.22) (232.55, 312.55) (227.05, 312.55) /Helv F <|special_separator|> +(232.55, 304.22) (237.55, 304.22) (237.55, 312.55) (232.55, 312.55) /Helv o <|special_separator|> +(237.55, 304.22) (240.55, 304.22) (240.55, 312.55) (237.55, 312.55) /Helv r <|special_separator|> +(240.55, 304.22) (243.05, 304.22) (243.05, 312.55) (240.55, 312.55) /Helv <|special_separator|> +(243.05, 304.22) (249.55, 304.22) (249.55, 312.55) (243.05, 312.55) /Helv R <|special_separator|> +(249.55, 304.22) (254.05, 304.22) (254.05, 312.55) (249.55, 312.55) /Helv s <|special_separator|> +(254.05, 304.22) (256.55, 304.22) (256.55, 312.55) (254.05, 312.55) /Helv <|special_separator|> +(256.55, 304.22) (261.56, 304.22) (261.56, 312.55) (256.55, 312.55) /Helv 1 <|special_separator|> +(261.56, 304.22) (266.56, 304.22) (266.56, 312.55) (261.56, 312.55) /Helv 2 <|special_separator|> +(266.56, 304.22) (271.56, 304.22) (271.56, 312.55) (266.56, 312.55) /Helv 5 <|special_separator|> +(271.56, 304.22) (274.07, 304.22) (274.07, 312.55) (271.56, 312.55) /Helv <|special_separator|> +(274.07, 304.22) (283.07, 304.22) (283.07, 312.55) (274.07, 312.55) /Helv Œ <|special_separator|> +(283.07, 304.22) (285.57, 304.22) (285.57, 312.55) (283.07, 312.55) /Helv <|special_separator|> +(052.00, 295.90) (058.00, 295.90) (058.00, 304.22) (052.00, 304.22) /Helv B <|special_separator|> +(058.00, 295.90) (060.00, 295.90) (060.00, 304.22) (058.00, 304.22) /Helv l <|special_separator|> +(060.00, 295.90) (065.01, 295.90) (065.01, 304.22) (060.00, 304.22) /Helv a <|special_separator|> +(065.01, 295.90) (069.51, 295.90) (069.51, 304.22) (065.01, 304.22) /Helv c <|special_separator|> +(069.51, 295.90) (074.01, 295.90) (074.01, 304.22) (069.51, 304.22) /Helv k <|special_separator|> +(338.74, 303.95) (345.24, 303.95) (345.24, 312.27) (338.74, 312.27) /Helv U <|special_separator|> +(345.24, 303.95) (351.24, 303.95) (351.24, 312.27) (345.24, 312.27) /Helv S <|special_separator|> +(351.24, 303.95) (357.24, 303.95) (357.24, 312.27) (351.24, 312.27) /Helv A <|special_separator|> +(414.17, 303.95) (419.17, 303.95) (419.17, 312.27) (414.17, 312.27) /Helv 8 <|special_separator|> +(419.17, 303.95) (424.18, 303.95) (424.18, 312.27) (419.17, 312.27) /Helv 0 <|special_separator|> +(468.12, 303.86) (473.12, 303.86) (473.12, 312.19) (468.12, 312.19) /Helv $ <|special_separator|> +(473.12, 303.86) (478.13, 303.86) (478.13, 312.19) (473.12, 312.19) /Helv 1 <|special_separator|> +(478.13, 303.86) (483.13, 303.86) (483.13, 312.19) (478.13, 312.19) /Helv 0 <|special_separator|> +(483.13, 303.86) (488.13, 303.86) (488.13, 312.19) (483.13, 312.19) /Helv 0 <|special_separator|> +(488.13, 303.86) (490.64, 303.86) (490.64, 312.19) (488.13, 312.19) /Helv . <|special_separator|> +(490.64, 303.86) (495.64, 303.86) (495.64, 312.19) (490.64, 312.19) /Helv 0 <|special_separator|> +(495.64, 303.86) (500.64, 303.86) (500.64, 312.19) (495.64, 312.19) /Helv 0 <|special_separator|> +(517.82, 303.86) (522.82, 303.86) (522.82, 312.19) (517.82, 312.19) /Helv $ <|special_separator|> +(522.82, 303.86) (527.83, 303.86) (527.83, 312.19) (522.82, 312.19) /Helv 8 <|special_separator|> +(527.83, 303.86) (530.33, 303.86) (530.33, 312.19) (527.83, 312.19) /Helv , <|special_separator|> +(530.33, 303.86) (535.33, 303.86) (535.33, 312.19) (530.33, 312.19) /Helv 0 <|special_separator|> +(535.33, 303.86) (540.34, 303.86) (540.34, 312.19) (535.33, 312.19) /Helv 0 <|special_separator|> +(540.34, 303.86) (545.34, 303.86) (545.34, 312.19) (540.34, 312.19) /Helv 0 <|special_separator|> +(545.34, 303.86) (547.84, 303.86) (547.84, 312.19) (545.34, 312.19) /Helv . <|special_separator|> +(547.84, 303.86) (552.85, 303.86) (552.85, 312.19) (547.84, 312.19) /Helv 0 <|special_separator|> +(552.85, 303.86) (557.85, 303.86) (557.85, 312.19) (552.85, 312.19) /Helv 0 <|special_separator|> +(052.00, 267.29) (059.00, 267.29) (059.00, 275.61) (052.00, 275.61) /Helv O <|special_separator|> +(059.00, 267.29) (062.00, 267.29) (062.00, 275.61) (059.00, 275.61) /Helv r <|special_separator|> +(062.00, 267.29) (064.00, 267.29) (064.00, 275.61) (062.00, 275.61) /Helv i <|special_separator|> +(064.00, 267.29) (069.00, 267.29) (069.00, 275.61) (064.00, 275.61) /Helv g <|special_separator|> +(069.00, 267.29) (071.00, 267.29) (071.00, 275.61) (069.00, 275.61) /Helv i <|special_separator|> +(071.00, 267.29) (076.00, 267.29) (076.00, 275.61) (071.00, 275.61) /Helv n <|special_separator|> +(076.00, 267.29) (081.01, 267.29) (081.01, 275.61) (076.00, 275.61) /Helv a <|special_separator|> +(081.01, 267.29) (083.01, 267.29) (083.01, 275.61) (081.01, 275.61) /Helv l <|special_separator|> +(083.01, 267.29) (085.51, 267.29) (085.51, 275.61) (083.01, 275.61) /Helv <|special_separator|> +(085.51, 267.29) (092.01, 267.29) (092.01, 275.61) (085.51, 275.61) /Helv H <|special_separator|> +(092.01, 267.29) (097.01, 267.29) (097.01, 275.61) (092.01, 275.61) /Helv o <|special_separator|> +(097.01, 267.29) (102.01, 267.29) (102.01, 275.61) (097.01, 275.61) /Helv n <|special_separator|> +(102.01, 267.29) (107.02, 267.29) (107.02, 275.61) (102.01, 275.61) /Helv d <|special_separator|> +(107.02, 267.29) (112.02, 267.29) (112.02, 275.61) (107.02, 275.61) /Helv a <|special_separator|> +(112.02, 267.29) (114.52, 267.29) (114.52, 275.61) (112.02, 275.61) /Helv <|special_separator|> +(114.52, 267.29) (121.02, 267.29) (121.02, 275.61) (114.52, 275.61) /Helv C <|special_separator|> +(121.02, 267.29) (126.03, 267.29) (126.03, 275.61) (121.02, 275.61) /Helv o <|special_separator|> +(126.03, 267.29) (130.53, 267.29) (130.53, 275.61) (126.03, 275.61) /Helv v <|special_separator|> +(130.53, 267.29) (135.53, 267.29) (135.53, 275.61) (130.53, 275.61) /Helv e <|special_separator|> +(135.53, 267.29) (138.53, 267.29) (138.53, 275.61) (135.53, 275.61) /Helv r <|special_separator|> +(138.53, 267.29) (141.03, 267.29) (141.03, 275.61) (138.53, 275.61) /Helv <|special_separator|> +(141.03, 267.29) (147.03, 267.29) (147.03, 275.61) (141.03, 275.61) /Helv S <|special_separator|> +(147.03, 267.29) (152.04, 267.29) (152.04, 275.61) (147.03, 275.61) /Helv e <|special_separator|> +(152.04, 267.29) (154.54, 267.29) (154.54, 275.61) (152.04, 275.61) /Helv t <|special_separator|> +(154.54, 267.29) (157.04, 267.29) (157.04, 275.61) (154.54, 275.61) /Helv <|special_separator|> +(157.04, 267.29) (162.04, 267.29) (162.04, 275.61) (157.04, 275.61) /Helv L <|special_separator|> +(162.04, 267.29) (167.05, 267.29) (167.05, 275.61) (162.04, 275.61) /Helv e <|special_separator|> +(167.05, 267.29) (169.55, 267.29) (169.55, 275.61) (167.05, 275.61) /Helv f <|special_separator|> +(169.55, 267.29) (172.05, 267.29) (172.05, 275.61) (169.55, 275.61) /Helv t <|special_separator|> +(172.05, 267.29) (174.55, 267.29) (174.55, 275.61) (172.05, 275.61) /Helv <|special_separator|> +(174.55, 267.29) (179.56, 267.29) (179.56, 275.61) (174.55, 275.61) /Helv a <|special_separator|> +(179.56, 267.29) (184.56, 267.29) (184.56, 275.61) (179.56, 275.61) /Helv n <|special_separator|> +(184.56, 267.29) (189.57, 267.29) (189.57, 275.61) (184.56, 275.61) /Helv d <|special_separator|> +(189.57, 267.29) (192.07, 267.29) (192.07, 275.61) (189.57, 275.61) /Helv <|special_separator|> +(192.07, 267.29) (198.57, 267.29) (198.57, 275.61) (192.07, 275.61) /Helv R <|special_separator|> +(198.57, 267.29) (200.56, 267.29) (200.56, 275.61) (198.57, 275.61) /Helv i <|special_separator|> +(200.56, 267.29) (205.57, 267.29) (205.57, 275.61) (200.56, 275.61) /Helv g <|special_separator|> +(205.57, 267.29) (210.57, 267.29) (210.57, 275.61) (205.57, 275.61) /Helv h <|special_separator|> +(210.57, 267.29) (213.07, 267.29) (213.07, 275.61) (210.57, 275.61) /Helv t <|special_separator|> +(213.07, 267.29) (215.58, 267.29) (215.58, 275.61) (213.07, 275.61) /Helv <|special_separator|> +(215.58, 267.29) (221.07, 267.29) (221.07, 275.61) (215.58, 275.61) /Helv F <|special_separator|> +(221.07, 267.29) (226.08, 267.29) (226.08, 275.61) (221.07, 275.61) /Helv o <|special_separator|> +(226.08, 267.29) (229.08, 267.29) (229.08, 275.61) (226.08, 275.61) /Helv r <|special_separator|> +(229.08, 267.29) (231.58, 267.29) (231.58, 275.61) (229.08, 275.61) /Helv <|special_separator|> +(231.58, 267.29) (237.58, 267.29) (237.58, 275.61) (231.58, 275.61) /Helv X <|special_separator|> +(237.58, 267.29) (244.08, 267.29) (244.08, 275.61) (237.58, 275.61) /Helv R <|special_separator|> +(244.08, 267.29) (251.58, 267.29) (251.58, 275.61) (244.08, 275.61) /Helv M <|special_separator|> +(251.58, 267.29) (254.08, 267.29) (254.08, 275.61) (251.58, 275.61) /Helv <|special_separator|> +(254.08, 267.29) (259.08, 267.29) (259.08, 275.61) (254.08, 275.61) /Helv 1 <|special_separator|> +(259.08, 267.29) (264.09, 267.29) (264.09, 275.61) (259.08, 275.61) /Helv 1 <|special_separator|> +(264.09, 267.29) (269.09, 267.29) (269.09, 275.61) (264.09, 275.61) /Helv 0 <|special_separator|> +(269.09, 267.29) (271.59, 267.29) (271.59, 275.61) (269.09, 275.61) /Helv <|special_separator|> +(271.59, 267.29) (280.59, 267.29) (280.59, 275.61) (271.59, 275.61) /Helv Œ <|special_separator|> +(280.59, 267.29) (283.09, 267.29) (283.09, 275.61) (280.59, 275.61) /Helv <|special_separator|> +(279.10, 267.29) (285.60, 267.29) (285.60, 275.61) (279.10, 275.61) /Helv R <|special_separator|> +(285.60, 267.29) (290.60, 267.29) (290.60, 275.61) (285.60, 275.61) /Helv e <|special_separator|> +(290.60, 267.29) (295.60, 267.29) (295.60, 275.61) (290.60, 275.61) /Helv d <|special_separator|> +(338.74, 266.85) (345.24, 266.85) (345.24, 275.17) (338.74, 275.17) /Helv U <|special_separator|> +(345.24, 266.85) (351.24, 266.85) (351.24, 275.17) (345.24, 275.17) /Helv S <|special_separator|> +(351.24, 266.85) (357.24, 266.85) (357.24, 275.17) (351.24, 275.17) /Helv A <|special_separator|> +(414.17, 266.85) (419.17, 266.85) (419.17, 275.17) (414.17, 275.17) /Helv 1 <|special_separator|> +(419.17, 266.85) (424.18, 266.85) (424.18, 275.17) (419.17, 275.17) /Helv 0 <|special_separator|> +(473.12, 266.93) (478.13, 266.93) (478.13, 275.26) (473.12, 275.26) /Helv $ <|special_separator|> +(478.13, 266.93) (483.13, 266.93) (483.13, 275.26) (478.13, 275.26) /Helv 1 <|special_separator|> +(483.13, 266.93) (488.13, 266.93) (488.13, 275.26) (483.13, 275.26) /Helv 0 <|special_separator|> +(488.13, 266.93) (490.64, 266.93) (490.64, 275.26) (488.13, 275.26) /Helv . <|special_separator|> +(490.64, 266.93) (495.64, 266.93) (495.64, 275.26) (490.64, 275.26) /Helv 7 <|special_separator|> +(495.64, 266.93) (500.64, 266.93) (500.64, 275.26) (495.64, 275.26) /Helv 3 <|special_separator|> +(525.33, 266.93) (530.33, 266.93) (530.33, 275.26) (525.33, 275.26) /Helv $ <|special_separator|> +(530.33, 266.93) (535.33, 266.93) (535.33, 275.26) (530.33, 275.26) /Helv 1 <|special_separator|> +(535.33, 266.93) (540.34, 266.93) (540.34, 275.26) (535.33, 275.26) /Helv 0 <|special_separator|> +(540.34, 266.93) (545.34, 266.93) (545.34, 275.26) (540.34, 275.26) /Helv 7 <|special_separator|> +(545.34, 266.93) (547.84, 266.93) (547.84, 275.26) (545.34, 275.26) /Helv . <|special_separator|> +(547.84, 266.93) (552.85, 266.93) (552.85, 275.26) (547.84, 275.26) /Helv 0 <|special_separator|> +(552.85, 266.93) (557.85, 266.93) (557.85, 275.26) (552.85, 275.26) /Helv 3 <|special_separator|> +(052.00, 082.59) (056.38, 082.59) (056.38, 090.69) (052.00, 090.69) /Helv J <|special_separator|> +(056.38, 082.59) (061.26, 082.59) (061.26, 090.69) (056.38, 090.69) /Helv o <|special_separator|> +(061.26, 082.59) (065.64, 082.59) (065.64, 090.69) (061.26, 090.69) /Helv s <|special_separator|> +(065.64, 082.59) (070.51, 082.59) (070.51, 090.69) (065.64, 090.69) /Helv e <|special_separator|> +(070.51, 082.59) (072.95, 082.59) (072.95, 090.69) (070.51, 090.69) /Helv <|special_separator|> +(072.95, 082.59) (078.79, 082.59) (078.79, 090.69) (072.95, 090.69) /Helv S <|special_separator|> +(078.79, 082.59) (081.23, 082.59) (081.23, 090.69) (078.79, 090.69) /Helv <|special_separator|> +(081.23, 082.59) (086.10, 082.59) (086.10, 090.69) (081.23, 090.69) /Helv L <|special_separator|> +(086.10, 082.59) (090.98, 082.59) (090.98, 090.69) (086.10, 090.69) /Helv a <|special_separator|> +(090.98, 082.59) (093.90, 082.59) (093.90, 090.69) (090.98, 090.69) /Helv r <|special_separator|> +(093.90, 082.59) (098.77, 082.59) (098.77, 090.69) (093.90, 090.69) /Helv e <|special_separator|> +(098.77, 082.59) (103.15, 082.59) (103.15, 090.69) (098.77, 090.69) /Helv s <|special_separator|> +(249.24, 082.59) (254.12, 082.59) (254.12, 090.69) (249.24, 090.69) /Helv 0 <|special_separator|> +(254.12, 082.59) (258.99, 082.59) (258.99, 090.69) (254.12, 090.69) /Helv 1 <|special_separator|> +(258.99, 082.59) (261.43, 082.59) (261.43, 090.69) (258.99, 090.69) /Helv / <|special_separator|> +(261.43, 082.59) (266.30, 082.59) (266.30, 090.69) (261.43, 090.69) /Helv 2 <|special_separator|> +(266.30, 082.59) (271.17, 082.59) (271.17, 090.69) (266.30, 090.69) /Helv 0 <|special_separator|> +(271.17, 082.59) (273.61, 082.59) (273.61, 090.69) (271.17, 090.69) /Helv / <|special_separator|> +(273.61, 082.59) (278.48, 082.59) (278.48, 090.69) (273.61, 090.69) /Helv 2 <|special_separator|> +(278.48, 082.59) (283.36, 082.59) (283.36, 090.69) (278.48, 090.69) /Helv 0 <|special_separator|> +(535.38, 193.54) (540.38, 193.54) (540.38, 201.86) (535.38, 201.86) /Helv 1 <|special_separator|> +(540.38, 193.54) (545.39, 193.54) (545.39, 201.86) (540.38, 201.86) /Helv 2 <|special_separator|> +(545.39, 193.54) (547.89, 193.54) (547.89, 201.86) (545.39, 201.86) /Helv . <|special_separator|> +(547.89, 193.54) (552.89, 193.54) (552.89, 201.86) (547.89, 201.86) /Helv 2 <|special_separator|> +(552.89, 193.54) (557.90, 193.54) (557.90, 201.86) (552.89, 201.86) /Helv 3 <|special_separator|> +(530.38, 177.59) (535.38, 177.59) (535.38, 185.92) (530.38, 185.92) /Helv 8 <|special_separator|> +(535.38, 177.59) (540.38, 177.59) (540.38, 185.92) (535.38, 185.92) /Helv 8 <|special_separator|> +(540.38, 177.59) (545.39, 177.59) (545.39, 185.92) (540.38, 185.92) /Helv 1 <|special_separator|> +(545.39, 177.59) (547.89, 177.59) (547.89, 185.92) (545.39, 185.92) /Helv . <|special_separator|> +(547.89, 177.59) (552.89, 177.59) (552.89, 185.92) (547.89, 185.92) /Helv 2 <|special_separator|> +(552.89, 177.59) (557.90, 177.59) (557.90, 185.92) (552.89, 185.92) /Helv 1 <|special_separator|> +(540.38, 161.65) (545.39, 161.65) (545.39, 169.97) (540.38, 169.97) /Helv 0 <|special_separator|> +(545.39, 161.65) (547.89, 161.65) (547.89, 169.97) (545.39, 169.97) /Helv . <|special_separator|> +(547.89, 161.65) (552.89, 161.65) (552.89, 169.97) (547.89, 169.97) /Helv 0 <|special_separator|> +(552.89, 161.65) (557.90, 161.65) (557.90, 169.97) (552.89, 169.97) /Helv 0 <|special_separator|> +(540.38, 145.70) (545.39, 145.70) (545.39, 154.03) (540.38, 154.03) /Helv 0 <|special_separator|> +(545.39, 145.70) (547.89, 145.70) (547.89, 154.03) (545.39, 154.03) /Helv . <|special_separator|> +(547.89, 145.70) (552.89, 145.70) (552.89, 154.03) (547.89, 154.03) /Helv 0 <|special_separator|> +(552.89, 145.70) (557.90, 145.70) (557.90, 154.03) (552.89, 154.03) /Helv 0 <|special_separator|> +(535.38, 129.76) (540.38, 129.76) (540.38, 138.08) (535.38, 138.08) /Helv 3 <|special_separator|> +(540.38, 129.76) (545.39, 129.76) (545.39, 138.08) (540.38, 138.08) /Helv 3 <|special_separator|> +(545.39, 129.76) (547.89, 129.76) (547.89, 138.08) (545.39, 138.08) /Helv . <|special_separator|> +(547.89, 129.76) (552.89, 129.76) (552.89, 138.08) (547.89, 138.08) /Helv 1 <|special_separator|> +(552.89, 129.76) (557.90, 129.76) (557.90, 138.08) (552.89, 138.08) /Helv 1 <|special_separator|> +(540.38, 113.82) (545.39, 113.82) (545.39, 122.14) (540.38, 122.14) /Helv 0 <|special_separator|> +(545.39, 113.82) (547.89, 113.82) (547.89, 122.14) (545.39, 122.14) /Helv . <|special_separator|> +(547.89, 113.82) (552.89, 113.82) (552.89, 122.14) (547.89, 122.14) /Helv 0 <|special_separator|> +(552.89, 113.82) (557.90, 113.82) (557.90, 122.14) (552.89, 122.14) /Helv 0 <|special_separator|> +(535.38, 097.87) (540.38, 097.87) (540.38, 106.20) (535.38, 106.20) /Helv 8 <|special_separator|> +(540.38, 097.87) (545.39, 097.87) (545.39, 106.20) (540.38, 106.20) /Helv 8 <|special_separator|> +(545.39, 097.87) (547.89, 097.87) (547.89, 106.20) (545.39, 106.20) /Helv . <|special_separator|> +(547.89, 097.87) (552.89, 097.87) (552.89, 106.20) (547.89, 106.20) /Helv 2 <|special_separator|> +(552.89, 097.87) (557.90, 097.87) (557.90, 106.20) (552.89, 106.20) /Helv 1 <|special_separator|> +(535.38, 081.93) (540.38, 081.93) (540.38, 090.25) (535.38, 090.25) /Helv 7 <|special_separator|> +(540.38, 081.93) (545.39, 081.93) (545.39, 090.25) (540.38, 090.25) /Helv 3 <|special_separator|> +(545.39, 081.93) (547.89, 081.93) (547.89, 090.25) (545.39, 090.25) /Helv . <|special_separator|> +(547.89, 081.93) (552.89, 081.93) (552.89, 090.25) (547.89, 090.25) /Helv 0 <|special_separator|> +(552.89, 081.93) (557.90, 081.93) (557.90, 090.25) (552.89, 090.25) /Helv 0 <|special_separator|> +(512.86, 080.02) (517.87, 080.02) (517.87, 088.35) (512.86, 088.35) /HeBo $ <|special_separator|> +(517.87, 080.02) (522.87, 080.02) (522.87, 088.35) (517.87, 088.35) /HeBo 1 <|special_separator|> +(522.87, 080.02) (527.88, 080.02) (527.88, 088.35) (522.87, 088.35) /HeBo 5 <|special_separator|> +(527.88, 080.02) (530.38, 080.02) (530.38, 088.35) (527.88, 088.35) /HeBo , <|special_separator|> +(530.38, 080.02) (535.38, 080.02) (535.38, 088.35) (530.38, 088.35) /HeBo 9 <|special_separator|> +(535.38, 080.02) (540.38, 080.02) (540.38, 088.35) (535.38, 088.35) /HeBo 2 <|special_separator|> +(540.38, 080.02) (545.39, 080.02) (545.39, 088.35) (540.38, 088.35) /HeBo 2 <|special_separator|> +(545.39, 080.02) (547.89, 080.02) (547.89, 088.35) (545.39, 088.35) /HeBo . <|special_separator|> +(547.89, 080.02) (552.89, 080.02) (552.89, 088.35) (547.89, 088.35) /HeBo 1 <|special_separator|> +(552.89, 080.02) (557.90, 080.02) (557.90, 088.35) (552.89, 088.35) /HeBo 1 \ No newline at end of file diff --git a/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.line.txt b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.line.txt new file mode 100644 index 0000000..e573103 --- /dev/null +++ b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.line.txt @@ -0,0 +1,113 @@ +(063.41, 711.08) (102.09, 711.08) (102.09, 717.89) (063.41, 717.89) /T1_0 Invoice Date <|special_separator|> +(153.54, 711.08) (181.95, 711.08) (181.95, 717.89) (153.54, 717.89) /T1_0 Invoice # <|special_separator|> +(260.01, 711.08) (285.48, 711.08) (285.48, 717.89) (260.01, 717.89) /T1_0 Order # <|special_separator|> +(416.60, 711.08) (470.40, 711.08) (470.40, 717.89) (416.60, 717.89) /T1_0 Other References <|special_separator|> +(054.00, 658.22) (123.38, 658.22) (123.38, 665.78) (054.00, 665.78) /T1_1 Seller/Shipper <|special_separator|> +(139.00, 658.21) (160.36, 658.21) (160.36, 665.03) (139.00, 665.03) /T1_0 Name: <|special_separator|> +(139.00, 638.21) (166.35, 638.21) (166.35, 645.03) (139.00, 645.03) /T1_0 Address: <|special_separator|> +(054.00, 618.22) (095.15, 618.22) (095.15, 625.78) (054.00, 625.78) /T1_1 ultimate <|special_separator|> +(139.00, 618.21) (160.36, 618.21) (160.36, 625.03) (139.00, 625.03) /T1_0 Name: <|special_separator|> +(054.00, 607.62) (105.95, 607.62) (105.95, 615.18) (054.00, 615.18) /T1_1 conSignee <|special_separator|> +(139.00, 598.21) (166.35, 598.21) (166.35, 605.03) (139.00, 605.03) /T1_0 Address: <|special_separator|> +(139.00, 578.21) (155.67, 578.21) (155.67, 585.03) (139.00, 585.03) /T1_0 Type: <|special_separator|> +(139.00, 558.21) (160.36, 558.21) (160.36, 565.03) (139.00, 565.03) /T1_0 Name: <|special_separator|> +(054.00, 558.22) (083.94, 558.22) (083.94, 565.78) (054.00, 565.78) /T1_1 Buyer <|special_separator|> +(054.00, 548.70) (091.96, 548.70) (091.96, 555.56) (054.00, 555.56) /T1_2 If other than <|special_separator|> +(091.99, 548.64) (117.30, 548.64) (117.30, 554.84) (091.99, 554.84) /C0_0 ultimate <|special_separator|> +(054.00, 538.84) (083.65, 538.84) (083.65, 545.69) (054.00, 545.69) /T1_2 consignee <|special_separator|> +(139.00, 538.21) (166.35, 538.21) (166.35, 545.03) (139.00, 545.03) /T1_0 Address: <|special_separator|> +(054.00, 520.71) (097.04, 520.71) (097.04, 527.53) (054.00, 527.53) /T1_0 Port of Lading <|special_separator|> +(310.00, 520.71) (370.58, 520.71) (370.58, 527.53) (310.00, 527.53) /T1_0 Total No. Packages <|special_separator|> +(310.00, 504.71) (387.11, 504.71) (387.11, 511.53) (310.00, 511.53) /T1_0 Total Gross Weight (KG) <|special_separator|> +(054.00, 488.71) (108.52, 488.71) (108.52, 495.52) (054.00, 495.52) /T1_0 Exporting Carrier <|special_separator|> +(310.00, 488.71) (351.42, 488.71) (351.42, 495.52) (310.00, 495.52) /T1_0 Cubic Meters <|special_separator|> +(054.00, 472.71) (089.29, 472.71) (089.29, 479.52) (054.00, 479.52) /T1_0 Incoterms® <|special_separator|> +(310.00, 474.93) (367.02, 474.93) (367.02, 481.75) (310.00, 481.75) /T1_0 Marks & Numbers <|special_separator|> +(054.00, 456.70) (094.53, 456.70) (094.53, 463.52) (054.00, 463.52) /T1_0 Named Point <|special_separator|> +(054.00, 440.70) (095.66, 440.70) (095.66, 447.52) (054.00, 447.52) /T1_0 Terms of Sale <|special_separator|> +(054.00, 424.70) (106.27, 424.70) (106.27, 431.52) (054.00, 431.52) /T1_0 Currency of Sale <|special_separator|> +(069.31, 406.58) (299.56, 406.58) (299.56, 413.16) (069.31, 413.16) /C2_0 Complete & Accurate Commodity Description, USML Category or ECCN, <|special_separator|> +(077.64, 397.58) (289.25, 397.58) (289.25, 404.16) (077.64, 404.16) /C2_0 applicable (including model/serial number/ECCN/USML Category) <|special_separator|> +(311.17, 401.44) (385.05, 401.44) (385.05, 408.02) (311.17, 408.02) /C2_0 Country of Manufacture <|special_separator|> +(398.08, 405.94) (439.38, 405.94) (439.38, 412.52) (398.08, 412.52) /C2_0 Quantity/Unit <|special_separator|> +(439.39, 405.97) (441.54, 405.97) (441.54, 412.79) (439.39, 412.79) /T1_0 <|special_separator|> +(401.98, 396.94) (437.31, 396.94) (437.31, 403.52) (401.98, 403.52) /C2_0 of Measure <|special_separator|> +(461.60, 401.44) (492.21, 401.44) (492.21, 408.02) (461.60, 408.02) /C2_0 Unit Price <|special_separator|> +(521.22, 401.44) (537.37, 401.44) (537.37, 408.02) (521.22, 408.02) /C2_0 Total <|special_separator|> +(400.82, 192.95) (444.01, 192.95) (444.01, 199.77) (400.82, 199.77) /T1_0 Packing Costs <|special_separator|> +(404.15, 176.95) (444.01, 176.95) (444.01, 183.77) (404.15, 183.77) /T1_0 Freight Costs <|special_separator|> +(360.13, 160.95) (443.99, 160.95) (443.99, 167.76) (360.13, 167.76) /T1_0 Other Transportation Costs <|special_separator|> +(050.00, 145.16) (275.63, 145.16) (275.63, 151.99) (050.00, 151.99) /T1_3 It is hereby certified that this invoice shows the actual price of the goods <|special_separator|> +(050.00, 135.15) (273.41, 135.15) (273.41, 141.98) (050.00, 141.98) /T1_3 described, that no other invoice has been or will be issued, and that all <|special_separator|> +(050.00, 125.15) (148.11, 125.15) (148.11, 131.98) (050.00, 131.98) /T1_3 particulars are true and correct. <|special_separator|> +(415.28, 144.94) (444.01, 144.94) (444.01, 151.76) (415.28, 151.76) /T1_0 handling <|special_separator|> +(395.45, 128.94) (443.99, 128.94) (443.99, 135.75) (395.45, 135.75) /T1_0 Insurance Costs <|special_separator|> +(423.74, 112.94) (444.00, 112.94) (444.00, 119.75) (423.74, 119.75) /T1_0 Assists <|special_separator|> +(050.00, 098.16) (208.41, 098.16) (208.41, 104.97) (050.00, 104.97) /T1_0 SIGNATURE & STATUS OF AUThORIzED PERSON <|special_separator|> +(395.50, 096.93) (444.00, 096.93) (444.00, 103.75) (395.50, 103.75) /T1_0 Additional Fees <|special_separator|> +(398.38, 080.93) (444.00, 080.93) (444.00, 087.75) (398.38, 087.75) /T1_0 Duties & Taxes <|special_separator|> +(050.01, 066.16) (094.45, 066.16) (094.45, 072.97) (050.01, 072.97) /T1_0 PRINT NAME <|special_separator|> +(249.01, 066.16) (265.50, 066.16) (265.50, 072.97) (249.01, 072.97) /T1_0 DATE <|special_separator|> +(361.26, 065.13) (444.01, 065.13) (444.01, 071.75) (361.26, 071.75) /T1_1 total invoice value <|special_separator|> +(048.76, 046.04) (269.57, 046.04) (269.57, 052.89) (048.76, 052.89) /T1_2 "Incoterms" is a trademark of the International Chamber of Commerce. <|special_separator|> +(269.78, 046.02) (272.10, 046.02) (272.10, 053.68) (269.78, 053.68) /T1_4 <|special_separator|> +(050.00, 731.61) (348.94, 731.61) (348.94, 754.30) (050.00, 754.30) /T1_1 commercial invoice <|special_separator|> +(050.89, 196.90) (285.69, 196.90) (285.69, 202.53) (050.89, 202.53) /C2_2 These items are controlled by the U.S. government and authorized for export only to the <|special_separator|> +(050.89, 189.70) (279.68, 189.70) (279.68, 195.33) (050.89, 195.33) /C2_2 country of ultimate destination for use by the ultimate consignee or end-user(s) herein <|special_separator|> +(050.89, 182.50) (280.00, 182.50) (280.00, 188.13) (050.89, 188.13) /C2_3 identified. They may not be resold, transferred, or otherwise disposed of, to any other <|special_separator|> +(050.89, 175.30) (295.04, 175.30) (295.04, 180.93) (050.89, 180.93) /C2_3 country or to any person other than the authorized ultimate consignee or end-user(s), either <|special_separator|> +(050.89, 168.10) (279.65, 168.10) (279.65, 173.73) (050.89, 173.73) /C2_2 in their original form or after being incorporated into other items, without first obtaining <|special_separator|> +(050.89, 160.90) (292.68, 160.90) (292.68, 166.53) (050.89, 166.53) /C2_2 approval from the U.S. government or as otherwise authorized by U.S. law and regulations. <|special_separator|> +(053.60, 510.12) (115.45, 510.12) (115.45, 516.70) (053.60, 516.70) /C2_4 Country of Ultimate <|special_separator|> +(053.60, 501.72) (088.61, 501.72) (088.61, 508.30) (053.60, 508.30) /C2_4 Destination <|special_separator|> +(065.26, 693.04) (100.29, 693.04) (100.29, 701.36) (065.26, 701.36) /Helv 01/20/20 <|special_separator|> +(160.47, 693.04) (175.48, 693.04) (175.48, 701.36) (160.47, 701.36) /Helv 002 <|special_separator|> +(257.88, 693.04) (287.90, 693.04) (287.90, 701.36) (257.88, 701.36) /Helv 882991 <|special_separator|> +(442.71, 693.04) (445.71, 693.04) (445.71, 701.36) (442.71, 701.36) /Helv - <|special_separator|> +(170.87, 659.70) (233.90, 659.70) (233.90, 668.02) (170.87, 668.02) /Helv Goodwin Group <|special_separator|> +(170.87, 640.30) (314.94, 640.30) (314.94, 648.62) (170.87, 648.62) /Helv 9189 Elmwood St. Bronx, NY 10465 <|special_separator|> +(170.87, 619.95) (268.40, 619.95) (268.40, 628.28) (170.87, 628.28) /Helv Kerluke, Veum and Crist <|special_separator|> +(170.87, 599.55) (346.43, 599.55) (346.43, 607.88) (170.87, 607.88) /Helv 1499 W Cole Rd Fremont, Ohio(OH), 43420 <|special_separator|> +(170.87, 559.26) (268.40, 559.26) (268.40, 567.59) (170.87, 567.59) /Helv Kerluke, Veum and Crist <|special_separator|> +(170.87, 539.99) (346.43, 539.99) (346.43, 548.31) (170.87, 548.31) /Helv 1499 W Cole Rd Fremont, Ohio(OH), 43420 <|special_separator|> +(138.17, 521.15) (207.18, 521.15) (207.18, 529.48) (138.17, 529.48) /Helv New York Harbor <|special_separator|> +(138.17, 505.90) (156.67, 505.90) (156.67, 514.23) (138.17, 514.23) /Helv USA <|special_separator|> +(138.17, 489.90) (190.67, 489.90) (190.67, 498.23) (138.17, 498.23) /Helv Hintz-Raynor <|special_separator|> +(138.17, 442.47) (220.71, 442.47) (220.71, 450.79) (138.17, 450.79) /Helv Payment in Advance <|special_separator|> +(138.17, 426.33) (189.18, 426.33) (189.18, 434.65) (138.17, 434.65) /Helv US DOLLAR <|special_separator|> +(395.99, 521.15) (411.00, 521.15) (411.00, 529.48) (395.99, 529.48) /Helv 100 <|special_separator|> +(395.99, 505.90) (430.01, 505.90) (430.01, 514.23) (395.99, 514.23) /Helv 8600kgs <|special_separator|> +(395.99, 489.90) (423.51, 489.90) (423.51, 498.23) (395.99, 498.23) /Helv 170.29 <|special_separator|> +(052.00, 376.08) (295.60, 376.08) (295.60, 384.41) (052.00, 384.41) /Helv Original Honda Cover Set Left and Right For XRM 110 Œ Red <|special_separator|> +(338.74, 373.67) (357.24, 373.67) (357.24, 382.00) (338.74, 382.00) /Helv USA <|special_separator|> +(414.17, 373.67) (424.18, 373.67) (424.18, 382.00) (414.17, 382.00) /Helv 10 <|special_separator|> +(468.12, 373.73) (500.64, 373.73) (500.64, 382.05) (468.12, 382.05) /Helv $333.21 <|special_separator|> +(517.82, 373.73) (557.85, 373.73) (557.85, 382.05) (517.82, 382.05) /Helv $3,332.01 <|special_separator|> +(052.00, 340.15) (284.57, 340.15) (284.57, 348.48) (052.00, 348.48) /Helv Original Honda Cover Handle Front (Disk Brake) For Beat <|special_separator|> +(052.00, 331.83) (112.02, 331.83) (112.02, 340.15) (052.00, 340.15) /Helv Carb Version 1 <|special_separator|> +(338.74, 339.85) (357.24, 339.85) (357.24, 348.18) (338.74, 348.18) /Helv USA <|special_separator|> +(414.17, 339.85) (424.18, 339.85) (424.18, 348.18) (414.17, 348.18) /Helv 12 <|special_separator|> +(468.12, 339.80) (500.64, 339.80) (500.64, 348.12) (468.12, 348.12) /Helv $282.92 <|special_separator|> +(517.82, 339.80) (557.85, 339.80) (557.85, 348.12) (517.82, 348.12) /Helv $3,395.04 <|special_separator|> +(052.00, 304.22) (285.57, 304.22) (285.57, 312.55) (052.00, 312.55) /Helv Original Honda Cowl Under (Engine Cover) For Rs 125 Œ <|special_separator|> +(052.00, 295.90) (074.01, 295.90) (074.01, 304.22) (052.00, 304.22) /Helv Black <|special_separator|> +(338.74, 303.95) (357.24, 303.95) (357.24, 312.27) (338.74, 312.27) /Helv USA <|special_separator|> +(414.17, 303.95) (424.18, 303.95) (424.18, 312.27) (414.17, 312.27) /Helv 80 <|special_separator|> +(468.12, 303.86) (500.64, 303.86) (500.64, 312.19) (468.12, 312.19) /Helv $100.00 <|special_separator|> +(517.82, 303.86) (557.85, 303.86) (557.85, 312.19) (517.82, 312.19) /Helv $8,000.00 <|special_separator|> +(052.00, 267.29) (295.60, 267.29) (295.60, 275.61) (052.00, 275.61) /Helv Original Honda Cover Set Left and Right For XRM 110 Œ Red <|special_separator|> +(338.74, 266.85) (357.24, 266.85) (357.24, 275.17) (338.74, 275.17) /Helv USA <|special_separator|> +(414.17, 266.85) (424.18, 266.85) (424.18, 275.17) (414.17, 275.17) /Helv 10 <|special_separator|> +(473.12, 266.93) (500.64, 266.93) (500.64, 275.26) (473.12, 275.26) /Helv $10.73 <|special_separator|> +(525.33, 266.93) (557.85, 266.93) (557.85, 275.26) (525.33, 275.26) /Helv $107.03 <|special_separator|> +(052.00, 082.59) (103.15, 082.59) (103.15, 090.69) (052.00, 090.69) /Helv Jose S Lares <|special_separator|> +(249.24, 082.59) (283.36, 082.59) (283.36, 090.69) (249.24, 090.69) /Helv 01/20/20 <|special_separator|> +(535.38, 193.54) (557.90, 193.54) (557.90, 201.86) (535.38, 201.86) /Helv 12.23 <|special_separator|> +(530.38, 177.59) (557.90, 177.59) (557.90, 185.92) (530.38, 185.92) /Helv 881.21 <|special_separator|> +(540.38, 161.65) (557.90, 161.65) (557.90, 169.97) (540.38, 169.97) /Helv 0.00 <|special_separator|> +(540.38, 145.70) (557.90, 145.70) (557.90, 154.03) (540.38, 154.03) /Helv 0.00 <|special_separator|> +(535.38, 129.76) (557.90, 129.76) (557.90, 138.08) (535.38, 138.08) /Helv 33.11 <|special_separator|> +(540.38, 113.82) (557.90, 113.82) (557.90, 122.14) (540.38, 122.14) /Helv 0.00 <|special_separator|> +(535.38, 097.87) (557.90, 097.87) (557.90, 106.20) (535.38, 106.20) /Helv 88.21 <|special_separator|> +(535.38, 081.93) (557.90, 081.93) (557.90, 090.25) (535.38, 090.25) /Helv 73.00 <|special_separator|> +(512.86, 080.02) (557.90, 080.02) (557.90, 088.35) (512.86, 088.35) /HeBo $15,922.11 \ No newline at end of file diff --git a/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.word.txt b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.word.txt new file mode 100644 index 0000000..a27c984 --- /dev/null +++ b/tests/data/groundtruth/fillable_form.pdf.page_no_1.py.json.word.txt @@ -0,0 +1,352 @@ +(063.41, 711.08) (085.28, 711.08) (085.28, 717.89) (063.41, 717.89) /T1_0 Invoice <|special_separator|> +(087.51, 711.08) (102.09, 711.08) (102.09, 717.89) (087.51, 717.89) /T1_0 Date <|special_separator|> +(153.54, 711.08) (175.42, 711.08) (175.42, 717.89) (153.54, 717.89) /T1_0 Invoice <|special_separator|> +(177.64, 711.08) (181.95, 711.08) (181.95, 717.89) (177.64, 717.89) /T1_0 # <|special_separator|> +(260.01, 711.08) (278.94, 711.08) (278.94, 717.89) (260.01, 717.89) /T1_0 Order <|special_separator|> +(281.17, 711.08) (285.48, 711.08) (285.48, 717.89) (281.17, 717.89) /T1_0 # <|special_separator|> +(416.60, 711.08) (434.65, 711.08) (434.65, 717.89) (416.60, 717.89) /T1_0 Other <|special_separator|> +(436.87, 711.08) (470.40, 711.08) (470.40, 717.89) (436.87, 717.89) /T1_0 References <|special_separator|> +(054.00, 658.22) (123.38, 658.22) (123.38, 665.78) (054.00, 665.78) /T1_1 Seller/Shipper <|special_separator|> +(139.00, 658.21) (160.36, 658.21) (160.36, 665.03) (139.00, 665.03) /T1_0 Name: <|special_separator|> +(139.00, 638.21) (166.35, 638.21) (166.35, 645.03) (139.00, 645.03) /T1_0 Address: <|special_separator|> +(054.00, 618.22) (095.15, 618.22) (095.15, 625.78) (054.00, 625.78) /T1_1 ultimate <|special_separator|> +(139.00, 618.21) (160.36, 618.21) (160.36, 625.03) (139.00, 625.03) /T1_0 Name: <|special_separator|> +(054.00, 607.62) (105.95, 607.62) (105.95, 615.18) (054.00, 615.18) /T1_1 conSignee <|special_separator|> +(139.00, 598.21) (166.35, 598.21) (166.35, 605.03) (139.00, 605.03) /T1_0 Address: <|special_separator|> +(139.00, 578.21) (155.67, 578.21) (155.67, 585.03) (139.00, 585.03) /T1_0 Type: <|special_separator|> +(139.00, 558.21) (160.36, 558.21) (160.36, 565.03) (139.00, 565.03) /T1_0 Name: <|special_separator|> +(054.00, 558.22) (081.19, 558.22) (081.19, 565.78) (054.00, 565.78) /T1_1 Buyer <|special_separator|> +(054.00, 548.70) (057.58, 548.70) (057.58, 555.56) (054.00, 555.56) /T1_2 If <|special_separator|> +(059.68, 548.70) (074.81, 548.70) (074.81, 555.56) (059.68, 555.56) /T1_2 other <|special_separator|> +(076.90, 548.70) (089.90, 548.70) (089.90, 555.56) (076.90, 555.56) /T1_2 than <|special_separator|> +(091.99, 548.64) (115.66, 548.64) (115.66, 554.84) (091.99, 554.84) /C0_0 ultimate <|special_separator|> +(054.00, 538.84) (083.65, 538.84) (083.65, 545.69) (054.00, 545.69) /T1_2 consignee <|special_separator|> +(139.00, 538.21) (166.35, 538.21) (166.35, 545.03) (139.00, 545.03) /T1_0 Address: <|special_separator|> +(054.00, 520.71) (065.80, 520.71) (065.80, 527.53) (054.00, 527.53) /T1_0 Port <|special_separator|> +(068.02, 520.71) (073.98, 520.71) (073.98, 527.53) (068.02, 527.53) /T1_0 of <|special_separator|> +(076.21, 520.71) (097.04, 520.71) (097.04, 527.53) (076.21, 527.53) /T1_0 Lading <|special_separator|> +(310.00, 520.71) (324.71, 520.71) (324.71, 527.53) (310.00, 527.53) /T1_0 Total <|special_separator|> +(326.94, 520.71) (338.98, 520.71) (338.98, 527.53) (326.94, 527.53) /T1_0 No. <|special_separator|> +(341.21, 520.71) (370.58, 520.71) (370.58, 527.53) (341.21, 527.53) /T1_0 Packages <|special_separator|> +(310.00, 504.71) (324.71, 504.71) (324.71, 511.53) (310.00, 511.53) /T1_0 Total <|special_separator|> +(326.94, 504.71) (344.98, 504.71) (344.98, 511.53) (326.94, 511.53) /T1_0 Gross <|special_separator|> +(347.21, 504.71) (369.90, 504.71) (369.90, 511.53) (347.21, 511.53) /T1_0 Weight <|special_separator|> +(372.12, 504.71) (387.11, 504.71) (387.11, 511.53) (372.12, 511.53) /T1_0 (KG) <|special_separator|> +(054.00, 488.71) (084.08, 488.71) (084.08, 495.52) (054.00, 495.52) /T1_0 Exporting <|special_separator|> +(086.31, 488.71) (108.52, 488.71) (108.52, 495.52) (086.31, 495.52) /T1_0 Carrier <|special_separator|> +(310.00, 488.71) (328.07, 488.71) (328.07, 495.52) (310.00, 495.52) /T1_0 Cubic <|special_separator|> +(330.30, 488.71) (351.42, 488.71) (351.42, 495.52) (330.30, 495.52) /T1_0 Meters <|special_separator|> +(054.00, 472.71) (089.29, 472.71) (089.29, 479.52) (054.00, 479.52) /T1_0 Incoterms® <|special_separator|> +(310.00, 474.93) (329.32, 474.93) (329.32, 481.75) (310.00, 481.75) /T1_0 Marks <|special_separator|> +(331.55, 474.93) (336.42, 474.93) (336.42, 481.75) (331.55, 481.75) /T1_0 & <|special_separator|> +(338.64, 474.93) (367.02, 474.93) (367.02, 481.75) (338.64, 481.75) /T1_0 Numbers <|special_separator|> +(054.00, 456.70) (077.53, 456.70) (077.53, 463.52) (054.00, 463.52) /T1_0 Named <|special_separator|> +(079.76, 456.70) (094.53, 456.70) (094.53, 463.52) (079.76, 463.52) /T1_0 Point <|special_separator|> +(054.00, 440.70) (071.61, 440.70) (071.61, 447.52) (054.00, 447.52) /T1_0 Terms <|special_separator|> +(073.83, 440.70) (079.80, 440.70) (079.80, 447.52) (073.83, 447.52) /T1_0 of <|special_separator|> +(082.02, 440.70) (095.66, 440.70) (095.66, 447.52) (082.02, 447.52) /T1_0 Sale <|special_separator|> +(054.00, 424.70) (082.22, 424.70) (082.22, 431.52) (054.00, 431.52) /T1_0 Currency <|special_separator|> +(084.44, 424.70) (090.41, 424.70) (090.41, 431.52) (084.44, 431.52) /T1_0 of <|special_separator|> +(092.63, 424.70) (106.27, 424.70) (106.27, 431.52) (092.63, 431.52) /T1_0 Sale <|special_separator|> +(069.31, 406.58) (099.51, 406.58) (099.51, 413.16) (069.31, 413.16) /C2_0 Complete <|special_separator|> +(101.52, 406.58) (106.19, 406.58) (106.19, 413.16) (101.52, 413.16) /C2_0 & <|special_separator|> +(108.21, 406.58) (136.08, 406.58) (136.08, 413.16) (108.21, 413.16) /C2_0 Accurate <|special_separator|> +(138.09, 406.58) (173.76, 406.58) (173.76, 413.16) (138.09, 413.16) /C2_0 Commodity <|special_separator|> +(175.80, 406.58) (213.13, 406.58) (213.13, 413.16) (175.80, 413.16) /C2_0 Description, <|special_separator|> +(215.15, 406.58) (234.70, 406.58) (234.70, 413.16) (215.15, 413.16) /C2_0 USML <|special_separator|> +(236.72, 406.58) (265.37, 406.58) (265.37, 413.16) (236.72, 413.16) /C2_0 Category <|special_separator|> +(267.39, 406.58) (273.65, 406.58) (273.65, 413.16) (267.39, 413.16) /C2_0 or <|special_separator|> +(275.66, 406.58) (297.58, 406.58) (297.58, 413.16) (275.66, 413.16) /C2_0 ECCN, <|special_separator|> +(077.64, 397.58) (109.46, 397.58) (109.46, 404.16) (077.64, 404.16) /C2_0 applicable <|special_separator|> +(111.44, 397.58) (142.72, 397.58) (142.72, 404.16) (111.44, 404.16) /C2_0 (including <|special_separator|> +(144.74, 397.58) (184.09, 397.58) (184.09, 404.16) (144.74, 404.16) /C2_0 model/serial <|special_separator|> +(186.11, 397.58) (255.21, 397.58) (255.21, 404.16) (186.11, 404.16) /C2_0 number/ECCN/USML <|special_separator|> +(257.35, 397.58) (289.25, 397.58) (289.25, 404.16) (257.35, 404.16) /C2_0 Category) <|special_separator|> +(311.17, 401.44) (335.89, 401.44) (335.89, 408.02) (311.17, 408.02) /C2_0 Country <|special_separator|> +(337.91, 401.44) (343.78, 401.44) (343.78, 408.02) (337.91, 408.02) /C2_0 of <|special_separator|> +(345.80, 401.44) (385.05, 401.44) (385.05, 408.02) (345.80, 408.02) /C2_0 Manufacture <|special_separator|> +(398.08, 405.94) (439.38, 405.94) (439.38, 412.52) (398.08, 412.52) /C2_0 Quantity/Unit <|special_separator|> +(401.98, 396.94) (407.86, 396.94) (407.86, 403.52) (401.98, 403.52) /C2_0 of <|special_separator|> +(409.87, 396.94) (437.31, 396.94) (437.31, 403.52) (409.87, 403.52) /C2_0 Measure <|special_separator|> +(461.60, 401.44) (474.13, 401.44) (474.13, 408.02) (461.60, 408.02) /C2_0 Unit <|special_separator|> +(476.16, 401.44) (492.21, 401.44) (492.21, 408.02) (476.16, 408.02) /C2_0 Price <|special_separator|> +(521.22, 401.44) (537.37, 401.44) (537.37, 408.02) (521.22, 408.02) /C2_0 Total <|special_separator|> +(400.82, 192.95) (425.11, 192.95) (425.11, 199.77) (400.82, 199.77) /T1_0 Packing <|special_separator|> +(427.33, 192.95) (444.01, 192.95) (444.01, 199.77) (427.33, 199.77) /T1_0 Costs <|special_separator|> +(404.15, 176.95) (425.11, 176.95) (425.11, 183.77) (404.15, 183.77) /T1_0 Freight <|special_separator|> +(427.33, 176.95) (444.01, 176.95) (444.01, 183.77) (427.33, 183.77) /T1_0 Costs <|special_separator|> +(360.13, 160.95) (378.18, 160.95) (378.18, 167.76) (360.13, 167.76) /T1_0 Other <|special_separator|> +(380.40, 160.95) (425.09, 160.95) (425.09, 167.76) (380.40, 167.76) /T1_0 Transportation <|special_separator|> +(427.32, 160.95) (443.99, 160.95) (443.99, 167.76) (427.32, 167.76) /T1_0 Costs <|special_separator|> +(050.00, 145.16) (053.53, 145.16) (053.53, 151.99) (050.00, 151.99) /T1_3 It <|special_separator|> +(055.76, 145.16) (060.40, 145.16) (060.40, 151.99) (055.76, 151.99) /T1_3 is <|special_separator|> +(062.62, 145.16) (083.79, 145.16) (083.79, 151.99) (062.62, 151.99) /T1_3 hereby <|special_separator|> +(086.01, 145.16) (110.94, 145.16) (110.94, 151.99) (086.01, 151.99) /T1_3 certified <|special_separator|> +(113.16, 145.16) (124.62, 145.16) (124.62, 151.99) (113.16, 151.99) /T1_3 that <|special_separator|> +(126.84, 145.16) (137.02, 145.16) (137.02, 151.99) (126.84, 151.99) /T1_3 this <|special_separator|> +(139.25, 145.16) (161.09, 145.16) (161.09, 151.99) (139.25, 151.99) /T1_3 invoice <|special_separator|> +(163.32, 145.16) (182.04, 145.16) (182.04, 151.99) (163.32, 151.99) /T1_3 shows <|special_separator|> +(184.26, 145.16) (193.52, 145.16) (193.52, 151.99) (184.26, 151.99) /T1_3 the <|special_separator|> +(195.74, 145.16) (214.66, 145.16) (214.66, 151.99) (195.74, 151.99) /T1_3 actual <|special_separator|> +(216.89, 145.16) (232.34, 145.16) (232.34, 151.99) (216.89, 151.99) /T1_3 price <|special_separator|> +(234.57, 145.16) (240.54, 145.16) (240.54, 151.99) (234.57, 151.99) /T1_3 of <|special_separator|> +(242.77, 145.16) (252.02, 145.16) (252.02, 151.99) (242.77, 151.99) /T1_3 the <|special_separator|> +(254.25, 145.16) (273.47, 145.16) (273.47, 151.99) (254.25, 151.99) /T1_3 goods <|special_separator|> +(050.00, 135.15) (082.57, 135.15) (082.57, 141.98) (050.00, 141.98) /T1_3 described, <|special_separator|> +(084.79, 135.15) (096.25, 135.15) (096.25, 141.98) (084.79, 141.98) /T1_3 that <|special_separator|> +(098.47, 135.15) (106.19, 135.15) (106.19, 141.98) (098.47, 141.98) /T1_3 no <|special_separator|> +(108.41, 135.15) (124.23, 135.15) (124.23, 141.98) (108.41, 141.98) /T1_3 other <|special_separator|> +(126.46, 135.15) (148.30, 135.15) (148.30, 141.98) (126.46, 141.98) /T1_3 invoice <|special_separator|> +(150.53, 135.15) (161.23, 135.15) (161.23, 141.98) (150.53, 141.98) /T1_3 has <|special_separator|> +(163.46, 135.15) (178.93, 135.15) (178.93, 141.98) (163.46, 141.98) /T1_3 been <|special_separator|> +(181.16, 135.15) (187.57, 135.15) (187.57, 141.98) (181.16, 141.98) /T1_3 or <|special_separator|> +(189.80, 135.15) (200.27, 135.15) (200.27, 141.98) (189.80, 141.98) /T1_3 will <|special_separator|> +(202.49, 135.15) (210.32, 135.15) (210.32, 141.98) (202.49, 141.98) /T1_3 be <|special_separator|> +(212.55, 135.15) (233.72, 135.15) (233.72, 141.98) (212.55, 141.98) /T1_3 issued, <|special_separator|> +(235.94, 135.15) (247.91, 135.15) (247.91, 141.98) (235.94, 141.98) /T1_3 and <|special_separator|> +(250.14, 135.15) (261.59, 135.15) (261.59, 141.98) (250.14, 141.98) /T1_3 that <|special_separator|> +(263.82, 135.15) (271.25, 135.15) (271.25, 141.98) (263.82, 141.98) /T1_3 all <|special_separator|> +(050.00, 125.15) (082.53, 125.15) (082.53, 131.98) (050.00, 131.98) /T1_3 particulars <|special_separator|> +(084.76, 125.15) (094.79, 125.15) (094.79, 131.98) (084.76, 131.98) /T1_3 are <|special_separator|> +(097.02, 125.15) (108.52, 125.15) (108.52, 131.98) (097.02, 131.98) /T1_3 true <|special_separator|> +(110.75, 125.15) (122.72, 125.15) (122.72, 131.98) (110.75, 131.98) /T1_3 and <|special_separator|> +(124.95, 125.15) (148.11, 125.15) (148.11, 131.98) (124.95, 131.98) /T1_3 correct. <|special_separator|> +(415.28, 144.94) (444.01, 144.94) (444.01, 151.76) (415.28, 151.76) /T1_0 handling <|special_separator|> +(395.45, 128.94) (425.09, 128.94) (425.09, 135.75) (395.45, 135.75) /T1_0 Insurance <|special_separator|> +(427.32, 128.94) (443.99, 128.94) (443.99, 135.75) (427.32, 135.75) /T1_0 Costs <|special_separator|> +(423.74, 112.94) (444.00, 112.94) (444.00, 119.75) (423.74, 119.75) /T1_0 Assists <|special_separator|> +(050.00, 098.16) (088.53, 098.16) (088.53, 104.97) (050.00, 104.97) /T1_0 SIGNATURE <|special_separator|> +(090.76, 098.16) (095.62, 098.16) (095.62, 104.97) (090.76, 104.97) /T1_0 & <|special_separator|> +(097.85, 098.16) (121.88, 098.16) (121.88, 104.97) (097.85, 104.97) /T1_0 STATUS <|special_separator|> +(124.11, 098.16) (133.69, 098.16) (133.69, 104.97) (124.11, 104.97) /T1_0 OF <|special_separator|> +(135.91, 098.16) (178.94, 098.16) (178.94, 104.97) (135.91, 104.97) /T1_0 AUThORIzED <|special_separator|> +(181.16, 098.16) (208.41, 098.16) (208.41, 104.97) (181.16, 104.97) /T1_0 PERSON <|special_separator|> +(395.50, 096.93) (428.03, 096.93) (428.03, 103.75) (395.50, 103.75) /T1_0 Additional <|special_separator|> +(430.26, 096.93) (444.00, 096.93) (444.00, 103.75) (430.26, 103.75) /T1_0 Fees <|special_separator|> +(398.38, 080.93) (417.29, 080.93) (417.29, 087.75) (398.38, 087.75) /T1_0 Duties <|special_separator|> +(419.52, 080.93) (424.38, 080.93) (424.38, 087.75) (419.52, 087.75) /T1_0 & <|special_separator|> +(426.61, 080.93) (444.00, 080.93) (444.00, 087.75) (426.61, 087.75) /T1_0 Taxes <|special_separator|> +(050.01, 066.16) (068.60, 066.16) (068.60, 072.97) (050.01, 072.97) /T1_0 PRINT <|special_separator|> +(070.83, 066.16) (092.26, 066.16) (092.26, 072.97) (070.83, 072.97) /T1_0 NAME <|special_separator|> +(249.01, 066.16) (265.50, 066.16) (265.50, 072.97) (249.01, 072.97) /T1_0 DATE <|special_separator|> +(361.26, 065.13) (383.93, 065.13) (383.93, 071.75) (361.26, 071.75) /T1_1 total <|special_separator|> +(386.40, 065.13) (417.90, 065.13) (417.90, 071.75) (386.40, 071.75) /T1_1 invoice <|special_separator|> +(420.37, 065.13) (444.01, 065.13) (444.01, 071.75) (420.37, 071.75) /T1_1 value <|special_separator|> +(048.76, 046.04) (084.21, 046.04) (084.21, 052.89) (048.76, 052.89) /T1_2 "Incoterms" <|special_separator|> +(086.59, 046.04) (091.14, 046.04) (091.14, 052.89) (086.59, 052.89) /T1_2 is <|special_separator|> +(093.52, 046.04) (097.41, 046.04) (097.41, 052.89) (093.52, 052.89) /T1_2 a <|special_separator|> +(099.78, 046.04) (131.65, 046.04) (131.65, 052.89) (099.78, 052.89) /T1_2 trademark <|special_separator|> +(134.02, 046.04) (139.94, 046.04) (139.94, 052.89) (134.02, 052.89) /T1_2 of <|special_separator|> +(142.31, 046.04) (151.54, 046.04) (151.54, 052.89) (142.31, 052.89) /T1_2 the <|special_separator|> +(153.91, 046.04) (193.15, 046.04) (193.15, 052.89) (153.91, 052.89) /T1_2 International <|special_separator|> +(195.52, 046.04) (224.06, 046.04) (224.06, 052.89) (195.52, 052.89) /T1_2 Chamber <|special_separator|> +(226.43, 046.04) (232.35, 046.04) (232.35, 052.89) (226.43, 052.89) /T1_2 of <|special_separator|> +(234.72, 046.04) (269.57, 046.04) (269.57, 052.89) (234.72, 052.89) /T1_2 Commerce. <|special_separator|> +(050.00, 731.61) (227.19, 731.61) (227.19, 754.30) (050.00, 754.30) /T1_1 commercial <|special_separator|> +(237.82, 731.61) (348.94, 731.61) (348.94, 754.30) (237.82, 754.30) /T1_1 invoice <|special_separator|> +(050.89, 196.90) (067.56, 196.90) (067.56, 202.53) (050.89, 202.53) /C2_2 These <|special_separator|> +(069.23, 196.90) (083.56, 196.90) (083.56, 202.53) (069.23, 202.53) /C2_2 items <|special_separator|> +(085.23, 196.90) (093.90, 196.90) (093.90, 202.53) (085.23, 202.53) /C2_2 are <|special_separator|> +(095.57, 196.90) (121.58, 196.90) (121.58, 202.53) (095.57, 202.53) /C2_2 controlled <|special_separator|> +(123.25, 196.90) (129.58, 196.90) (129.58, 202.53) (123.25, 202.53) /C2_2 by <|special_separator|> +(131.25, 196.90) (139.59, 196.90) (139.59, 202.53) (131.25, 202.53) /C2_2 the <|special_separator|> +(141.26, 196.90) (152.94, 196.90) (152.94, 202.53) (141.26, 202.53) /C2_2 U.S. <|special_separator|> +(154.61, 196.90) (186.29, 196.90) (186.29, 202.53) (154.61, 202.53) /C2_2 government <|special_separator|> +(187.96, 196.90) (197.97, 196.90) (197.97, 202.53) (187.96, 202.53) /C2_2 and <|special_separator|> +(199.64, 196.90) (227.65, 196.90) (227.65, 202.53) (199.64, 202.53) /C2_2 authorized <|special_separator|> +(229.32, 196.90) (236.32, 196.90) (236.32, 202.53) (229.32, 202.53) /C2_2 for <|special_separator|> +(237.99, 196.90) (254.66, 196.90) (254.66, 202.53) (237.99, 202.53) /C2_2 export <|special_separator|> +(256.34, 196.90) (267.35, 196.90) (267.35, 202.53) (256.34, 202.53) /C2_2 only <|special_separator|> +(269.01, 196.90) (274.02, 196.90) (274.02, 202.53) (269.01, 202.53) /C2_2 to <|special_separator|> +(275.69, 196.90) (284.03, 196.90) (284.03, 202.53) (275.69, 202.53) /C2_2 the <|special_separator|> +(050.89, 189.70) (070.56, 189.70) (070.56, 195.33) (050.89, 195.33) /C2_2 country <|special_separator|> +(072.23, 189.70) (077.23, 189.70) (077.23, 195.33) (072.23, 195.33) /C2_2 of <|special_separator|> +(078.90, 189.70) (099.91, 189.70) (099.91, 195.33) (078.90, 195.33) /C2_2 ultimate <|special_separator|> +(101.58, 189.70) (130.59, 189.70) (130.59, 195.33) (101.58, 195.33) /C2_2 destination <|special_separator|> +(132.26, 189.70) (139.26, 189.70) (139.26, 195.33) (132.26, 195.33) /C2_2 for <|special_separator|> +(140.93, 189.70) (150.60, 189.70) (150.60, 195.33) (140.93, 195.33) /C2_2 use <|special_separator|> +(152.27, 189.70) (158.61, 189.70) (158.61, 195.33) (152.27, 195.33) /C2_2 by <|special_separator|> +(160.27, 189.70) (168.61, 189.70) (168.61, 195.33) (160.27, 195.33) /C2_2 the <|special_separator|> +(170.28, 189.70) (191.29, 189.70) (191.29, 195.33) (170.28, 195.33) /C2_2 ultimate <|special_separator|> +(192.96, 189.70) (220.30, 189.70) (220.30, 195.33) (192.96, 195.33) /C2_2 consignee <|special_separator|> +(222.00, 189.70) (227.33, 189.70) (227.33, 195.33) (222.00, 195.33) /C2_2 or <|special_separator|> +(229.00, 189.70) (259.67, 189.70) (259.67, 195.33) (229.00, 195.33) /C2_2 end-user(s) <|special_separator|> +(261.34, 189.70) (278.01, 189.70) (278.01, 195.33) (261.34, 195.33) /C2_3 herein <|special_separator|> +(050.89, 182.50) (076.57, 182.50) (076.57, 188.13) (050.89, 188.13) /C2_3 identified. <|special_separator|> +(079.90, 182.50) (093.24, 182.50) (093.24, 188.13) (079.90, 188.13) /C2_3 They <|special_separator|> +(094.91, 182.50) (106.24, 182.50) (106.24, 188.13) (094.91, 188.13) /C2_3 may <|special_separator|> +(107.91, 182.50) (116.25, 182.50) (116.25, 188.13) (107.91, 188.13) /C2_3 not <|special_separator|> +(117.92, 182.50) (124.59, 182.50) (124.59, 188.13) (117.92, 188.13) /C2_3 be <|special_separator|> +(126.26, 182.50) (144.27, 182.50) (144.27, 188.13) (126.26, 188.13) /C2_3 resold, <|special_separator|> +(145.93, 182.50) (176.61, 182.50) (176.61, 188.13) (145.93, 188.13) /C2_3 transferred, <|special_separator|> +(178.28, 182.50) (183.61, 182.50) (183.61, 188.13) (178.28, 188.13) /C2_3 or <|special_separator|> +(185.28, 182.50) (210.96, 182.50) (210.96, 188.13) (185.28, 188.13) /C2_3 otherwise <|special_separator|> +(212.62, 182.50) (236.64, 182.50) (236.64, 188.13) (212.62, 188.13) /C2_3 disposed <|special_separator|> +(238.30, 182.50) (244.98, 182.50) (244.98, 188.13) (238.30, 188.13) /C2_3 of, <|special_separator|> +(246.64, 182.50) (251.65, 182.50) (251.65, 188.13) (246.64, 188.13) /C2_3 to <|special_separator|> +(253.32, 182.50) (262.99, 182.50) (262.99, 188.13) (253.32, 188.13) /C2_3 any <|special_separator|> +(264.66, 182.50) (278.33, 182.50) (278.33, 188.13) (264.66, 188.13) /C2_3 other <|special_separator|> +(050.89, 175.30) (070.56, 175.30) (070.56, 180.93) (050.89, 180.93) /C2_3 country <|special_separator|> +(072.23, 175.30) (077.56, 175.30) (077.56, 180.93) (072.23, 180.93) /C2_3 or <|special_separator|> +(079.23, 175.30) (084.24, 175.30) (084.24, 180.93) (079.23, 180.93) /C2_3 to <|special_separator|> +(085.90, 175.30) (095.58, 175.30) (095.58, 180.93) (085.90, 180.93) /C2_3 any <|special_separator|> +(097.24, 175.30) (115.59, 175.30) (115.59, 180.93) (097.24, 180.93) /C2_3 person <|special_separator|> +(117.25, 175.30) (130.93, 175.30) (130.93, 180.93) (117.25, 180.93) /C2_3 other <|special_separator|> +(132.60, 175.30) (144.27, 175.30) (144.27, 180.93) (132.60, 180.93) /C2_3 than <|special_separator|> +(145.94, 175.30) (154.28, 175.30) (154.28, 180.93) (145.94, 180.93) /C2_3 the <|special_separator|> +(155.95, 175.30) (183.96, 175.30) (183.96, 180.93) (155.95, 180.93) /C2_3 authorized <|special_separator|> +(185.63, 175.30) (206.64, 175.30) (206.64, 180.93) (185.63, 180.93) /C2_3 ultimate <|special_separator|> +(208.30, 175.30) (235.65, 175.30) (235.65, 180.93) (208.30, 180.93) /C2_3 consignee <|special_separator|> +(237.32, 175.30) (242.65, 175.30) (242.65, 180.93) (237.32, 180.93) /C2_3 or <|special_separator|> +(244.32, 175.30) (276.68, 175.30) (276.68, 180.93) (244.32, 180.93) /C2_3 end-user(s), <|special_separator|> +(278.37, 175.30) (293.37, 175.30) (293.37, 180.93) (278.37, 180.93) /C2_2 either <|special_separator|> +(050.89, 168.10) (055.56, 168.10) (055.56, 173.73) (050.89, 173.73) /C2_2 in <|special_separator|> +(057.22, 168.10) (068.89, 168.10) (068.89, 173.73) (057.22, 173.73) /C2_2 their <|special_separator|> +(070.56, 168.10) (089.90, 168.10) (089.90, 173.73) (070.56, 173.73) /C2_2 original <|special_separator|> +(091.57, 168.10) (103.57, 168.10) (103.57, 173.73) (091.57, 173.73) /C2_2 form <|special_separator|> +(105.24, 168.10) (110.57, 168.10) (110.57, 173.73) (105.24, 173.73) /C2_2 or <|special_separator|> +(112.24, 168.10) (124.24, 168.10) (124.24, 173.73) (112.24, 173.73) /C2_2 after <|special_separator|> +(125.91, 168.10) (140.59, 168.10) (140.59, 173.73) (125.91, 173.73) /C2_2 being <|special_separator|> +(142.26, 168.10) (175.60, 168.10) (175.60, 173.73) (142.26, 173.73) /C2_2 incorporated <|special_separator|> +(177.27, 168.10) (186.94, 168.10) (186.94, 173.73) (177.27, 173.73) /C2_2 into <|special_separator|> +(188.61, 168.10) (202.29, 168.10) (202.29, 173.73) (188.61, 173.73) /C2_2 other <|special_separator|> +(203.95, 168.10) (219.96, 168.10) (219.96, 173.73) (203.95, 173.73) /C2_2 items, <|special_separator|> +(221.62, 168.10) (240.63, 168.10) (240.63, 173.73) (221.62, 173.73) /C2_2 without <|special_separator|> +(242.30, 168.10) (251.97, 168.10) (251.97, 173.73) (242.30, 173.73) /C2_2 first <|special_separator|> +(253.63, 168.10) (277.98, 168.10) (277.98, 173.73) (253.63, 173.73) /C2_2 obtaining <|special_separator|> +(050.89, 160.90) (073.90, 160.90) (073.90, 166.53) (050.89, 166.53) /C2_2 approval <|special_separator|> +(075.57, 160.90) (087.57, 160.90) (087.57, 166.53) (075.57, 166.53) /C2_2 from <|special_separator|> +(089.23, 160.90) (097.57, 160.90) (097.57, 166.53) (089.23, 166.53) /C2_2 the <|special_separator|> +(099.24, 160.90) (110.91, 160.90) (110.91, 166.53) (099.24, 166.53) /C2_2 U.S. <|special_separator|> +(112.58, 160.90) (144.26, 160.90) (144.26, 166.53) (112.58, 166.53) /C2_2 government <|special_separator|> +(145.93, 160.90) (151.26, 160.90) (151.26, 166.53) (145.93, 166.53) /C2_2 or <|special_separator|> +(152.93, 160.90) (159.27, 160.90) (159.27, 166.53) (152.93, 166.53) /C2_2 as <|special_separator|> +(160.93, 160.90) (186.61, 160.90) (186.61, 166.53) (160.93, 166.53) /C2_2 otherwise <|special_separator|> +(188.28, 160.90) (216.29, 160.90) (216.29, 166.53) (188.28, 166.53) /C2_2 authorized <|special_separator|> +(217.96, 160.90) (224.29, 160.90) (224.29, 166.53) (217.96, 166.53) /C2_2 by <|special_separator|> +(225.96, 160.90) (237.63, 160.90) (237.63, 166.53) (225.96, 166.53) /C2_2 U.S. <|special_separator|> +(239.30, 160.90) (248.30, 160.90) (248.30, 166.53) (239.30, 166.53) /C2_2 law <|special_separator|> +(249.97, 160.90) (259.98, 160.90) (259.98, 166.53) (249.97, 166.53) /C2_2 and <|special_separator|> +(261.64, 160.90) (292.68, 160.90) (292.68, 166.53) (261.64, 166.53) /C2_2 regulations. <|special_separator|> +(053.60, 510.12) (078.11, 510.12) (078.11, 516.70) (053.60, 516.70) /C2_4 Country <|special_separator|> +(080.05, 510.12) (085.89, 510.12) (085.89, 516.70) (080.05, 516.70) /C2_4 of <|special_separator|> +(087.84, 510.12) (113.51, 510.12) (113.51, 516.70) (087.84, 516.70) /C2_4 Ultimate <|special_separator|> +(053.60, 501.72) (088.61, 501.72) (088.61, 508.30) (053.60, 508.30) /C2_4 Destination <|special_separator|> +(065.26, 693.04) (100.29, 693.04) (100.29, 701.36) (065.26, 701.36) /Helv 01/20/20 <|special_separator|> +(160.47, 693.04) (175.48, 693.04) (175.48, 701.36) (160.47, 701.36) /Helv 002 <|special_separator|> +(257.88, 693.04) (287.90, 693.04) (287.90, 701.36) (257.88, 701.36) /Helv 882991 <|special_separator|> +(442.71, 693.04) (445.71, 693.04) (445.71, 701.36) (442.71, 701.36) /Helv - <|special_separator|> +(170.87, 659.70) (206.38, 659.70) (206.38, 668.02) (170.87, 668.02) /Helv Goodwin <|special_separator|> +(208.88, 659.70) (233.90, 659.70) (233.90, 668.02) (208.88, 668.02) /Helv Group <|special_separator|> +(170.87, 640.30) (190.88, 640.30) (190.88, 648.62) (170.87, 648.62) /Helv 9189 <|special_separator|> +(193.39, 640.30) (230.39, 640.30) (230.39, 648.62) (193.39, 648.62) /Helv Elmwood <|special_separator|> +(232.90, 640.30) (243.90, 640.30) (243.90, 648.62) (232.90, 648.62) /Helv St. <|special_separator|> +(246.41, 640.30) (272.42, 640.30) (272.42, 648.62) (246.41, 648.62) /Helv Bronx, <|special_separator|> +(274.92, 640.30) (287.42, 640.30) (287.42, 648.62) (274.92, 648.62) /Helv NY <|special_separator|> +(289.92, 640.30) (314.94, 640.30) (314.94, 648.62) (289.92, 648.62) /Helv 10465 <|special_separator|> +(170.87, 619.95) (203.88, 619.95) (203.88, 628.28) (170.87, 628.28) /Helv Kerluke, <|special_separator|> +(206.38, 619.95) (229.89, 619.95) (229.89, 628.28) (206.38, 628.28) /Helv Veum <|special_separator|> +(232.39, 619.95) (247.41, 619.95) (247.41, 628.28) (232.39, 628.28) /Helv and <|special_separator|> +(249.91, 619.95) (268.40, 619.95) (268.40, 628.28) (249.91, 628.28) /Helv Crist <|special_separator|> +(170.87, 599.55) (190.88, 599.55) (190.88, 607.88) (170.87, 607.88) /Helv 1499 <|special_separator|> +(193.39, 599.55) (222.89, 599.55) (222.89, 607.88) (193.39, 607.88) /Helv WCole <|special_separator|> +(225.39, 599.55) (236.89, 599.55) (236.89, 607.88) (225.39, 607.88) /Helv Rd <|special_separator|> +(239.39, 599.55) (275.40, 599.55) (275.40, 607.88) (239.39, 607.88) /Helv Fremont, <|special_separator|> +(277.91, 599.55) (318.91, 599.55) (318.91, 607.88) (277.91, 607.88) /Helv Ohio(OH), <|special_separator|> +(321.41, 599.55) (346.43, 599.55) (346.43, 607.88) (321.41, 607.88) /Helv 43420 <|special_separator|> +(170.87, 559.26) (203.88, 559.26) (203.88, 567.59) (170.87, 567.59) /Helv Kerluke, <|special_separator|> +(206.38, 559.26) (229.89, 559.26) (229.89, 567.59) (206.38, 567.59) /Helv Veum <|special_separator|> +(232.39, 559.26) (247.41, 559.26) (247.41, 567.59) (232.39, 567.59) /Helv and <|special_separator|> +(249.91, 559.26) (268.40, 559.26) (268.40, 567.59) (249.91, 567.59) /Helv Crist <|special_separator|> +(170.87, 539.99) (190.88, 539.99) (190.88, 548.31) (170.87, 548.31) /Helv 1499 <|special_separator|> +(193.39, 539.99) (222.89, 539.99) (222.89, 548.31) (193.39, 548.31) /Helv WCole <|special_separator|> +(225.39, 539.99) (236.89, 539.99) (236.89, 548.31) (225.39, 548.31) /Helv Rd <|special_separator|> +(239.39, 539.99) (275.40, 539.99) (275.40, 548.31) (239.39, 548.31) /Helv Fremont, <|special_separator|> +(277.91, 539.99) (318.91, 539.99) (318.91, 548.31) (277.91, 548.31) /Helv Ohio(OH), <|special_separator|> +(321.41, 539.99) (346.43, 539.99) (346.43, 548.31) (321.41, 548.31) /Helv 43420 <|special_separator|> +(138.17, 521.15) (156.17, 521.15) (156.17, 529.48) (138.17, 529.48) /Helv New <|special_separator|> +(158.67, 521.15) (177.17, 521.15) (177.17, 529.48) (158.67, 529.48) /Helv York <|special_separator|> +(179.67, 521.15) (207.18, 521.15) (207.18, 529.48) (179.67, 529.48) /Helv Harbor <|special_separator|> +(138.17, 505.90) (156.67, 505.90) (156.67, 514.23) (138.17, 514.23) /Helv USA <|special_separator|> +(138.17, 489.90) (190.67, 489.90) (190.67, 498.23) (138.17, 498.23) /Helv Hintz-Raynor <|special_separator|> +(138.17, 442.47) (173.68, 442.47) (173.68, 450.79) (138.17, 450.79) /Helv Payment <|special_separator|> +(176.18, 442.47) (183.18, 442.47) (183.18, 450.79) (176.18, 450.79) /Helv in <|special_separator|> +(185.69, 442.47) (220.71, 442.47) (220.71, 450.79) (185.69, 450.79) /Helv Advance <|special_separator|> +(138.17, 426.33) (150.67, 426.33) (150.67, 434.65) (138.17, 434.65) /Helv US <|special_separator|> +(153.17, 426.33) (189.18, 426.33) (189.18, 434.65) (153.17, 434.65) /Helv DOLLAR <|special_separator|> +(395.99, 521.15) (411.00, 521.15) (411.00, 529.48) (395.99, 529.48) /Helv 100 <|special_separator|> +(395.99, 505.90) (430.01, 505.90) (430.01, 514.23) (395.99, 514.23) /Helv 8600kgs <|special_separator|> +(395.99, 489.90) (423.51, 489.90) (423.51, 498.23) (395.99, 498.23) /Helv 170.29 <|special_separator|> +(052.00, 376.08) (083.01, 376.08) (083.01, 384.41) (052.00, 384.41) /Helv Original <|special_separator|> +(085.51, 376.08) (112.02, 376.08) (112.02, 384.41) (085.51, 384.41) /Helv Honda <|special_separator|> +(114.52, 376.08) (138.53, 376.08) (138.53, 384.41) (114.52, 384.41) /Helv Cover <|special_separator|> +(141.03, 376.08) (154.54, 376.08) (154.54, 384.41) (141.03, 384.41) /Helv Set <|special_separator|> +(157.04, 376.08) (172.05, 376.08) (172.05, 384.41) (157.04, 384.41) /Helv Left <|special_separator|> +(174.55, 376.08) (189.57, 376.08) (189.57, 384.41) (174.55, 384.41) /Helv and <|special_separator|> +(192.07, 376.08) (213.07, 376.08) (213.07, 384.41) (192.07, 384.41) /Helv Right <|special_separator|> +(215.58, 376.08) (229.08, 376.08) (229.08, 384.41) (215.58, 384.41) /Helv For <|special_separator|> +(231.58, 376.08) (251.58, 376.08) (251.58, 384.41) (231.58, 384.41) /Helv XRM <|special_separator|> +(254.08, 376.08) (269.09, 376.08) (269.09, 384.41) (254.08, 384.41) /Helv 110 <|special_separator|> +(271.59, 376.08) (295.60, 376.08) (295.60, 384.41) (271.59, 384.41) /Helv ŒRed <|special_separator|> +(338.74, 373.67) (357.24, 373.67) (357.24, 382.00) (338.74, 382.00) /Helv USA <|special_separator|> +(414.17, 373.67) (424.18, 373.67) (424.18, 382.00) (414.17, 382.00) /Helv 10 <|special_separator|> +(468.12, 373.73) (500.64, 373.73) (500.64, 382.05) (468.12, 382.05) /Helv $333.21 <|special_separator|> +(517.82, 373.73) (557.85, 373.73) (557.85, 382.05) (517.82, 382.05) /Helv $3,332.01 <|special_separator|> +(052.00, 340.15) (083.01, 340.15) (083.01, 348.48) (052.00, 348.48) /Helv Original <|special_separator|> +(085.51, 340.15) (112.02, 340.15) (112.02, 348.48) (085.51, 348.48) /Helv Honda <|special_separator|> +(114.52, 340.15) (138.53, 340.15) (138.53, 348.48) (114.52, 348.48) /Helv Cover <|special_separator|> +(141.03, 340.15) (169.54, 340.15) (169.54, 348.48) (141.03, 348.48) /Helv Handle <|special_separator|> +(172.04, 340.15) (193.05, 340.15) (193.05, 348.48) (172.04, 348.48) /Helv Front <|special_separator|> +(195.55, 340.15) (216.04, 340.15) (216.04, 348.48) (195.55, 348.48) /Helv (Disk <|special_separator|> +(218.55, 340.15) (245.05, 340.15) (245.05, 348.48) (218.55, 348.48) /Helv Brake) <|special_separator|> +(247.55, 340.15) (261.05, 340.15) (261.05, 348.48) (247.55, 348.48) /Helv For <|special_separator|> +(263.55, 340.15) (282.07, 340.15) (282.07, 348.48) (263.55, 348.48) /Helv Beat <|special_separator|> +(052.00, 331.83) (071.50, 331.83) (071.50, 340.15) (052.00, 340.15) /Helv Carb <|special_separator|> +(074.01, 331.83) (104.52, 331.83) (104.52, 340.15) (074.01, 340.15) /Helv Version <|special_separator|> +(107.02, 331.83) (112.02, 331.83) (112.02, 340.15) (107.02, 340.15) /Helv 1 <|special_separator|> +(338.74, 339.85) (357.24, 339.85) (357.24, 348.18) (338.74, 348.18) /Helv USA <|special_separator|> +(414.17, 339.85) (424.18, 339.85) (424.18, 348.18) (414.17, 348.18) /Helv 12 <|special_separator|> +(468.12, 339.80) (500.64, 339.80) (500.64, 348.12) (468.12, 348.12) /Helv $282.92 <|special_separator|> +(517.82, 339.80) (557.85, 339.80) (557.85, 348.12) (517.82, 348.12) /Helv $3,395.04 <|special_separator|> +(052.00, 304.22) (083.01, 304.22) (083.01, 312.55) (052.00, 312.55) /Helv Original <|special_separator|> +(085.51, 304.22) (112.02, 304.22) (112.02, 312.55) (085.51, 312.55) /Helv Honda <|special_separator|> +(114.52, 304.22) (134.52, 304.22) (134.52, 312.55) (114.52, 312.55) /Helv Cowl <|special_separator|> +(137.02, 304.22) (161.53, 304.22) (161.53, 312.55) (137.02, 312.55) /Helv Under <|special_separator|> +(164.03, 304.22) (195.05, 304.22) (195.05, 312.55) (164.03, 312.55) /Helv (Engine <|special_separator|> +(197.55, 304.22) (224.55, 304.22) (224.55, 312.55) (197.55, 312.55) /Helv Cover) <|special_separator|> +(227.05, 304.22) (240.55, 304.22) (240.55, 312.55) (227.05, 312.55) /Helv For <|special_separator|> +(243.05, 304.22) (254.05, 304.22) (254.05, 312.55) (243.05, 312.55) /Helv Rs <|special_separator|> +(256.55, 304.22) (283.07, 304.22) (283.07, 312.55) (256.55, 312.55) /Helv 125Œ <|special_separator|> +(052.00, 295.90) (074.01, 295.90) (074.01, 304.22) (052.00, 304.22) /Helv Black <|special_separator|> +(338.74, 303.95) (357.24, 303.95) (357.24, 312.27) (338.74, 312.27) /Helv USA <|special_separator|> +(414.17, 303.95) (424.18, 303.95) (424.18, 312.27) (414.17, 312.27) /Helv 80 <|special_separator|> +(468.12, 303.86) (500.64, 303.86) (500.64, 312.19) (468.12, 312.19) /Helv $100.00 <|special_separator|> +(517.82, 303.86) (557.85, 303.86) (557.85, 312.19) (517.82, 312.19) /Helv $8,000.00 <|special_separator|> +(052.00, 267.29) (083.01, 267.29) (083.01, 275.61) (052.00, 275.61) /Helv Original <|special_separator|> +(085.51, 267.29) (112.02, 267.29) (112.02, 275.61) (085.51, 275.61) /Helv Honda <|special_separator|> +(114.52, 267.29) (138.53, 267.29) (138.53, 275.61) (114.52, 275.61) /Helv Cover <|special_separator|> +(141.03, 267.29) (154.54, 267.29) (154.54, 275.61) (141.03, 275.61) /Helv Set <|special_separator|> +(157.04, 267.29) (172.05, 267.29) (172.05, 275.61) (157.04, 275.61) /Helv Left <|special_separator|> +(174.55, 267.29) (189.57, 267.29) (189.57, 275.61) (174.55, 275.61) /Helv and <|special_separator|> +(192.07, 267.29) (213.07, 267.29) (213.07, 275.61) (192.07, 275.61) /Helv Right <|special_separator|> +(215.58, 267.29) (229.08, 267.29) (229.08, 275.61) (215.58, 275.61) /Helv For <|special_separator|> +(231.58, 267.29) (251.58, 267.29) (251.58, 275.61) (231.58, 275.61) /Helv XRM <|special_separator|> +(254.08, 267.29) (269.09, 267.29) (269.09, 275.61) (254.08, 275.61) /Helv 110 <|special_separator|> +(271.59, 267.29) (295.60, 267.29) (295.60, 275.61) (271.59, 275.61) /Helv ŒRed <|special_separator|> +(338.74, 266.85) (357.24, 266.85) (357.24, 275.17) (338.74, 275.17) /Helv USA <|special_separator|> +(414.17, 266.85) (424.18, 266.85) (424.18, 275.17) (414.17, 275.17) /Helv 10 <|special_separator|> +(473.12, 266.93) (500.64, 266.93) (500.64, 275.26) (473.12, 275.26) /Helv $10.73 <|special_separator|> +(525.33, 266.93) (557.85, 266.93) (557.85, 275.26) (525.33, 275.26) /Helv $107.03 <|special_separator|> +(052.00, 082.59) (070.51, 082.59) (070.51, 090.69) (052.00, 090.69) /Helv Jose <|special_separator|> +(072.95, 082.59) (078.79, 082.59) (078.79, 090.69) (072.95, 090.69) /Helv S <|special_separator|> +(081.23, 082.59) (103.15, 082.59) (103.15, 090.69) (081.23, 090.69) /Helv Lares <|special_separator|> +(249.24, 082.59) (283.36, 082.59) (283.36, 090.69) (249.24, 090.69) /Helv 01/20/20 <|special_separator|> +(535.38, 193.54) (557.90, 193.54) (557.90, 201.86) (535.38, 201.86) /Helv 12.23 <|special_separator|> +(530.38, 177.59) (557.90, 177.59) (557.90, 185.92) (530.38, 185.92) /Helv 881.21 <|special_separator|> +(540.38, 161.65) (557.90, 161.65) (557.90, 169.97) (540.38, 169.97) /Helv 0.00 <|special_separator|> +(540.38, 145.70) (557.90, 145.70) (557.90, 154.03) (540.38, 154.03) /Helv 0.00 <|special_separator|> +(535.38, 129.76) (557.90, 129.76) (557.90, 138.08) (535.38, 138.08) /Helv 33.11 <|special_separator|> +(540.38, 113.82) (557.90, 113.82) (557.90, 122.14) (540.38, 122.14) /Helv 0.00 <|special_separator|> +(535.38, 097.87) (557.90, 097.87) (557.90, 106.20) (535.38, 106.20) /Helv 88.21 <|special_separator|> +(535.38, 081.93) (557.90, 081.93) (557.90, 090.25) (535.38, 090.25) /Helv 73.00 <|special_separator|> +(512.86, 080.02) (557.90, 080.02) (557.90, 088.35) (512.86, 088.35) /HeBo $15,922.11 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json index bae3ab6..1288df0 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json +++ b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json @@ -46307,238 +46307,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 1594, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1595, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 406.0, - "r_x1": 394.997, - "r_y1": 406.0, - "r_x2": 394.997, - "r_y2": 423.0, - "r_x3": 261.997, - "r_y3": 423.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "123456789", - "orig": "123456789", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1596, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 396.997, - "r_y0": 406.0, - "r_x1": 424.996, - "r_y1": 406.0, - "r_x2": 424.996, - "r_y2": 423.0, - "r_x3": 396.997, - "r_y3": 423.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "RT", - "orig": "RT", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1597, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 426.996, - "r_y0": 406.0, - "r_x1": 484.997, - "r_y1": 406.0, - "r_x2": 484.997, - "r_y2": 423.0, - "r_x3": 426.996, - "r_y3": 423.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "ABCD", - "orig": "ABCD", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1598, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 379.0, - "r_x1": 394.997, - "r_y1": 379.0, - "r_x2": 394.997, - "r_y2": 396.0, - "r_x3": 261.997, - "r_y3": 396.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1599, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 210.999, - "r_x1": 584.997, - "r_y1": 210.999, - "r_x2": 584.997, - "r_y2": 227.999, - "r_x3": 260.997, - "r_y3": 227.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "granville", - "orig": "granville", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1600, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 156.999, - "r_x1": 341.997, - "r_y1": 156.999, - "r_x2": 341.997, - "r_y2": 173.999, - "r_x3": 260.997, - "r_y3": 173.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 1601, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 129.999, - "r_x1": 431.997, - "r_y1": 129.999, - "r_x2": 431.997, - "r_y2": 146.999, - "r_x3": 260.997, - "r_y3": 146.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "word_cells": [ @@ -53849,180 +53617,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 252, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 253, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 406.0, - "r_x1": 484.997, - "r_y1": 406.0, - "r_x2": 484.997, - "r_y2": 423.0, - "r_x3": 261.997, - "r_y3": 423.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "123456789RTABCD", - "orig": "123456789RTABCD", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 254, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 379.0, - "r_x1": 394.997, - "r_y1": 379.0, - "r_x2": 394.997, - "r_y2": 396.0, - "r_x3": 261.997, - "r_y3": 396.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 255, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 210.999, - "r_x1": 584.997, - "r_y1": 210.999, - "r_x2": 584.997, - "r_y2": 227.999, - "r_x3": 260.997, - "r_y3": 227.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "granville", - "orig": "granville", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 256, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 156.999, - "r_x1": 341.997, - "r_y1": 156.999, - "r_x2": 341.997, - "r_y2": 173.999, - "r_x3": 260.997, - "r_y3": 173.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 257, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 129.999, - "r_x1": 431.997, - "r_y1": 129.999, - "r_x2": 431.997, - "r_y2": 146.999, - "r_x3": 260.997, - "r_y3": 146.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "textline_cells": [ @@ -55330,15 +54924,14 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ { - "index": 45, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, + "index": 0, "rect": { "r_x0": 495.0, "r_y0": 774.003, @@ -55350,168 +54943,12 @@ "r_y3": 789.001, "coord_origin": "BOTTOMLEFT" }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" + "widget_text": "/Off", + "widget_field_name": "form1[0].#pageSet[0].Page1[0].ClearData_FR[0]", + "widget_field_type": "/Btn" }, { - "index": 46, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 406.0, - "r_x1": 484.997, - "r_y1": 406.0, - "r_x2": 484.997, - "r_y2": 423.0, - "r_x3": 261.997, - "r_y3": 423.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "123456789RTABCD", - "orig": "123456789RTABCD", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 47, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 261.997, - "r_y0": 379.0, - "r_x1": 394.997, - "r_y1": 379.0, - "r_x2": 394.997, - "r_y2": 396.0, - "r_x3": 261.997, - "r_y3": 396.0, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 48, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 210.999, - "r_x1": 584.997, - "r_y1": 210.999, - "r_x2": 584.997, - "r_y2": 227.999, - "r_x3": 260.997, - "r_y3": 227.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "granville", - "orig": "granville", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 49, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 156.999, - "r_x1": 341.997, - "r_y1": 156.999, - "r_x2": 341.997, - "r_y2": 173.999, - "r_x3": 260.997, - "r_y3": 173.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - }, - { - "index": 50, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 260.997, - "r_y0": 129.999, - "r_x1": 431.997, - "r_y1": 129.999, - "r_x2": 431.997, - "r_y2": 146.999, - "r_x3": 260.997, - "r_y3": 146.999, - "coord_origin": "BOTTOMLEFT" - }, - "text": "", - "orig": "", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - } - ], - "has_chars": true, - "has_words": true, - "has_lines": true, - "widgets": [ - { - "index": 0, + "index": 1, "rect": { "r_x0": 260.997, "r_y0": 466.001, @@ -55527,7 +54964,7 @@ "widget_field_type": "/Tx" }, { - "index": 1, + "index": 2, "rect": { "r_x0": 260.997, "r_y0": 433.0, @@ -55542,64 +54979,75 @@ "widget_field_name": "form1[0].Page1[0].PartA[0].FirstName[0].FirstName[0]", "widget_field_type": "/Tx" }, - { - "index": 2, - "rect": { - "r_x0": 260.997, - "r_y0": 320.999, - "r_x1": 272.997, - "r_y1": 320.999, - "r_x2": 272.997, - "r_y2": 332.999, - "r_x3": 260.997, - "r_y3": 332.999, - "coord_origin": "BOTTOMLEFT" - } - }, { "index": 3, "rect": { - "r_x0": 329.998, - "r_y0": 320.999, - "r_x1": 341.998, - "r_y1": 320.999, - "r_x2": 341.998, - "r_y2": 332.999, - "r_x3": 329.998, - "r_y3": 332.999, + "r_x0": 261.997, + "r_y0": 406.0, + "r_x1": 394.997, + "r_y1": 406.0, + "r_x2": 394.997, + "r_y2": 423.0, + "r_x3": 261.997, + "r_y3": 423.0, "coord_origin": "BOTTOMLEFT" - } + }, + "widget_text": "123456789", + "widget_field_name": "form1[0].Page1[0].PartA[0].BusinessNumber[0].BusinessNumber[0].BusinessNumber_RT1[0]", + "widget_field_type": "/Tx" }, { "index": 4, "rect": { - "r_x0": 260.997, - "r_y0": 294.002, - "r_x1": 272.997, - "r_y1": 294.002, - "r_x2": 272.997, - "r_y2": 306.002, - "r_x3": 260.997, - "r_y3": 306.002, + "r_x0": 396.997, + "r_y0": 406.0, + "r_x1": 424.996, + "r_y1": 406.0, + "r_x2": 424.996, + "r_y2": 423.0, + "r_x3": 396.997, + "r_y3": 423.0, "coord_origin": "BOTTOMLEFT" - } + }, + "widget_text": "RT", + "widget_field_name": "form1[0].Page1[0].PartA[0].BusinessNumber[0].BusinessNumber[0].BusinessNumber_RT[0]", + "widget_field_type": "/Tx" }, { "index": 5, "rect": { - "r_x0": 329.998, - "r_y0": 294.002, - "r_x1": 341.998, - "r_y1": 294.002, - "r_x2": 341.998, - "r_y2": 306.002, - "r_x3": 329.998, - "r_y3": 306.002, + "r_x0": 426.996, + "r_y0": 406.0, + "r_x1": 484.997, + "r_y1": 406.0, + "r_x2": 484.997, + "r_y2": 423.0, + "r_x3": 426.996, + "r_y3": 423.0, "coord_origin": "BOTTOMLEFT" - } + }, + "widget_text": "ABCD", + "widget_field_name": "form1[0].Page1[0].PartA[0].BusinessNumber[0].BusinessNumber[0].BusinessNumber_RT2[0]", + "widget_field_type": "/Tx" }, { "index": 6, + "rect": { + "r_x0": 261.997, + "r_y0": 379.0, + "r_x1": 394.997, + "r_y1": 379.0, + "r_x2": 394.997, + "r_y2": 396.0, + "r_x3": 261.997, + "r_y3": 396.0, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "form1[0].Page1[0].PartA[0].NAS[0].RequestorNAS[0].NAS[0]", + "widget_field_type": "/Tx" + }, + { + "index": 7, "rect": { "r_x0": 260.997, "r_y0": 237.999, @@ -55615,7 +55063,24 @@ "widget_field_type": "/Tx" }, { - "index": 7, + "index": 8, + "rect": { + "r_x0": 260.997, + "r_y0": 210.999, + "r_x1": 584.997, + "r_y1": 210.999, + "r_x2": 584.997, + "r_y2": 227.999, + "r_x3": 260.997, + "r_y3": 227.999, + "coord_origin": "BOTTOMLEFT" + }, + "widget_text": "granville", + "widget_field_name": "form1[0].Page1[0].PartA[0].MailingAddress[0].City[0]", + "widget_field_type": "/Tx" + }, + { + "index": 9, "rect": { "r_x0": 261.997, "r_y0": 183.999, @@ -55629,6 +55094,38 @@ }, "widget_field_name": "form1[0].Page1[0].PartA[0].MailingAddress[0].Prov_DropDown[0]", "widget_field_type": "/Ch" + }, + { + "index": 10, + "rect": { + "r_x0": 260.997, + "r_y0": 156.999, + "r_x1": 341.997, + "r_y1": 156.999, + "r_x2": 341.997, + "r_y2": 173.999, + "r_x3": 260.997, + "r_y3": 173.999, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "form1[0].Page1[0].PartA[0].MailingAddress[0].PostalCode_ZIP[0]", + "widget_field_type": "/Tx" + }, + { + "index": 11, + "rect": { + "r_x0": 260.997, + "r_y0": 129.999, + "r_x1": 431.997, + "r_y1": 129.999, + "r_x2": 431.997, + "r_y2": 146.999, + "r_x3": 260.997, + "r_y3": 146.999, + "coord_origin": "BOTTOMLEFT" + }, + "widget_field_name": "form1[0].Page1[0].PartA[0].MailingAddress[0].Country[0]", + "widget_field_type": "/Tx" } ], "hyperlinks": [ diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.char.txt b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.char.txt index 64fbab8..f79f186 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.char.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.char.txt @@ -1591,12 +1591,4 @@ (434.43, 019.46) (438.88, 019.46) (438.88, 026.91) (434.43, 026.91) /TT2 d <|special_separator|> (438.88, 019.46) (443.33, 019.46) (443.33, 026.91) (438.88, 026.91) /TT2 e <|special_separator|> (443.33, 019.46) (445.55, 019.46) (445.55, 026.91) (443.33, 026.91) /TT2 <|special_separator|> -(445.55, 019.46) (450.00, 019.46) (450.00, 026.91) (445.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off <|special_separator|> -(262.00, 406.00) (395.00, 406.00) (395.00, 423.00) (262.00, 423.00) Form-font 123456789 <|special_separator|> -(397.00, 406.00) (425.00, 406.00) (425.00, 423.00) (397.00, 423.00) Form-font RT <|special_separator|> -(427.00, 406.00) (485.00, 406.00) (485.00, 423.00) (427.00, 423.00) Form-font ABCD <|special_separator|> -(262.00, 379.00) (395.00, 379.00) (395.00, 396.00) (262.00, 396.00) Form-font <|special_separator|> -(261.00, 211.00) (585.00, 211.00) (585.00, 228.00) (261.00, 228.00) Form-font granville <|special_separator|> -(261.00, 157.00) (342.00, 157.00) (342.00, 174.00) (261.00, 174.00) Form-font <|special_separator|> -(261.00, 130.00) (432.00, 130.00) (432.00, 147.00) (261.00, 147.00) Form-font \ No newline at end of file +(445.55, 019.46) (450.00, 019.46) (450.00, 026.91) (445.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.line.txt b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.line.txt index 4087d23..a9a1f02 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.line.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.line.txt @@ -42,10 +42,4 @@ (199.78, 077.11) (214.22, 077.11) (214.22, 086.42) (199.78, 086.42) /TT2 NC <|special_separator|> (021.00, 019.09) (074.35, 019.09) (074.35, 026.54) (021.00, 026.54) /TT2 GST495 F (24) <|special_separator|> (246.21, 019.09) (365.79, 019.09) (365.79, 026.54) (246.21, 026.54) /TT2 (This form is available in English.) <|special_separator|> -(406.86, 019.46) (450.00, 019.46) (450.00, 026.91) (406.86, 026.91) /TT2 Page 1 de 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off <|special_separator|> -(262.00, 406.00) (485.00, 406.00) (485.00, 423.00) (262.00, 423.00) Form-font 123456789RTABCD <|special_separator|> -(262.00, 379.00) (395.00, 379.00) (395.00, 396.00) (262.00, 396.00) Form-font <|special_separator|> -(261.00, 211.00) (585.00, 211.00) (585.00, 228.00) (261.00, 228.00) Form-font granville <|special_separator|> -(261.00, 157.00) (342.00, 157.00) (342.00, 174.00) (261.00, 174.00) Form-font <|special_separator|> -(261.00, 130.00) (432.00, 130.00) (432.00, 147.00) (261.00, 147.00) Form-font \ No newline at end of file +(406.86, 019.46) (450.00, 019.46) (450.00, 026.91) (406.86, 026.91) /TT2 Page 1 de 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.word.txt b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.word.txt index 0db1662..691eea9 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.word.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_1.py.json.word.txt @@ -249,10 +249,4 @@ (406.86, 019.46) (425.53, 019.46) (425.53, 026.91) (406.86, 026.91) /TT2 Page <|special_separator|> (427.76, 019.46) (432.21, 019.46) (432.21, 026.91) (427.76, 026.91) /TT2 1 <|special_separator|> (434.43, 019.46) (443.33, 019.46) (443.33, 026.91) (434.43, 026.91) /TT2 de <|special_separator|> -(445.55, 019.46) (450.00, 019.46) (450.00, 026.91) (445.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off <|special_separator|> -(262.00, 406.00) (485.00, 406.00) (485.00, 423.00) (262.00, 423.00) Form-font 123456789RTABCD <|special_separator|> -(262.00, 379.00) (395.00, 379.00) (395.00, 396.00) (262.00, 396.00) Form-font <|special_separator|> -(261.00, 211.00) (585.00, 211.00) (585.00, 228.00) (261.00, 228.00) Form-font granville <|special_separator|> -(261.00, 157.00) (342.00, 157.00) (342.00, 174.00) (261.00, 174.00) Form-font <|special_separator|> -(261.00, 130.00) (432.00, 130.00) (432.00, 147.00) (261.00, 147.00) Form-font \ No newline at end of file +(445.55, 019.46) (450.00, 019.46) (450.00, 026.91) (445.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json index 9510503..7d1902e 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json +++ b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json @@ -30674,35 +30674,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 1056, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "word_cells": [ @@ -35664,35 +35635,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 171, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "textline_cells": [ @@ -36623,15 +36565,14 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ { - "index": 32, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, + "index": 0, "rect": { "r_x0": 495.0, "r_y0": 774.003, @@ -36643,23 +36584,12 @@ "r_y3": 789.001, "coord_origin": "BOTTOMLEFT" }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - } - ], - "has_chars": true, - "has_words": true, - "has_lines": true, - "widgets": [ + "widget_text": "/Off", + "widget_field_name": "form1[0].#pageSet[0].Page1[1].ClearData_FR[0]", + "widget_field_type": "/Btn" + }, { - "index": 0, + "index": 1, "rect": { "r_x0": 260.997, "r_y0": 685.0, @@ -36675,7 +36605,7 @@ "widget_field_type": "/Tx" }, { - "index": 1, + "index": 2, "rect": { "r_x0": 260.997, "r_y0": 658.0, @@ -36691,7 +36621,7 @@ "widget_field_type": "/Tx" }, { - "index": 2, + "index": 3, "rect": { "r_x0": 261.997, "r_y0": 631.0, @@ -36707,7 +36637,7 @@ "widget_field_type": "/Ch" }, { - "index": 3, + "index": 4, "rect": { "r_x0": 260.997, "r_y0": 604.0, @@ -36723,7 +36653,7 @@ "widget_field_type": "/Tx" }, { - "index": 4, + "index": 5, "rect": { "r_x0": 260.997, "r_y0": 577.0, @@ -36739,7 +36669,7 @@ "widget_field_type": "/Tx" }, { - "index": 5, + "index": 6, "rect": { "r_x0": 261.997, "r_y0": 484.001, @@ -36755,7 +36685,7 @@ "widget_field_type": "/Tx" }, { - "index": 6, + "index": 7, "rect": { "r_x0": 261.997, "r_y0": 408.999, @@ -36771,7 +36701,7 @@ "widget_field_type": "/Tx" }, { - "index": 7, + "index": 8, "rect": { "r_x0": 261.997, "r_y0": 334.0, diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.char.txt b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.char.txt index 68c6e7f..4ed941d 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.char.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.char.txt @@ -1053,5 +1053,4 @@ (575.43, 019.46) (579.88, 019.46) (579.88, 026.91) (575.43, 026.91) /TT2 d <|special_separator|> (579.88, 019.46) (584.33, 019.46) (584.33, 026.91) (579.88, 026.91) /TT2 e <|special_separator|> (584.33, 019.46) (586.55, 019.46) (586.55, 026.91) (584.33, 026.91) /TT2 <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.line.txt b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.line.txt index 7ce9a6d..d3312f2 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.line.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.line.txt @@ -29,5 +29,4 @@ (487.09, 312.58) (581.28, 312.58) (581.28, 321.89) (487.09, 321.89) /TT2 date de retrait d'une <|special_separator|> (035.00, 301.58) (130.04, 301.58) (130.04, 310.89) (035.00, 310.89) /TT2 province participante. <|special_separator|> (021.00, 019.09) (074.35, 019.09) (074.35, 026.54) (021.00, 026.54) /TT2 GST495 F (24) <|special_separator|> -(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 2 de 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 2 de 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.word.txt b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.word.txt index a8b67a2..471a1a4 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.word.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_2.py.json.word.txt @@ -168,5 +168,4 @@ (547.86, 019.46) (566.53, 019.46) (566.53, 026.91) (547.86, 026.91) /TT2 Page <|special_separator|> (568.76, 019.46) (573.21, 019.46) (573.21, 026.91) (568.76, 026.91) /TT2 2 <|special_separator|> (575.43, 019.46) (584.33, 019.46) (584.33, 026.91) (575.43, 026.91) /TT2 de <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json index 75d6112..61f0687 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json +++ b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json @@ -24903,35 +24903,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 857, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "word_cells": [ @@ -30038,35 +30009,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 176, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "textline_cells": [ @@ -31954,15 +31896,14 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ { - "index": 65, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, + "index": 0, "rect": { "r_x0": 495.0, "r_y0": 774.003, @@ -31974,23 +31915,12 @@ "r_y3": 789.001, "coord_origin": "BOTTOMLEFT" }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - } - ], - "has_chars": true, - "has_words": true, - "has_lines": true, - "widgets": [ + "widget_text": "/Off", + "widget_field_name": "form1[0].#pageSet[0].Page1[2].ClearData_FR[0]", + "widget_field_type": "/Btn" + }, { - "index": 0, + "index": 1, "rect": { "r_x0": 48.999, "r_y0": 601.001, @@ -32006,7 +31936,7 @@ "widget_field_type": "/Tx" }, { - "index": 1, + "index": 2, "rect": { "r_x0": 105.998, "r_y0": 601.001, @@ -32022,7 +31952,7 @@ "widget_field_type": "/Tx" }, { - "index": 2, + "index": 3, "rect": { "r_x0": 165.999, "r_y0": 601.001, @@ -32038,7 +31968,7 @@ "widget_field_type": "/Tx" }, { - "index": 3, + "index": 4, "rect": { "r_x0": 270.997, "r_y0": 601.001, @@ -32054,7 +31984,7 @@ "widget_field_type": "/Tx" }, { - "index": 4, + "index": 5, "rect": { "r_x0": 330.998, "r_y0": 601.001, @@ -32070,7 +32000,7 @@ "widget_field_type": "/Tx" }, { - "index": 5, + "index": 6, "rect": { "r_x0": 498.999, "r_y0": 601.001, @@ -32086,7 +32016,7 @@ "widget_field_type": "/Tx" }, { - "index": 6, + "index": 7, "rect": { "r_x0": 48.999, "r_y0": 577.0, @@ -32102,7 +32032,7 @@ "widget_field_type": "/Tx" }, { - "index": 7, + "index": 8, "rect": { "r_x0": 105.998, "r_y0": 577.0, @@ -32118,7 +32048,7 @@ "widget_field_type": "/Tx" }, { - "index": 8, + "index": 9, "rect": { "r_x0": 165.999, "r_y0": 577.0, @@ -32134,7 +32064,7 @@ "widget_field_type": "/Tx" }, { - "index": 9, + "index": 10, "rect": { "r_x0": 270.997, "r_y0": 577.0, @@ -32150,7 +32080,7 @@ "widget_field_type": "/Tx" }, { - "index": 10, + "index": 11, "rect": { "r_x0": 330.998, "r_y0": 577.0, @@ -32166,7 +32096,7 @@ "widget_field_type": "/Tx" }, { - "index": 11, + "index": 12, "rect": { "r_x0": 498.999, "r_y0": 577.0, @@ -32182,7 +32112,7 @@ "widget_field_type": "/Tx" }, { - "index": 12, + "index": 13, "rect": { "r_x0": 48.999, "r_y0": 552.999, @@ -32198,7 +32128,7 @@ "widget_field_type": "/Tx" }, { - "index": 13, + "index": 14, "rect": { "r_x0": 105.998, "r_y0": 552.999, @@ -32214,7 +32144,7 @@ "widget_field_type": "/Tx" }, { - "index": 14, + "index": 15, "rect": { "r_x0": 165.999, "r_y0": 552.999, @@ -32230,7 +32160,7 @@ "widget_field_type": "/Tx" }, { - "index": 15, + "index": 16, "rect": { "r_x0": 270.997, "r_y0": 552.999, @@ -32246,7 +32176,7 @@ "widget_field_type": "/Tx" }, { - "index": 16, + "index": 17, "rect": { "r_x0": 330.998, "r_y0": 552.999, @@ -32262,7 +32192,7 @@ "widget_field_type": "/Tx" }, { - "index": 17, + "index": 18, "rect": { "r_x0": 498.999, "r_y0": 552.999, @@ -32278,7 +32208,7 @@ "widget_field_type": "/Tx" }, { - "index": 18, + "index": 19, "rect": { "r_x0": 48.999, "r_y0": 529.001, @@ -32294,7 +32224,7 @@ "widget_field_type": "/Tx" }, { - "index": 19, + "index": 20, "rect": { "r_x0": 105.998, "r_y0": 529.001, @@ -32310,7 +32240,7 @@ "widget_field_type": "/Tx" }, { - "index": 20, + "index": 21, "rect": { "r_x0": 165.999, "r_y0": 529.001, @@ -32326,7 +32256,7 @@ "widget_field_type": "/Tx" }, { - "index": 21, + "index": 22, "rect": { "r_x0": 270.997, "r_y0": 529.001, @@ -32342,7 +32272,7 @@ "widget_field_type": "/Tx" }, { - "index": 22, + "index": 23, "rect": { "r_x0": 330.998, "r_y0": 529.001, @@ -32358,7 +32288,7 @@ "widget_field_type": "/Tx" }, { - "index": 23, + "index": 24, "rect": { "r_x0": 498.999, "r_y0": 529.001, @@ -32374,7 +32304,7 @@ "widget_field_type": "/Tx" }, { - "index": 24, + "index": 25, "rect": { "r_x0": 48.999, "r_y0": 505.0, @@ -32390,7 +32320,7 @@ "widget_field_type": "/Tx" }, { - "index": 25, + "index": 26, "rect": { "r_x0": 105.998, "r_y0": 505.0, @@ -32406,7 +32336,7 @@ "widget_field_type": "/Tx" }, { - "index": 26, + "index": 27, "rect": { "r_x0": 165.999, "r_y0": 505.0, @@ -32422,7 +32352,7 @@ "widget_field_type": "/Tx" }, { - "index": 27, + "index": 28, "rect": { "r_x0": 270.997, "r_y0": 505.0, @@ -32438,7 +32368,7 @@ "widget_field_type": "/Tx" }, { - "index": 28, + "index": 29, "rect": { "r_x0": 330.998, "r_y0": 505.0, @@ -32454,7 +32384,7 @@ "widget_field_type": "/Tx" }, { - "index": 29, + "index": 30, "rect": { "r_x0": 498.999, "r_y0": 505.0, @@ -32470,7 +32400,7 @@ "widget_field_type": "/Tx" }, { - "index": 30, + "index": 31, "rect": { "r_x0": 48.999, "r_y0": 480.999, @@ -32486,7 +32416,7 @@ "widget_field_type": "/Tx" }, { - "index": 31, + "index": 32, "rect": { "r_x0": 105.998, "r_y0": 480.999, @@ -32502,7 +32432,7 @@ "widget_field_type": "/Tx" }, { - "index": 32, + "index": 33, "rect": { "r_x0": 165.999, "r_y0": 480.999, @@ -32518,7 +32448,7 @@ "widget_field_type": "/Tx" }, { - "index": 33, + "index": 34, "rect": { "r_x0": 270.997, "r_y0": 480.999, @@ -32534,7 +32464,7 @@ "widget_field_type": "/Tx" }, { - "index": 34, + "index": 35, "rect": { "r_x0": 330.998, "r_y0": 480.999, @@ -32550,7 +32480,7 @@ "widget_field_type": "/Tx" }, { - "index": 35, + "index": 36, "rect": { "r_x0": 498.999, "r_y0": 480.999, @@ -32566,7 +32496,7 @@ "widget_field_type": "/Tx" }, { - "index": 36, + "index": 37, "rect": { "r_x0": 48.999, "r_y0": 457.001, @@ -32582,7 +32512,7 @@ "widget_field_type": "/Tx" }, { - "index": 37, + "index": 38, "rect": { "r_x0": 105.998, "r_y0": 457.001, @@ -32598,7 +32528,7 @@ "widget_field_type": "/Tx" }, { - "index": 38, + "index": 39, "rect": { "r_x0": 165.999, "r_y0": 457.001, @@ -32614,7 +32544,7 @@ "widget_field_type": "/Tx" }, { - "index": 39, + "index": 40, "rect": { "r_x0": 270.997, "r_y0": 457.001, @@ -32630,7 +32560,7 @@ "widget_field_type": "/Tx" }, { - "index": 40, + "index": 41, "rect": { "r_x0": 330.998, "r_y0": 457.001, @@ -32646,7 +32576,7 @@ "widget_field_type": "/Tx" }, { - "index": 41, + "index": 42, "rect": { "r_x0": 498.999, "r_y0": 457.001, @@ -32662,7 +32592,7 @@ "widget_field_type": "/Tx" }, { - "index": 42, + "index": 43, "rect": { "r_x0": 48.999, "r_y0": 433.0, @@ -32678,7 +32608,7 @@ "widget_field_type": "/Tx" }, { - "index": 43, + "index": 44, "rect": { "r_x0": 105.998, "r_y0": 433.0, @@ -32694,7 +32624,7 @@ "widget_field_type": "/Tx" }, { - "index": 44, + "index": 45, "rect": { "r_x0": 165.999, "r_y0": 433.0, @@ -32710,7 +32640,7 @@ "widget_field_type": "/Tx" }, { - "index": 45, + "index": 46, "rect": { "r_x0": 270.997, "r_y0": 433.0, @@ -32726,7 +32656,7 @@ "widget_field_type": "/Tx" }, { - "index": 46, + "index": 47, "rect": { "r_x0": 330.998, "r_y0": 433.0, @@ -32742,7 +32672,7 @@ "widget_field_type": "/Tx" }, { - "index": 47, + "index": 48, "rect": { "r_x0": 498.999, "r_y0": 433.0, @@ -32758,7 +32688,7 @@ "widget_field_type": "/Tx" }, { - "index": 48, + "index": 49, "rect": { "r_x0": 48.999, "r_y0": 408.999, @@ -32774,7 +32704,7 @@ "widget_field_type": "/Tx" }, { - "index": 49, + "index": 50, "rect": { "r_x0": 105.998, "r_y0": 408.999, @@ -32790,7 +32720,7 @@ "widget_field_type": "/Tx" }, { - "index": 50, + "index": 51, "rect": { "r_x0": 165.999, "r_y0": 408.999, @@ -32806,7 +32736,7 @@ "widget_field_type": "/Tx" }, { - "index": 51, + "index": 52, "rect": { "r_x0": 270.997, "r_y0": 408.999, @@ -32822,7 +32752,7 @@ "widget_field_type": "/Tx" }, { - "index": 52, + "index": 53, "rect": { "r_x0": 330.998, "r_y0": 408.999, @@ -32838,7 +32768,7 @@ "widget_field_type": "/Tx" }, { - "index": 53, + "index": 54, "rect": { "r_x0": 498.999, "r_y0": 408.999, @@ -32854,7 +32784,7 @@ "widget_field_type": "/Tx" }, { - "index": 54, + "index": 55, "rect": { "r_x0": 48.999, "r_y0": 385.001, @@ -32870,7 +32800,7 @@ "widget_field_type": "/Tx" }, { - "index": 55, + "index": 56, "rect": { "r_x0": 105.998, "r_y0": 385.001, @@ -32886,7 +32816,7 @@ "widget_field_type": "/Tx" }, { - "index": 56, + "index": 57, "rect": { "r_x0": 165.999, "r_y0": 385.001, @@ -32902,7 +32832,7 @@ "widget_field_type": "/Tx" }, { - "index": 57, + "index": 58, "rect": { "r_x0": 270.997, "r_y0": 385.001, @@ -32918,7 +32848,7 @@ "widget_field_type": "/Tx" }, { - "index": 58, + "index": 59, "rect": { "r_x0": 330.998, "r_y0": 385.001, @@ -32934,7 +32864,7 @@ "widget_field_type": "/Tx" }, { - "index": 59, + "index": 60, "rect": { "r_x0": 498.999, "r_y0": 385.001, @@ -32950,7 +32880,7 @@ "widget_field_type": "/Tx" }, { - "index": 60, + "index": 61, "rect": { "r_x0": 48.999, "r_y0": 361.0, @@ -32966,7 +32896,7 @@ "widget_field_type": "/Tx" }, { - "index": 61, + "index": 62, "rect": { "r_x0": 105.998, "r_y0": 361.0, @@ -32982,7 +32912,7 @@ "widget_field_type": "/Tx" }, { - "index": 62, + "index": 63, "rect": { "r_x0": 165.999, "r_y0": 361.0, @@ -32998,7 +32928,7 @@ "widget_field_type": "/Tx" }, { - "index": 63, + "index": 64, "rect": { "r_x0": 270.997, "r_y0": 361.0, @@ -33014,7 +32944,7 @@ "widget_field_type": "/Tx" }, { - "index": 64, + "index": 65, "rect": { "r_x0": 330.998, "r_y0": 361.0, @@ -33030,7 +32960,7 @@ "widget_field_type": "/Tx" }, { - "index": 65, + "index": 66, "rect": { "r_x0": 498.999, "r_y0": 361.0, @@ -33046,7 +32976,7 @@ "widget_field_type": "/Tx" }, { - "index": 66, + "index": 67, "rect": { "r_x0": 48.999, "r_y0": 336.999, @@ -33062,7 +32992,7 @@ "widget_field_type": "/Tx" }, { - "index": 67, + "index": 68, "rect": { "r_x0": 105.998, "r_y0": 336.999, @@ -33078,7 +33008,7 @@ "widget_field_type": "/Tx" }, { - "index": 68, + "index": 69, "rect": { "r_x0": 165.999, "r_y0": 336.999, @@ -33094,7 +33024,7 @@ "widget_field_type": "/Tx" }, { - "index": 69, + "index": 70, "rect": { "r_x0": 270.997, "r_y0": 336.999, @@ -33110,7 +33040,7 @@ "widget_field_type": "/Tx" }, { - "index": 70, + "index": 71, "rect": { "r_x0": 330.998, "r_y0": 336.999, @@ -33126,7 +33056,7 @@ "widget_field_type": "/Tx" }, { - "index": 71, + "index": 72, "rect": { "r_x0": 498.999, "r_y0": 336.999, @@ -33142,7 +33072,7 @@ "widget_field_type": "/Tx" }, { - "index": 72, + "index": 73, "rect": { "r_x0": 48.999, "r_y0": 313.001, @@ -33158,7 +33088,7 @@ "widget_field_type": "/Tx" }, { - "index": 73, + "index": 74, "rect": { "r_x0": 105.998, "r_y0": 313.001, @@ -33174,7 +33104,7 @@ "widget_field_type": "/Tx" }, { - "index": 74, + "index": 75, "rect": { "r_x0": 165.999, "r_y0": 313.001, @@ -33190,7 +33120,7 @@ "widget_field_type": "/Tx" }, { - "index": 75, + "index": 76, "rect": { "r_x0": 270.997, "r_y0": 313.001, @@ -33206,7 +33136,7 @@ "widget_field_type": "/Tx" }, { - "index": 76, + "index": 77, "rect": { "r_x0": 330.998, "r_y0": 313.001, @@ -33222,7 +33152,7 @@ "widget_field_type": "/Tx" }, { - "index": 77, + "index": 78, "rect": { "r_x0": 498.999, "r_y0": 313.001, @@ -33238,7 +33168,7 @@ "widget_field_type": "/Tx" }, { - "index": 78, + "index": 79, "rect": { "r_x0": 48.999, "r_y0": 289.0, @@ -33254,7 +33184,7 @@ "widget_field_type": "/Tx" }, { - "index": 79, + "index": 80, "rect": { "r_x0": 105.998, "r_y0": 289.0, @@ -33270,7 +33200,7 @@ "widget_field_type": "/Tx" }, { - "index": 80, + "index": 81, "rect": { "r_x0": 165.999, "r_y0": 289.0, @@ -33286,7 +33216,7 @@ "widget_field_type": "/Tx" }, { - "index": 81, + "index": 82, "rect": { "r_x0": 270.997, "r_y0": 289.0, @@ -33302,7 +33232,7 @@ "widget_field_type": "/Tx" }, { - "index": 82, + "index": 83, "rect": { "r_x0": 330.998, "r_y0": 289.0, @@ -33318,7 +33248,7 @@ "widget_field_type": "/Tx" }, { - "index": 83, + "index": 84, "rect": { "r_x0": 498.999, "r_y0": 289.0, @@ -33334,7 +33264,7 @@ "widget_field_type": "/Tx" }, { - "index": 84, + "index": 85, "rect": { "r_x0": 48.999, "r_y0": 264.999, @@ -33350,7 +33280,7 @@ "widget_field_type": "/Tx" }, { - "index": 85, + "index": 86, "rect": { "r_x0": 105.998, "r_y0": 264.999, @@ -33366,7 +33296,7 @@ "widget_field_type": "/Tx" }, { - "index": 86, + "index": 87, "rect": { "r_x0": 165.999, "r_y0": 264.999, @@ -33382,7 +33312,7 @@ "widget_field_type": "/Tx" }, { - "index": 87, + "index": 88, "rect": { "r_x0": 270.997, "r_y0": 264.999, @@ -33398,7 +33328,7 @@ "widget_field_type": "/Tx" }, { - "index": 88, + "index": 89, "rect": { "r_x0": 330.998, "r_y0": 264.999, @@ -33414,7 +33344,7 @@ "widget_field_type": "/Tx" }, { - "index": 89, + "index": 90, "rect": { "r_x0": 498.999, "r_y0": 264.999, @@ -33430,7 +33360,7 @@ "widget_field_type": "/Tx" }, { - "index": 90, + "index": 91, "rect": { "r_x0": 48.999, "r_y0": 241.001, @@ -33446,7 +33376,7 @@ "widget_field_type": "/Tx" }, { - "index": 91, + "index": 92, "rect": { "r_x0": 105.998, "r_y0": 241.001, @@ -33462,7 +33392,7 @@ "widget_field_type": "/Tx" }, { - "index": 92, + "index": 93, "rect": { "r_x0": 165.999, "r_y0": 241.001, @@ -33478,7 +33408,7 @@ "widget_field_type": "/Tx" }, { - "index": 93, + "index": 94, "rect": { "r_x0": 270.997, "r_y0": 241.001, @@ -33494,7 +33424,7 @@ "widget_field_type": "/Tx" }, { - "index": 94, + "index": 95, "rect": { "r_x0": 330.998, "r_y0": 241.001, @@ -33510,7 +33440,7 @@ "widget_field_type": "/Tx" }, { - "index": 95, + "index": 96, "rect": { "r_x0": 498.999, "r_y0": 241.001, @@ -33526,7 +33456,7 @@ "widget_field_type": "/Tx" }, { - "index": 96, + "index": 97, "rect": { "r_x0": 48.999, "r_y0": 217.0, @@ -33542,7 +33472,7 @@ "widget_field_type": "/Tx" }, { - "index": 97, + "index": 98, "rect": { "r_x0": 105.998, "r_y0": 217.0, @@ -33558,7 +33488,7 @@ "widget_field_type": "/Tx" }, { - "index": 98, + "index": 99, "rect": { "r_x0": 165.999, "r_y0": 217.0, @@ -33574,7 +33504,7 @@ "widget_field_type": "/Tx" }, { - "index": 99, + "index": 100, "rect": { "r_x0": 270.997, "r_y0": 217.0, @@ -33590,7 +33520,7 @@ "widget_field_type": "/Tx" }, { - "index": 100, + "index": 101, "rect": { "r_x0": 330.998, "r_y0": 217.0, @@ -33606,7 +33536,7 @@ "widget_field_type": "/Tx" }, { - "index": 101, + "index": 102, "rect": { "r_x0": 498.999, "r_y0": 217.0, @@ -33622,7 +33552,7 @@ "widget_field_type": "/Tx" }, { - "index": 102, + "index": 103, "rect": { "r_x0": 48.999, "r_y0": 192.999, @@ -33638,7 +33568,7 @@ "widget_field_type": "/Tx" }, { - "index": 103, + "index": 104, "rect": { "r_x0": 105.998, "r_y0": 192.999, @@ -33654,7 +33584,7 @@ "widget_field_type": "/Tx" }, { - "index": 104, + "index": 105, "rect": { "r_x0": 165.999, "r_y0": 192.999, @@ -33670,7 +33600,7 @@ "widget_field_type": "/Tx" }, { - "index": 105, + "index": 106, "rect": { "r_x0": 270.997, "r_y0": 192.999, @@ -33686,7 +33616,7 @@ "widget_field_type": "/Tx" }, { - "index": 106, + "index": 107, "rect": { "r_x0": 330.998, "r_y0": 192.999, @@ -33702,7 +33632,7 @@ "widget_field_type": "/Tx" }, { - "index": 107, + "index": 108, "rect": { "r_x0": 498.999, "r_y0": 192.999, @@ -33718,7 +33648,7 @@ "widget_field_type": "/Tx" }, { - "index": 108, + "index": 109, "rect": { "r_x0": 48.999, "r_y0": 169.001, @@ -33734,7 +33664,7 @@ "widget_field_type": "/Tx" }, { - "index": 109, + "index": 110, "rect": { "r_x0": 105.998, "r_y0": 169.001, @@ -33750,7 +33680,7 @@ "widget_field_type": "/Tx" }, { - "index": 110, + "index": 111, "rect": { "r_x0": 165.999, "r_y0": 169.001, @@ -33766,7 +33696,7 @@ "widget_field_type": "/Tx" }, { - "index": 111, + "index": 112, "rect": { "r_x0": 270.997, "r_y0": 169.001, @@ -33782,7 +33712,7 @@ "widget_field_type": "/Tx" }, { - "index": 112, + "index": 113, "rect": { "r_x0": 330.998, "r_y0": 169.001, @@ -33798,7 +33728,7 @@ "widget_field_type": "/Tx" }, { - "index": 113, + "index": 114, "rect": { "r_x0": 498.999, "r_y0": 169.001, @@ -33814,7 +33744,7 @@ "widget_field_type": "/Tx" }, { - "index": 114, + "index": 115, "rect": { "r_x0": 48.999, "r_y0": 145.0, @@ -33830,7 +33760,7 @@ "widget_field_type": "/Tx" }, { - "index": 115, + "index": 116, "rect": { "r_x0": 105.998, "r_y0": 145.0, @@ -33846,7 +33776,7 @@ "widget_field_type": "/Tx" }, { - "index": 116, + "index": 117, "rect": { "r_x0": 165.999, "r_y0": 145.0, @@ -33862,7 +33792,7 @@ "widget_field_type": "/Tx" }, { - "index": 117, + "index": 118, "rect": { "r_x0": 270.997, "r_y0": 145.0, @@ -33878,7 +33808,7 @@ "widget_field_type": "/Tx" }, { - "index": 118, + "index": 119, "rect": { "r_x0": 330.998, "r_y0": 145.0, @@ -33894,7 +33824,7 @@ "widget_field_type": "/Tx" }, { - "index": 119, + "index": 120, "rect": { "r_x0": 498.999, "r_y0": 145.0, @@ -33910,7 +33840,7 @@ "widget_field_type": "/Tx" }, { - "index": 120, + "index": 121, "rect": { "r_x0": 498.999, "r_y0": 120.999, diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.char.txt b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.char.txt index 4aed70a..95b6d2c 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.char.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.char.txt @@ -854,5 +854,4 @@ (575.43, 019.46) (579.88, 019.46) (579.88, 026.91) (575.43, 026.91) /TT2 d <|special_separator|> (579.88, 019.46) (584.33, 019.46) (584.33, 026.91) (579.88, 026.91) /TT2 e <|special_separator|> (584.33, 019.46) (586.55, 019.46) (586.55, 026.91) (584.33, 026.91) /TT2 <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.line.txt b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.line.txt index 6891bbd..1f04ba1 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.line.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.line.txt @@ -62,5 +62,4 @@ (061.67, 127.08) (290.10, 127.08) (290.10, 136.39) (061.67, 136.39) /TT2 (Inscrivez ce montant à la colonne 1 de la partie D.) <|special_separator|> (490.00, 125.63) (497.00, 125.63) (497.00, 136.80) (490.00, 136.80) /TT2 = <|special_separator|> (021.00, 019.09) (074.35, 019.09) (074.35, 026.54) (021.00, 026.54) /TT2 GST495 F (24) <|special_separator|> -(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 3 de 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 3 de 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.word.txt b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.word.txt index 74d9dc2..a2da192 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.word.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_3.py.json.word.txt @@ -173,5 +173,4 @@ (547.86, 019.46) (566.53, 019.46) (566.53, 026.91) (547.86, 026.91) /TT2 Page <|special_separator|> (568.76, 019.46) (573.21, 019.46) (573.21, 026.91) (568.76, 026.91) /TT2 3 <|special_separator|> (575.43, 019.46) (584.33, 019.46) (584.33, 026.91) (575.43, 026.91) /TT2 de <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json index 38ff098..5ebf293 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json +++ b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json @@ -76755,35 +76755,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 2645, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "word_cells": [ @@ -89836,35 +89807,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 450, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "textline_cells": [ @@ -91636,15 +91578,14 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ { - "index": 61, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, + "index": 0, "rect": { "r_x0": 495.0, "r_y0": 774.003, @@ -91656,23 +91597,12 @@ "r_y3": 789.001, "coord_origin": "BOTTOMLEFT" }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" - } - ], - "has_chars": true, - "has_words": true, - "has_lines": true, - "widgets": [ + "widget_text": "/Off", + "widget_field_name": "form1[0].#pageSet[0].Page1[3].ClearData_FR[0]", + "widget_field_type": "/Btn" + }, { - "index": 0, + "index": 1, "rect": { "r_x0": 305.997, "r_y0": 678.999, @@ -91688,7 +91618,7 @@ "widget_field_type": "/Tx" }, { - "index": 1, + "index": 2, "rect": { "r_x0": 461.999, "r_y0": 678.999, @@ -91704,7 +91634,7 @@ "widget_field_type": "/Tx" }, { - "index": 2, + "index": 3, "rect": { "r_x0": 305.997, "r_y0": 646.001, @@ -91720,7 +91650,7 @@ "widget_field_type": "/Tx" }, { - "index": 3, + "index": 4, "rect": { "r_x0": 461.999, "r_y0": 646.001, @@ -91736,7 +91666,7 @@ "widget_field_type": "/Tx" }, { - "index": 4, + "index": 5, "rect": { "r_x0": 305.997, "r_y0": 573.998, @@ -91752,7 +91682,7 @@ "widget_field_type": "/Tx" }, { - "index": 5, + "index": 6, "rect": { "r_x0": 461.999, "r_y0": 573.998, @@ -91768,7 +91698,7 @@ "widget_field_type": "/Tx" }, { - "index": 6, + "index": 7, "rect": { "r_x0": 461.999, "r_y0": 540.997, @@ -91784,7 +91714,7 @@ "widget_field_type": "/Tx" }, { - "index": 7, + "index": 8, "rect": { "r_x0": 32.998, "r_y0": 374.998, @@ -91800,7 +91730,7 @@ "widget_field_type": "/Tx" }, { - "index": 8, + "index": 9, "rect": { "r_x0": 254.999, "r_y0": 374.998, @@ -91816,7 +91746,7 @@ "widget_field_type": "/Tx" }, { - "index": 9, + "index": 10, "rect": { "r_x0": 32.998, "r_y0": 333.997, @@ -91832,7 +91762,7 @@ "widget_field_type": "/Tx" }, { - "index": 10, + "index": 11, "rect": { "r_x0": 138.999, "r_y0": 333.997, @@ -91848,7 +91778,7 @@ "widget_field_type": "/Tx" }, { - "index": 11, + "index": 12, "rect": { "r_x0": 465.998, "r_y0": 333.997, diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.char.txt b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.char.txt index 2d23c33..f23badf 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.char.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.char.txt @@ -2642,5 +2642,4 @@ (575.43, 019.46) (579.88, 019.46) (579.88, 026.91) (575.43, 026.91) /TT2 d <|special_separator|> (579.88, 019.46) (584.33, 019.46) (584.33, 026.91) (579.88, 026.91) /TT2 e <|special_separator|> (584.33, 019.46) (586.55, 019.46) (586.55, 026.91) (584.33, 026.91) /TT2 <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.line.txt b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.line.txt index d2011d8..fe124ef 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.line.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.line.txt @@ -58,5 +58,4 @@ (365.14, 240.95) (464.29, 240.95) (464.29, 248.43) (365.14, 248.43) /TT1 canada.ca/arc-info-source <|special_separator|> (464.29, 240.96) (466.51, 240.96) (466.51, 248.41) (464.29, 248.41) /TT2 . <|special_separator|> (021.00, 019.09) (074.35, 019.09) (074.35, 026.54) (021.00, 026.54) /TT2 GST495 F (24) <|special_separator|> -(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 4 de 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 4 de 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.word.txt b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.word.txt index bd4eb76..7261cc7 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.word.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_4.py.json.word.txt @@ -447,5 +447,4 @@ (547.86, 019.46) (566.53, 019.46) (566.53, 026.91) (547.86, 026.91) /TT2 Page <|special_separator|> (568.76, 019.46) (573.21, 019.46) (573.21, 026.91) (568.76, 026.91) /TT2 4 <|special_separator|> (575.43, 019.46) (584.33, 019.46) (584.33, 026.91) (575.43, 026.91) /TT2 de <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json index 78fd607..76cc600 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json +++ b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json @@ -136379,35 +136379,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 4701, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "word_cells": [ @@ -158363,35 +158334,6 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, - { - "index": 757, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "rect": { - "r_x0": 495.0, - "r_y0": 774.003, - "r_x1": 591.001, - "r_y1": 774.003, - "r_x2": 591.001, - "r_y2": 789.001, - "r_x3": 495.0, - "r_y3": 789.001, - "coord_origin": "BOTTOMLEFT" - }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" } ], "textline_cells": [ @@ -162512,15 +162454,14 @@ "widget": false, "font_key": "/TT2", "font_name": "/AAAAAC+Helvetica" - }, + } + ], + "has_chars": true, + "has_words": true, + "has_lines": true, + "widgets": [ { - "index": 142, - "rgba": { - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, + "index": 0, "rect": { "r_x0": 495.0, "r_y0": 774.003, @@ -162532,21 +162473,11 @@ "r_y3": 789.001, "coord_origin": "BOTTOMLEFT" }, - "text": "/Off", - "orig": "/Off", - "text_direction": "left_to_right", - "confidence": 1.0, - "from_ocr": false, - "rendering_mode": 0, - "widget": true, - "font_key": "Form-font", - "font_name": "Form-font" + "widget_text": "/Off", + "widget_field_name": "form1[0].#pageSet[0].Page1[4].ClearData_FR[0]", + "widget_field_type": "/Btn" } ], - "has_chars": true, - "has_words": true, - "has_lines": true, - "widgets": [], "hyperlinks": [ { "index": 0, diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.char.txt b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.char.txt index dcf5972..585cf40 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.char.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.char.txt @@ -4698,5 +4698,4 @@ (575.43, 019.46) (579.88, 019.46) (579.88, 026.91) (575.43, 026.91) /TT2 d <|special_separator|> (579.88, 019.46) (584.33, 019.46) (584.33, 026.91) (579.88, 026.91) /TT2 e <|special_separator|> (584.33, 019.46) (586.55, 019.46) (586.55, 026.91) (584.33, 026.91) /TT2 <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.line.txt b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.line.txt index 3c0c236..1d33e58 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.line.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.line.txt @@ -139,5 +139,4 @@ (315.00, 147.58) (323.34, 147.58) (323.34, 156.89) (315.00, 156.89) /TT2 à <|special_separator|> (323.34, 147.57) (472.82, 147.57) (472.82, 156.92) (323.34, 156.92) /TT1 canada.ca/publications-tps-tvh. <|special_separator|> (021.00, 019.09) (074.35, 019.09) (074.35, 026.54) (021.00, 026.54) /TT2 GST495 F (24) <|special_separator|> -(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 5 de 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(547.86, 019.46) (591.00, 019.46) (591.00, 026.91) (547.86, 026.91) /TT2 Page 5 de 5 \ No newline at end of file diff --git a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.word.txt b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.word.txt index 1a53d29..4a8fac6 100644 --- a/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.word.txt +++ b/tests/data/groundtruth/form_fields.pdf.page_no_5.py.json.word.txt @@ -754,5 +754,4 @@ (547.86, 019.46) (566.53, 019.46) (566.53, 026.91) (547.86, 026.91) /TT2 Page <|special_separator|> (568.76, 019.46) (573.21, 019.46) (573.21, 026.91) (568.76, 026.91) /TT2 5 <|special_separator|> (575.43, 019.46) (584.33, 019.46) (584.33, 026.91) (575.43, 026.91) /TT2 de <|special_separator|> -(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 <|special_separator|> -(495.00, 774.00) (591.00, 774.00) (591.00, 789.00) (495.00, 789.00) Form-font /Off \ No newline at end of file +(586.55, 019.46) (591.00, 019.46) (591.00, 026.91) (586.55, 026.91) /TT2 5 \ No newline at end of file diff --git a/tests/data/regression/fillable_form.pdf b/tests/data/regression/fillable_form.pdf new file mode 100644 index 0000000..098bb64 Binary files /dev/null and b/tests/data/regression/fillable_form.pdf differ